From 17b340dfc45851d7e73b68dbadd42c29f6931d19 Mon Sep 17 00:00:00 2001 From: Tushar Athawale Date: Tue, 1 Feb 2022 21:45:07 -0500 Subject: [PATCH] Copyright notice added to tutorial cxx files --- vtkm-tutorial/tutorialExamples/tut_2filters.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_contour.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_contour_2fields.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_error_handling.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_extract_edges.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_io.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_logging.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_mag_grad.cxx | 9 +++++++++ .../tutorialExamples/tut_mag_grad_generalized.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_point_to_cell.cxx | 9 +++++++++ vtkm-tutorial/tutorialExamples/tut_rendering.cxx | 9 +++++++++ 11 files changed, 99 insertions(+) diff --git a/vtkm-tutorial/tutorialExamples/tut_2filters.cxx b/vtkm-tutorial/tutorialExamples/tut_2filters.cxx index af0160d10..40866631e 100644 --- a/vtkm-tutorial/tutorialExamples/tut_2filters.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_2filters.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ // Example 4: do a contour and a clip-with-field, and write it out. // #include diff --git a/vtkm-tutorial/tutorialExamples/tut_contour.cxx b/vtkm-tutorial/tutorialExamples/tut_contour.cxx index 34a801875..297d5f341 100644 --- a/vtkm-tutorial/tutorialExamples/tut_contour.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_contour.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ // Example 2: do a contour!, write it out. // #include diff --git a/vtkm-tutorial/tutorialExamples/tut_contour_2fields.cxx b/vtkm-tutorial/tutorialExamples/tut_contour_2fields.cxx index 8f25eacdb..0f3aba459 100644 --- a/vtkm-tutorial/tutorialExamples/tut_contour_2fields.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_contour_2fields.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ // Example 3: do a contour (but only evaluate two fields), write it out. // #include diff --git a/vtkm-tutorial/tutorialExamples/tut_error_handling.cxx b/vtkm-tutorial/tutorialExamples/tut_error_handling.cxx index 5d09ab873..2ab1795af 100644 --- a/vtkm-tutorial/tutorialExamples/tut_error_handling.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_error_handling.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_extract_edges.cxx b/vtkm-tutorial/tutorialExamples/tut_extract_edges.cxx index 7ff7a003f..a7431b354 100644 --- a/vtkm-tutorial/tutorialExamples/tut_extract_edges.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_extract_edges.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_io.cxx b/vtkm-tutorial/tutorialExamples/tut_io.cxx index daa5c3492..53f2af74a 100644 --- a/vtkm-tutorial/tutorialExamples/tut_io.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_io.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ // Example 1: very simple VTK-m program. // Read data set, write it out. // diff --git a/vtkm-tutorial/tutorialExamples/tut_logging.cxx b/vtkm-tutorial/tutorialExamples/tut_logging.cxx index 2c54dbc2a..cdaa6ee83 100644 --- a/vtkm-tutorial/tutorialExamples/tut_logging.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_logging.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_mag_grad.cxx b/vtkm-tutorial/tutorialExamples/tut_mag_grad.cxx index dd8bfd188..f531060f3 100644 --- a/vtkm-tutorial/tutorialExamples/tut_mag_grad.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_mag_grad.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_mag_grad_generalized.cxx b/vtkm-tutorial/tutorialExamples/tut_mag_grad_generalized.cxx index 9034770e7..1da9d2f34 100644 --- a/vtkm-tutorial/tutorialExamples/tut_mag_grad_generalized.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_mag_grad_generalized.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_point_to_cell.cxx b/vtkm-tutorial/tutorialExamples/tut_point_to_cell.cxx index be8958a36..eb51e2e2c 100644 --- a/vtkm-tutorial/tutorialExamples/tut_point_to_cell.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_point_to_cell.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include diff --git a/vtkm-tutorial/tutorialExamples/tut_rendering.cxx b/vtkm-tutorial/tutorialExamples/tut_rendering.cxx index 11217013e..7ff1be7bf 100644 --- a/vtkm-tutorial/tutorialExamples/tut_rendering.cxx +++ b/vtkm-tutorial/tutorialExamples/tut_rendering.cxx @@ -1,3 +1,12 @@ +//============================================================================ +// Copyright (c) Kitware, Inc. +// All rights reserved. +// See LICENSE.txt for details. +// +// This software is distributed WITHOUT ANY WARRANTY; without even +// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +// PURPOSE. See the above copyright notice for more information. +//============================================================================ #include #include #include