From fd59fd1d4ac711dfd5f726c30e0faba3a9c7039e Mon Sep 17 00:00:00 2001 From: nadavi Date: Mon, 15 Apr 2019 16:58:48 -0600 Subject: [PATCH 1/4] Print error in copyright only on first mis-match --- CMake/VTKmCheckCopyright.cmake | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CMake/VTKmCheckCopyright.cmake b/CMake/VTKmCheckCopyright.cmake index e0abf693..93cb2511 100644 --- a/CMake/VTKmCheckCopyright.cmake +++ b/CMake/VTKmCheckCopyright.cmake @@ -25,6 +25,7 @@ ## cmake -DVTKm_SOURCE_DIR= -P /CMake/VTKMCheckCopyright.cmake ## +cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) set(FILES_TO_CHECK *.txt *.cmake @@ -188,6 +189,7 @@ function(check_copyright filename) file(READ "${filename}" header_contents LIMIT 2000) list_of_lines(header_lines "${header_contents}") + set(printed) # Check each copyright line. foreach (copyright_line IN LISTS COPYRIGHT_LINE_LIST) set(match) @@ -211,10 +213,11 @@ function(check_copyright filename) break() endif (match) endforeach (header_line) - if (NOT match) + if (NOT match AND NOT printed) message(STATUS "Could not find match for `${copyright_line}'") missing_copyright("${filename}" "${comment_prefix}") - endif (NOT match) + set(printed TRUE) + endif (NOT match AND NOT printed) endforeach (copyright_line) endfunction(check_copyright) -- GitLab From fbcea82e78d805bba8c42c290f23206284aad709 Mon Sep 17 00:00:00 2001 From: nadavi Date: Mon, 15 Apr 2019 17:24:21 -0600 Subject: [PATCH 2/4] conslidate the license statement --- CMake/FindOpenGL.cmake | 16 +----- CMake/FindOpenMP.cmake | 16 +----- CMake/FindPyexpander.cmake | 15 +---- CMake/VTKmBuildDocumentation.cmake | 12 +--- CMake/VTKmBuildType.cmake | 12 +--- CMake/VTKmCPUVectorization.cmake | 16 +----- CMake/VTKmCheckCopyright.cmake | 12 +--- CMake/VTKmCompilerDynamicAnalysisFlags.cmake | 12 +--- CMake/VTKmCompilerFlags.cmake | 12 +--- CMake/VTKmConfig.cmake.in | 12 +--- CMake/VTKmCopyrightStatement.txt | 10 ---- CMake/VTKmDetectCUDAVersion.cu | 16 +----- CMake/VTKmDetermineVersion.cmake | 12 +--- CMake/VTKmDeviceAdapters.cmake | 12 +--- CMake/VTKmExportHeaderTemplate.h.in | 16 +----- CMake/VTKmRenderingContexts.cmake | 12 +--- CMake/VTKmWrappers.cmake | 12 +--- CMake/doxyfile.in | 12 +--- CMake/testing/VTKmCheckPyexpander.cmake | 12 +--- CMake/testing/VTKmCheckSourceInInstall.cmake | 12 +--- CMake/testing/VTKmSystemInformation.cmake | 12 +--- CMake/testing/VTKmTestInstall.cmake | 12 +--- CMakeLists.txt | 12 +--- CTestConfig.cmake | 12 +--- CTestCustom.cmake.in | 12 +--- benchmarking/BenchmarkArrayTransfer.cxx | 12 +--- benchmarking/BenchmarkAtomicArray.cxx | 12 +--- benchmarking/BenchmarkCopySpeeds.cxx | 14 +---- benchmarking/BenchmarkDeviceAdapter.cxx | 12 +--- benchmarking/BenchmarkFieldAlgorithms.cxx | 12 +--- benchmarking/BenchmarkFilters.cxx | 12 +--- benchmarking/BenchmarkRayTracing.cxx | 12 +--- benchmarking/BenchmarkTopologyAlgorithms.cxx | 12 +--- benchmarking/Benchmarker.h | 12 +--- benchmarking/CMakeLists.txt | 12 +--- docs/CodingConventions.md | 13 +---- examples/CMakeLists.txt | 17 +----- examples/clipping/CMakeLists.txt | 16 +----- examples/clipping/Clipping.cxx | 12 +--- examples/contour_tree/CMakeLists.txt | 16 +----- examples/contour_tree/ContourTreeMesh2D.cxx | 12 +--- examples/contour_tree/ContourTreeMesh3D.cxx | 12 +--- .../contour_tree_augmented/CMakeLists.txt | 16 +----- .../contour_tree_augmented/ContourTreeApp.cxx | 12 +--- examples/cosmotools/CMakeLists.txt | 16 +----- examples/cosmotools/CosmoCenterFinder.cxx | 12 +--- examples/cosmotools/CosmoHaloFinder.cxx | 12 +--- examples/demo/CMakeLists.txt | 16 +----- examples/demo/Demo.cxx | 12 +--- examples/game_of_life/CMakeLists.txt | 16 +----- examples/game_of_life/GameOfLife.cxx | 12 +--- examples/game_of_life/LoadShaders.h | 12 +--- examples/hello_world/CMakeLists.txt | 16 +----- examples/hello_world/HelloWorld.cxx | 12 +--- examples/hello_world/LoadShaders.h | 12 +--- examples/histogram/CMakeLists.txt | 16 +----- examples/histogram/Histogram.cxx | 12 +--- examples/histogram/HistogramMPI.h | 12 +--- examples/histogram/HistogramMPI.hxx | 12 +--- examples/isosurface/CMakeLists.txt | 16 +----- examples/isosurface/IsosurfaceUniformGrid.cxx | 12 +--- examples/isosurface/quaternion.h | 16 +----- examples/lagrangian/ABCfield.h | 12 +--- examples/lagrangian/CMakeLists.txt | 16 +----- examples/lagrangian/lagrangian.cxx | 12 +--- examples/multi_backend/CMakeLists.txt | 16 +----- examples/multi_backend/IOGenerator.cxx | 12 +--- examples/multi_backend/IOGenerator.h | 12 +--- examples/multi_backend/MultiBackend.cxx | 12 +--- .../multi_backend/MultiDeviceGradient.cxx | 12 +--- examples/multi_backend/MultiDeviceGradient.h | 12 +--- .../multi_backend/MultiDeviceGradient.hxx | 12 +--- examples/multi_backend/TaskQueue.h | 12 +--- examples/oscillator/CMakeLists.txt | 16 +----- examples/oscillator/Oscillator.cxx | 12 +--- examples/particle_advection/CMakeLists.txt | 16 +----- .../particle_advection/ParticleAdvection.cxx | 12 +--- examples/redistribute_points/CMakeLists.txt | 16 +----- .../RedistributePoints.cxx | 12 +--- .../redistribute_points/RedistributePoints.h | 12 +--- examples/rendering/CMakeLists.txt | 16 +----- examples/rendering/Rendering.cxx | 12 +--- examples/streamline/CMakeLists.txt | 16 +----- examples/streamline/StreamLineUniformGrid.cxx | 12 +--- examples/tau_timing/CMakeLists.txt | 16 +----- examples/tau_timing/TauTiming.cxx | 12 +--- examples/temporal_advection/CMakeLists.txt | 16 +----- .../temporal_advection/TemporalAdvection.cxx | 12 +--- examples/tetrahedra/CMakeLists.txt | 16 +----- .../tetrahedra/TetrahedralizeExplicitGrid.cxx | 12 +--- .../tetrahedra/TetrahedralizeUniformGrid.cxx | 12 +--- .../tetrahedra/TriangulateExplicitGrid.cxx | 12 +--- .../tetrahedra/TriangulateUniformGrid.cxx | 12 +--- examples/unified_memory/CMakeLists.txt | 16 +----- examples/unified_memory/UnifiedMemory.cu | 12 +--- vtkm/Assert.h | 12 +--- vtkm/BaseComponent.h | 12 +--- vtkm/BinaryOperators.h | 12 +--- vtkm/BinaryPredicates.h | 12 +--- vtkm/Bitset.h | 12 +--- vtkm/Bounds.h | 12 +--- vtkm/CMakeLists.txt | 12 +--- vtkm/CellClassification.h | 12 +--- vtkm/CellShape.h | 12 +--- vtkm/CellTraits.h | 12 +--- vtkm/Flags.h | 12 +--- vtkm/Geometry.h | 12 +--- vtkm/Geometry.hxx | 12 +--- vtkm/Hash.h | 12 +--- vtkm/ImplicitFunction.h | 12 +--- vtkm/ListTag.h | 12 +--- vtkm/Math.h | 16 +----- vtkm/Math.h.in | 16 +----- vtkm/Matrix.h | 16 +----- vtkm/NewtonsMethod.h | 12 +--- vtkm/Pair.h | 12 +--- vtkm/Range.h | 12 +--- vtkm/RangeId.h | 12 +--- vtkm/RangeId2.h | 12 +--- vtkm/RangeId3.h | 12 +--- vtkm/StaticAssert.h | 12 +--- vtkm/Swap.h | 12 +--- vtkm/TopologyElementTag.h | 12 +--- vtkm/Transform3D.h | 16 +----- vtkm/TypeListTag.h | 12 +--- vtkm/TypeTraits.h | 12 +--- vtkm/Types.h | 12 +--- vtkm/UnaryPredicates.h | 12 +--- vtkm/VecAxisAlignedPointCoordinates.h | 12 +--- vtkm/VecFromPortal.h | 12 +--- vtkm/VecFromPortalPermute.h | 12 +--- vtkm/VecFromVirtPortal.h | 12 +--- vtkm/VecTraits.h | 12 +--- vtkm/VecVariable.h | 12 +--- vtkm/VectorAnalysis.h | 16 +----- vtkm/Version.h.in | 12 +--- vtkm/VirtualObjectBase.h | 12 +--- vtkm/cont/Algorithm.h | 12 +--- vtkm/cont/ArrayCopy.h | 12 +--- vtkm/cont/ArrayHandle.cxx | 12 +--- vtkm/cont/ArrayHandle.h | 12 +--- vtkm/cont/ArrayHandle.hxx | 12 +--- vtkm/cont/ArrayHandleBitField.h | 16 +----- vtkm/cont/ArrayHandleCartesianProduct.h | 12 +--- vtkm/cont/ArrayHandleCast.h | 16 +----- vtkm/cont/ArrayHandleCompositeVector.h | 12 +--- vtkm/cont/ArrayHandleConcatenate.h | 16 +----- vtkm/cont/ArrayHandleConstant.h | 16 +----- vtkm/cont/ArrayHandleCounting.h | 12 +--- vtkm/cont/ArrayHandleDiscard.h | 12 +--- vtkm/cont/ArrayHandleExtractComponent.h | 16 +----- vtkm/cont/ArrayHandleGroupVec.h | 12 +--- vtkm/cont/ArrayHandleGroupVecVariable.h | 12 +--- vtkm/cont/ArrayHandleImplicit.h | 16 +----- vtkm/cont/ArrayHandleIndex.h | 16 +----- vtkm/cont/ArrayHandlePermutation.h | 16 +----- vtkm/cont/ArrayHandleReverse.h | 16 +----- vtkm/cont/ArrayHandleStreaming.h | 12 +--- vtkm/cont/ArrayHandleSwizzle.h | 16 +----- vtkm/cont/ArrayHandleTransform.h | 16 +----- .../cont/ArrayHandleUniformPointCoordinates.h | 12 +--- vtkm/cont/ArrayHandleView.h | 12 +--- vtkm/cont/ArrayHandleVirtual.cxx | 12 +--- vtkm/cont/ArrayHandleVirtual.h | 12 +--- vtkm/cont/ArrayHandleVirtual.hxx | 12 +--- vtkm/cont/ArrayHandleVirtualCoordinates.h | 12 +--- vtkm/cont/ArrayHandleZip.h | 12 +--- vtkm/cont/ArrayPortal.h | 12 +--- vtkm/cont/ArrayPortalToIterators.h | 12 +--- vtkm/cont/ArrayRangeCompute.cxx | 12 +--- vtkm/cont/ArrayRangeCompute.h | 12 +--- vtkm/cont/ArrayRangeCompute.hxx | 12 +--- vtkm/cont/AssignerMultiBlock.cxx | 12 +--- vtkm/cont/AssignerMultiBlock.h | 12 +--- vtkm/cont/AtomicArray.h | 12 +--- vtkm/cont/BitField.h | 12 +--- vtkm/cont/BoundsCompute.cxx | 12 +--- vtkm/cont/BoundsCompute.h | 12 +--- vtkm/cont/BoundsGlobalCompute.cxx | 12 +--- vtkm/cont/BoundsGlobalCompute.h | 12 +--- vtkm/cont/CMakeLists.txt | 12 +--- vtkm/cont/CastAndCall.h | 12 +--- vtkm/cont/CellLocator.cxx | 12 +--- vtkm/cont/CellLocator.h | 12 +--- .../CellLocatorBoundingIntervalHierarchy.cxx | 12 +--- .../CellLocatorBoundingIntervalHierarchy.h | 12 +--- vtkm/cont/CellLocatorGeneral.cxx | 12 +--- vtkm/cont/CellLocatorGeneral.h | 12 +--- vtkm/cont/CellLocatorRectilinearGrid.cxx | 12 +--- vtkm/cont/CellLocatorRectilinearGrid.h | 12 +--- vtkm/cont/CellLocatorUniformBins.cxx | 12 +--- vtkm/cont/CellLocatorUniformBins.h | 12 +--- vtkm/cont/CellLocatorUniformGrid.cxx | 12 +--- vtkm/cont/CellLocatorUniformGrid.h | 12 +--- vtkm/cont/CellSet.cxx | 12 +--- vtkm/cont/CellSet.h | 12 +--- vtkm/cont/CellSetExplicit.cxx | 12 +--- vtkm/cont/CellSetExplicit.h | 12 +--- vtkm/cont/CellSetExplicit.hxx | 12 +--- vtkm/cont/CellSetListTag.h | 12 +--- vtkm/cont/CellSetPermutation.h | 12 +--- vtkm/cont/CellSetSingleType.h | 12 +--- vtkm/cont/CellSetStructured.cxx | 12 +--- vtkm/cont/CellSetStructured.h | 12 +--- vtkm/cont/CellSetStructured.hxx | 12 +--- vtkm/cont/ColorTable.cxx | 12 +--- vtkm/cont/ColorTable.h | 12 +--- vtkm/cont/ColorTable.hxx | 12 +--- vtkm/cont/ColorTablePresets.cxx | 13 +---- vtkm/cont/ColorTablePrivate.hxx | 12 +--- vtkm/cont/ColorTableSamples.h | 12 +--- vtkm/cont/CoordinateSystem.cxx | 12 +--- vtkm/cont/CoordinateSystem.h | 12 +--- vtkm/cont/CoordinateSystem.hxx | 12 +--- vtkm/cont/DataSet.cxx | 12 +--- vtkm/cont/DataSet.h | 12 +--- vtkm/cont/DataSetBuilderExplicit.cxx | 12 +--- vtkm/cont/DataSetBuilderExplicit.h | 12 +--- vtkm/cont/DataSetBuilderRectilinear.cxx | 12 +--- vtkm/cont/DataSetBuilderRectilinear.h | 12 +--- vtkm/cont/DataSetBuilderUniform.cxx | 12 +--- vtkm/cont/DataSetBuilderUniform.h | 12 +--- vtkm/cont/DataSetFieldAdd.h | 12 +--- vtkm/cont/DeviceAdapter.h | 12 +--- vtkm/cont/DeviceAdapterAlgorithm.h | 12 +--- vtkm/cont/DeviceAdapterListTag.h | 12 +--- vtkm/cont/DeviceAdapterTag.h | 12 +--- vtkm/cont/DynamicCellSet.h | 12 +--- vtkm/cont/EnvironmentTracker.cxx | 12 +--- vtkm/cont/EnvironmentTracker.h | 12 +--- vtkm/cont/Error.h | 12 +--- vtkm/cont/ErrorBadAllocation.h | 12 +--- vtkm/cont/ErrorBadDevice.cxx | 12 +--- vtkm/cont/ErrorBadDevice.h | 12 +--- vtkm/cont/ErrorBadType.cxx | 12 +--- vtkm/cont/ErrorBadType.h | 12 +--- vtkm/cont/ErrorBadValue.h | 12 +--- vtkm/cont/ErrorExecution.h | 12 +--- vtkm/cont/ErrorFilterExecution.h | 12 +--- vtkm/cont/ErrorInternal.h | 12 +--- vtkm/cont/ExecutionAndControlObjectBase.h | 12 +--- vtkm/cont/ExecutionObjectBase.h | 12 +--- vtkm/cont/Field.cxx | 12 +--- vtkm/cont/Field.h | 12 +--- vtkm/cont/FieldRangeCompute.cxx | 12 +--- vtkm/cont/FieldRangeCompute.h | 12 +--- vtkm/cont/FieldRangeCompute.hxx | 12 +--- vtkm/cont/FieldRangeGlobalCompute.cxx | 12 +--- vtkm/cont/FieldRangeGlobalCompute.h | 12 +--- vtkm/cont/FieldRangeGlobalCompute.hxx | 12 +--- vtkm/cont/ImplicitFunctionHandle.h | 12 +--- vtkm/cont/Initialize.cxx | 12 +--- vtkm/cont/Initialize.h | 12 +--- vtkm/cont/Logging.cxx | 12 +--- vtkm/cont/Logging.h | 12 +--- vtkm/cont/MultiBlock.cxx | 12 +--- vtkm/cont/MultiBlock.h | 12 +--- vtkm/cont/PointLocator.h | 12 +--- vtkm/cont/PointLocatorUniformGrid.h | 12 +--- vtkm/cont/RuntimeDeviceInformation.cxx | 12 +--- vtkm/cont/RuntimeDeviceInformation.h | 12 +--- vtkm/cont/RuntimeDeviceTracker.cxx | 12 +--- vtkm/cont/RuntimeDeviceTracker.h | 12 +--- vtkm/cont/SerializableTypeString.h | 12 +--- vtkm/cont/Serialization.h | 12 +--- vtkm/cont/Storage.h | 12 +--- vtkm/cont/StorageBasic.cxx | 12 +--- vtkm/cont/StorageBasic.h | 12 +--- vtkm/cont/StorageBasic.hxx | 12 +--- vtkm/cont/StorageImplicit.h | 12 +--- vtkm/cont/StorageListTag.h | 12 +--- vtkm/cont/StorageVirtual.cxx | 12 +--- vtkm/cont/StorageVirtual.h | 12 +--- vtkm/cont/StorageVirtual.hxx | 12 +--- vtkm/cont/Timer.cxx | 12 +--- vtkm/cont/Timer.h | 12 +--- vtkm/cont/TryExecute.cxx | 12 +--- vtkm/cont/TryExecute.h | 12 +--- vtkm/cont/VariantArrayHandle.cxx | 12 +--- vtkm/cont/VariantArrayHandle.h | 12 +--- vtkm/cont/VirtualObjectHandle.h | 12 +--- vtkm/cont/VirtualObjectHandle.hxx | 12 +--- vtkm/cont/arg/CMakeLists.txt | 12 +--- vtkm/cont/arg/ControlSignatureTagBase.h | 12 +--- vtkm/cont/arg/Transport.h | 12 +--- vtkm/cont/arg/TransportTagArrayIn.h | 12 +--- vtkm/cont/arg/TransportTagArrayInOut.h | 12 +--- vtkm/cont/arg/TransportTagArrayOut.h | 12 +--- vtkm/cont/arg/TransportTagAtomicArray.h | 12 +--- vtkm/cont/arg/TransportTagBitField.h | 12 +--- vtkm/cont/arg/TransportTagCellSetIn.h | 12 +--- vtkm/cont/arg/TransportTagExecObject.h | 12 +--- vtkm/cont/arg/TransportTagKeyedValuesIn.h | 12 +--- vtkm/cont/arg/TransportTagKeyedValuesInOut.h | 12 +--- vtkm/cont/arg/TransportTagKeyedValuesOut.h | 12 +--- vtkm/cont/arg/TransportTagKeysIn.h | 12 +--- vtkm/cont/arg/TransportTagTopologyFieldIn.h | 12 +--- vtkm/cont/arg/TransportTagWholeArrayIn.h | 12 +--- vtkm/cont/arg/TransportTagWholeArrayInOut.h | 12 +--- vtkm/cont/arg/TransportTagWholeArrayOut.h | 12 +--- vtkm/cont/arg/TypeCheck.h | 12 +--- vtkm/cont/arg/TypeCheckTagArray.h | 12 +--- vtkm/cont/arg/TypeCheckTagAtomicArray.h | 12 +--- vtkm/cont/arg/TypeCheckTagBitField.h | 12 +--- vtkm/cont/arg/TypeCheckTagCellSet.h | 12 +--- vtkm/cont/arg/TypeCheckTagCellSetStructured.h | 12 +--- vtkm/cont/arg/TypeCheckTagExecObject.h | 12 +--- vtkm/cont/arg/TypeCheckTagKeys.h | 12 +--- vtkm/cont/arg/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestControlSignatureTag.cxx | 12 +--- .../arg/testing/UnitTestTransportArrayIn.cxx | 12 +--- .../testing/UnitTestTransportArrayInOut.cxx | 12 +--- .../arg/testing/UnitTestTransportArrayOut.cxx | 12 +--- .../testing/UnitTestTransportCellSetIn.cxx | 12 +--- .../testing/UnitTestTransportExecObject.cxx | 12 +--- .../testing/UnitTestTransportWholeArray.cxx | 12 +--- .../arg/testing/UnitTestTypeCheckArray.cxx | 12 +--- .../arg/testing/UnitTestTypeCheckCellSet.cxx | 12 +--- .../testing/UnitTestTypeCheckExecObject.cxx | 12 +--- .../arg/testing/UnitTestTypeCheckKeys.cxx | 12 +--- vtkm/cont/cuda/CMakeLists.txt | 12 +--- vtkm/cont/cuda/ChooseCudaDevice.h | 12 +--- vtkm/cont/cuda/DeviceAdapterCuda.h | 12 +--- vtkm/cont/cuda/ErrorCuda.h | 12 +--- .../internal/ArrayManagerExecutionCuda.cu | 12 +--- .../cuda/internal/ArrayManagerExecutionCuda.h | 12 +--- .../internal/AtomicInterfaceExecutionCuda.h | 12 +--- vtkm/cont/cuda/internal/CMakeLists.txt | 12 +--- vtkm/cont/cuda/internal/CudaAllocator.cu | 12 +--- vtkm/cont/cuda/internal/CudaAllocator.h | 12 +--- .../internal/DeviceAdapterAlgorithmCuda.cu | 12 +--- .../internal/DeviceAdapterAlgorithmCuda.h | 12 +--- ...viceAdapterAtomicArrayImplementationCuda.h | 12 +--- .../DeviceAdapterRuntimeDetectorCuda.cu | 12 +--- .../DeviceAdapterRuntimeDetectorCuda.cxx | 12 +--- .../DeviceAdapterRuntimeDetectorCuda.h | 12 +--- .../cont/cuda/internal/DeviceAdapterTagCuda.h | 12 +--- .../DeviceAdapterTimerImplementationCuda.cu | 12 +--- .../DeviceAdapterTimerImplementationCuda.h | 12 +--- .../ExecutionArrayInterfaceBasicCuda.cu | 12 +--- .../ExecutionArrayInterfaceBasicCuda.h | 12 +--- vtkm/cont/cuda/internal/MakeThrustIterator.h | 12 +--- .../cuda/internal/ThrustExceptionHandler.h | 12 +--- .../cuda/internal/VirtualObjectTransferCuda.h | 12 +--- .../cont/cuda/internal/testing/CMakeLists.txt | 12 +--- vtkm/cont/cuda/internal/testing/Testing.h | 12 +--- vtkm/cont/cuda/testing/CMakeLists.txt | 12 +--- .../cuda/testing/UnitTestCudaArrayHandle.cu | 12 +--- .../testing/UnitTestCudaArrayHandleFancy.cu | 12 +--- ...itTestCudaArrayHandleVirtualCoordinates.cu | 12 +--- .../cont/cuda/testing/UnitTestCudaBitField.cu | 12 +--- .../UnitTestCudaCellLocatorRectilinearGrid.cu | 12 +--- .../UnitTestCudaCellLocatorUniformBins.cu | 12 +--- .../UnitTestCudaCellLocatorUniformGrid.cu | 12 +--- .../cuda/testing/UnitTestCudaColorTable.cu | 12 +--- .../cuda/testing/UnitTestCudaComputeRange.cu | 12 +--- .../testing/UnitTestCudaDataSetExplicit.cu | 12 +--- .../testing/UnitTestCudaDataSetSingleType.cu | 12 +--- .../cuda/testing/UnitTestCudaDeviceAdapter.cu | 12 +--- .../cont/cuda/testing/UnitTestCudaGeometry.cu | 16 +----- .../testing/UnitTestCudaImplicitFunction.cu | 12 +--- vtkm/cont/cuda/testing/UnitTestCudaMath.cu | 16 +----- .../UnitTestCudaPointLocatorUniformGrid.cu | 12 +--- ...tTestCudaShareUserProvidedManagedMemory.cu | 12 +--- .../UnitTestCudaVirtualObjectHandle.cu | 12 +--- vtkm/cont/internal/ArrayExportMacros.h | 12 +--- vtkm/cont/internal/ArrayHandleBasicImpl.cxx | 12 +--- vtkm/cont/internal/ArrayHandleBasicImpl.h | 12 +--- vtkm/cont/internal/ArrayHandleBasicImpl.hxx | 12 +--- .../internal/ArrayHandleExecutionManager.h | 12 +--- vtkm/cont/internal/ArrayManagerExecution.h | 12 +--- .../ArrayManagerExecutionShareWithControl.cxx | 12 +--- .../ArrayManagerExecutionShareWithControl.h | 12 +--- vtkm/cont/internal/ArrayPortalFromIterators.h | 12 +--- vtkm/cont/internal/ArrayPortalShrink.h | 12 +--- vtkm/cont/internal/ArrayTransfer.h | 12 +--- vtkm/cont/internal/AtomicInterfaceControl.h | 12 +--- vtkm/cont/internal/AtomicInterfaceExecution.h | 12 +--- vtkm/cont/internal/CMakeLists.txt | 12 +--- .../internal/ConnectivityExplicitInternals.h | 12 +--- .../internal/DeviceAdapterAlgorithmGeneral.h | 12 +--- .../DeviceAdapterAtomicArrayImplementation.h | 12 +--- vtkm/cont/internal/DeviceAdapterError.h | 12 +--- vtkm/cont/internal/DeviceAdapterListHelpers.h | 12 +--- vtkm/cont/internal/DeviceAdapterTag.cxx | 12 +--- vtkm/cont/internal/DynamicTransform.h | 12 +--- vtkm/cont/internal/FunctorsGeneral.h | 12 +--- vtkm/cont/internal/IteratorFromArrayPortal.h | 12 +--- vtkm/cont/internal/KXSort.h | 16 +----- vtkm/cont/internal/OptionParser.h | 16 +----- vtkm/cont/internal/ParallelRadixSort.h | 16 +----- .../internal/ParallelRadixSortInterface.h | 12 +--- .../internal/ReverseConnectivityBuilder.h | 12 +--- vtkm/cont/internal/StorageError.h | 12 +--- vtkm/cont/internal/TransferInfo.cxx | 12 +--- vtkm/cont/internal/TransferInfo.h | 12 +--- .../internal/VariantArrayHandleContainer.h | 12 +--- vtkm/cont/internal/VirtualObjectTransfer.cxx | 12 +--- vtkm/cont/internal/VirtualObjectTransfer.h | 12 +--- .../VirtualObjectTransferShareWithControl.h | 12 +--- vtkm/cont/internal/testing/CMakeLists.txt | 12 +--- ...tArrayManagerExecutionShareWithControl.cxx | 12 +--- .../UnitTestArrayPortalFromIterators.cxx | 12 +--- .../testing/UnitTestDynamicTransform.cxx | 12 +--- .../UnitTestIteratorFromArrayPortal.cxx | 12 +--- vtkm/cont/openmp/CMakeLists.txt | 12 +--- vtkm/cont/openmp/DeviceAdapterOpenMP.h | 12 +--- .../internal/ArrayManagerExecutionOpenMP.cxx | 12 +--- .../internal/ArrayManagerExecutionOpenMP.h | 12 +--- .../internal/AtomicInterfaceExecutionOpenMP.h | 12 +--- vtkm/cont/openmp/internal/CMakeLists.txt | 12 +--- .../internal/DeviceAdapterAlgorithmOpenMP.cxx | 12 +--- .../internal/DeviceAdapterAlgorithmOpenMP.h | 12 +--- .../DeviceAdapterRuntimeDetectorOpenMP.cxx | 12 +--- .../DeviceAdapterRuntimeDetectorOpenMP.h | 12 +--- .../openmp/internal/DeviceAdapterTagOpenMP.h | 12 +--- .../ExecutionArrayInterfaceBasicOpenMP.cxx | 12 +--- .../ExecutionArrayInterfaceBasicOpenMP.h | 12 +--- vtkm/cont/openmp/internal/FunctorsOpenMP.h | 12 +--- .../openmp/internal/ParallelQuickSortOpenMP.h | 12 +--- .../internal/ParallelRadixSortOpenMP.cxx | 12 +--- .../openmp/internal/ParallelRadixSortOpenMP.h | 12 +--- .../cont/openmp/internal/ParallelScanOpenMP.h | 12 +--- .../cont/openmp/internal/ParallelSortOpenMP.h | 12 +--- .../internal/VirtualObjectTransferOpenMP.h | 12 +--- vtkm/cont/openmp/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestOpenMPArrayHandle.cxx | 12 +--- .../UnitTestOpenMPArrayHandleFancy.cxx | 12 +--- ...estOpenMPArrayHandleVirtualCoordinates.cxx | 12 +--- .../openmp/testing/UnitTestOpenMPBitField.cxx | 12 +--- ...itTestOpenMPCellLocatorRectilinearGrid.cxx | 12 +--- .../UnitTestOpenMPCellLocatorUniformBins.cxx | 12 +--- .../UnitTestOpenMPCellLocatorUniformGrid.cxx | 12 +--- .../testing/UnitTestOpenMPColorTable.cxx | 12 +--- .../testing/UnitTestOpenMPComputeRange.cxx | 12 +--- .../testing/UnitTestOpenMPDataSetExplicit.cxx | 12 +--- .../UnitTestOpenMPDataSetSingleType.cxx | 12 +--- .../testing/UnitTestOpenMPDeviceAdapter.cxx | 12 +--- .../UnitTestOpenMPImplicitFunction.cxx | 12 +--- .../UnitTestOpenMPPointLocatorUniformGrid.cxx | 12 +--- .../UnitTestOpenMPVirtualObjectHandle.cxx | 12 +--- vtkm/cont/serial/CMakeLists.txt | 12 +--- vtkm/cont/serial/DeviceAdapterSerial.h | 12 +--- .../internal/ArrayManagerExecutionSerial.cxx | 12 +--- .../internal/ArrayManagerExecutionSerial.h | 12 +--- .../internal/AtomicInterfaceExecutionSerial.h | 12 +--- vtkm/cont/serial/internal/CMakeLists.txt | 12 +--- .../internal/DeviceAdapterAlgorithmSerial.cxx | 12 +--- .../internal/DeviceAdapterAlgorithmSerial.h | 12 +--- .../DeviceAdapterRuntimeDetectorSerial.cxx | 12 +--- .../DeviceAdapterRuntimeDetectorSerial.h | 12 +--- .../serial/internal/DeviceAdapterTagSerial.h | 12 +--- .../ExecutionArrayInterfaceBasicSerial.cxx | 12 +--- .../ExecutionArrayInterfaceBasicSerial.h | 12 +--- .../internal/VirtualObjectTransferSerial.h | 12 +--- vtkm/cont/serial/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestSerialArrayHandle.cxx | 12 +--- .../UnitTestSerialArrayHandleFancy.cxx | 16 +----- ...estSerialArrayHandleVirtualCoordinates.cxx | 12 +--- .../serial/testing/UnitTestSerialBitField.cxx | 12 +--- ...itTestSerialCellLocatorRectilinearGrid.cxx | 12 +--- .../UnitTestSerialCellLocatorUniformBins.cxx | 12 +--- .../UnitTestSerialCellLocatorUniformGrid.cxx | 12 +--- .../testing/UnitTestSerialColorTable.cxx | 12 +--- .../testing/UnitTestSerialComputeRange.cxx | 12 +--- .../testing/UnitTestSerialDataSetExplicit.cxx | 12 +--- .../UnitTestSerialDataSetSingleType.cxx | 12 +--- .../testing/UnitTestSerialDeviceAdapter.cxx | 12 +--- .../serial/testing/UnitTestSerialGeometry.cxx | 16 +----- .../UnitTestSerialImplicitFunction.cxx | 12 +--- .../UnitTestSerialPointLocatorUniformGrid.cxx | 12 +--- .../UnitTestSerialVirtualObjectHandle.cxx | 12 +--- vtkm/cont/tbb/CMakeLists.txt | 12 +--- vtkm/cont/tbb/DeviceAdapterTBB.h | 12 +--- .../tbb/internal/ArrayManagerExecutionTBB.cxx | 12 +--- .../tbb/internal/ArrayManagerExecutionTBB.h | 12 +--- .../internal/AtomicInterfaceExecutionTBB.h | 12 +--- vtkm/cont/tbb/internal/CMakeLists.txt | 12 +--- .../internal/DeviceAdapterAlgorithmTBB.cxx | 12 +--- .../tbb/internal/DeviceAdapterAlgorithmTBB.h | 12 +--- .../DeviceAdapterRuntimeDetectorTBB.cxx | 12 +--- .../DeviceAdapterRuntimeDetectorTBB.h | 12 +--- vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h | 12 +--- .../ExecutionArrayInterfaceBasicTBB.cxx | 12 +--- .../ExecutionArrayInterfaceBasicTBB.h | 12 +--- vtkm/cont/tbb/internal/FunctorsTBB.h | 12 +--- vtkm/cont/tbb/internal/ParallelSortTBB.cxx | 16 +----- vtkm/cont/tbb/internal/ParallelSortTBB.h | 12 +--- .../tbb/internal/VirtualObjectTransferTBB.h | 12 +--- vtkm/cont/tbb/testing/CMakeLists.txt | 12 +--- .../tbb/testing/UnitTestTBBArrayHandle.cxx | 12 +--- .../testing/UnitTestTBBArrayHandleFancy.cxx | 12 +--- ...itTestTBBArrayHandleVirtualCoordinates.cxx | 12 +--- vtkm/cont/tbb/testing/UnitTestTBBBitField.cxx | 12 +--- .../UnitTestTBBCellLocatorRectilinearGrid.cxx | 12 +--- .../UnitTestTBBCellLocatorUniformBins.cxx | 12 +--- .../UnitTestTBBCellLocatorUniformGrid.cxx | 12 +--- .../tbb/testing/UnitTestTBBColorTable.cxx | 12 +--- .../tbb/testing/UnitTestTBBComputeRange.cxx | 12 +--- .../testing/UnitTestTBBDataSetExplicit.cxx | 12 +--- .../testing/UnitTestTBBDataSetSingleType.cxx | 12 +--- .../tbb/testing/UnitTestTBBDeviceAdapter.cxx | 12 +--- .../testing/UnitTestTBBImplicitFunction.cxx | 12 +--- .../UnitTestTBBPointLocatorUniformGrid.cxx | 12 +--- .../UnitTestTBBVirtualObjectHandle.cxx | 12 +--- vtkm/cont/testing/CMakeLists.txt | 12 +--- vtkm/cont/testing/ExplicitTestData.h | 16 +----- vtkm/cont/testing/MakeTestDataSet.h | 12 +--- vtkm/cont/testing/Testing.h | 12 +--- .../TestingArrayHandleVirtualCoordinates.h | 12 +--- vtkm/cont/testing/TestingArrayHandles.h | 12 +--- vtkm/cont/testing/TestingBitField.h | 12 +--- .../TestingCellLocatorRectilinearGrid.h | 12 +--- .../testing/TestingCellLocatorUniformBins.h | 12 +--- .../testing/TestingCellLocatorUniformGrid.h | 12 +--- vtkm/cont/testing/TestingColorTable.h | 12 +--- vtkm/cont/testing/TestingComputeRange.h | 12 +--- vtkm/cont/testing/TestingDataSetExplicit.h | 12 +--- vtkm/cont/testing/TestingDataSetSingleType.h | 12 +--- vtkm/cont/testing/TestingDeviceAdapter.h | 12 +--- vtkm/cont/testing/TestingFancyArrayHandles.h | 16 +----- vtkm/cont/testing/TestingImplicitFunction.h | 12 +--- .../testing/TestingPointLocatorUniformGrid.h | 12 +--- vtkm/cont/testing/TestingSerialization.h | 12 +--- .../cont/testing/TestingVirtualObjectHandle.h | 12 +--- vtkm/cont/testing/UnitTestAlgorithm.cxx | 12 +--- vtkm/cont/testing/UnitTestArrayCopy.cxx | 12 +--- .../UnitTestArrayHandleCartesianProduct.cxx | 16 +----- .../UnitTestArrayHandleCompositeVector.cxx | 12 +--- .../UnitTestArrayHandleConcatenate.cxx | 12 +--- .../testing/UnitTestArrayHandleCounting.cxx | 12 +--- .../testing/UnitTestArrayHandleDiscard.cxx | 12 +--- .../UnitTestArrayHandleExtractComponent.cxx | 16 +----- .../testing/UnitTestArrayHandleImplicit.cxx | 16 +----- .../cont/testing/UnitTestArrayHandleIndex.cxx | 12 +--- .../UnitTestArrayHandlePermutation.cxx | 16 +----- .../testing/UnitTestArrayHandleReverse.cxx | 12 +--- .../testing/UnitTestArrayHandleSwizzle.cxx | 16 +----- .../testing/UnitTestArrayHandleTransform.cxx | 16 +----- ...TestArrayHandleUniformPointCoordinates.cxx | 12 +--- .../testing/UnitTestArrayHandleVirtual.cxx | 12 +--- .../UnitTestArrayPortalToIterators.cxx | 12 +--- .../testing/UnitTestCellLocatorGeneral.cxx | 12 +--- vtkm/cont/testing/UnitTestCellSet.cxx | 12 +--- vtkm/cont/testing/UnitTestCellSetExplicit.cxx | 12 +--- .../testing/UnitTestCellSetPermutation.cxx | 12 +--- vtkm/cont/testing/UnitTestContTesting.cxx | 12 +--- .../UnitTestDataSetBuilderExplicit.cxx | 16 +----- .../UnitTestDataSetBuilderRectilinear.cxx | 16 +----- .../testing/UnitTestDataSetBuilderUniform.cxx | 16 +----- .../testing/UnitTestDataSetPermutation.cxx | 12 +--- .../testing/UnitTestDataSetRectilinear.cxx | 12 +--- vtkm/cont/testing/UnitTestDataSetUniform.cxx | 12 +--- ...itTestDeviceAdapterAlgorithmDependency.cxx | 12 +--- .../UnitTestDeviceAdapterAlgorithmGeneral.cxx | 12 +--- vtkm/cont/testing/UnitTestDynamicCellSet.cxx | 12 +--- .../testing/UnitTestFieldRangeCompute.cxx | 12 +--- .../UnitTestFieldRangeGlobalCompute.cxx | 12 +--- vtkm/cont/testing/UnitTestInitialize.cxx | 12 +--- vtkm/cont/testing/UnitTestLogging.cxx | 12 +--- .../cont/testing/UnitTestMoveConstructors.cxx | 12 +--- vtkm/cont/testing/UnitTestMultiBlock.cxx | 12 +--- .../UnitTestRuntimeDeviceInformation.cxx | 12 +--- .../testing/UnitTestRuntimeDeviceNames.cxx | 12 +--- .../UnitTestSerializationArrayHandle.cxx | 12 +--- .../testing/UnitTestSerializationDataSet.cxx | 12 +--- vtkm/cont/testing/UnitTestStorageBasic.cxx | 12 +--- vtkm/cont/testing/UnitTestStorageImplicit.cxx | 12 +--- vtkm/cont/testing/UnitTestStorageListTag.cxx | 12 +--- vtkm/cont/testing/UnitTestTimer.cxx | 12 +--- vtkm/cont/testing/UnitTestTryExecute.cxx | 12 +--- .../testing/UnitTestVariantArrayHandle.cxx | 12 +--- vtkm/exec/AtomicArrayExecutionObject.h | 12 +--- vtkm/exec/BoundaryState.h | 12 +--- vtkm/exec/CMakeLists.txt | 12 +--- vtkm/exec/CellDerivative.h | 12 +--- vtkm/exec/CellEdge.h | 12 +--- vtkm/exec/CellFace.h | 12 +--- vtkm/exec/CellInside.h | 12 +--- vtkm/exec/CellInterpolate.h | 12 +--- vtkm/exec/CellLocator.h | 12 +--- ...CellLocatorBoundingIntervalHierarchyExec.h | 12 +--- vtkm/exec/CellLocatorRectilinearGrid.h | 12 +--- vtkm/exec/CellLocatorUniformGrid.h | 12 +--- vtkm/exec/CellMeasure.h | 12 +--- vtkm/exec/ColorTable.h | 16 +----- vtkm/exec/ColorTable.hxx | 16 +----- vtkm/exec/ConnectivityExplicit.h | 12 +--- vtkm/exec/ConnectivityPermuted.h | 12 +--- vtkm/exec/ConnectivityStructured.h | 12 +--- vtkm/exec/ExecutionWholeArray.h | 12 +--- vtkm/exec/FieldNeighborhood.h | 12 +--- vtkm/exec/FunctorBase.h | 12 +--- vtkm/exec/Jacobian.h | 12 +--- vtkm/exec/ParametricCoordinates.h | 12 +--- vtkm/exec/PointLocator.h | 12 +--- vtkm/exec/PointLocatorUniformGrid.h | 12 +--- vtkm/exec/TaskBase.h | 12 +--- vtkm/exec/arg/AspectTagDefault.h | 12 +--- vtkm/exec/arg/BasicArg.h | 12 +--- vtkm/exec/arg/Boundary.h | 12 +--- vtkm/exec/arg/CMakeLists.txt | 12 +--- vtkm/exec/arg/CellShape.h | 12 +--- vtkm/exec/arg/ExecutionSignatureTagBase.h | 12 +--- vtkm/exec/arg/Fetch.h | 12 +--- vtkm/exec/arg/FetchTagArrayDirectIn.h | 12 +--- vtkm/exec/arg/FetchTagArrayDirectInOut.h | 12 +--- vtkm/exec/arg/FetchTagArrayDirectOut.h | 12 +--- vtkm/exec/arg/FetchTagArrayNeighborhoodIn.h | 12 +--- vtkm/exec/arg/FetchTagArrayTopologyMapIn.h | 12 +--- vtkm/exec/arg/FetchTagCellSetIn.h | 12 +--- vtkm/exec/arg/FetchTagExecObject.h | 12 +--- vtkm/exec/arg/FetchTagKeysIn.h | 12 +--- vtkm/exec/arg/FetchTagWholeCellSetIn.h | 12 +--- vtkm/exec/arg/FromCount.h | 12 +--- vtkm/exec/arg/FromIndices.h | 12 +--- vtkm/exec/arg/InputIndex.h | 12 +--- vtkm/exec/arg/OutputIndex.h | 12 +--- vtkm/exec/arg/ThreadIndices.h | 12 +--- vtkm/exec/arg/ThreadIndicesBasic.h | 12 +--- .../exec/arg/ThreadIndicesPointNeighborhood.h | 12 +--- vtkm/exec/arg/ThreadIndicesReduceByKey.h | 12 +--- vtkm/exec/arg/ThreadIndicesTopologyMap.h | 12 +--- vtkm/exec/arg/ValueCount.h | 12 +--- vtkm/exec/arg/VisitIndex.h | 12 +--- vtkm/exec/arg/WorkIndex.h | 12 +--- vtkm/exec/arg/testing/CMakeLists.txt | 14 +---- vtkm/exec/arg/testing/ThreadIndicesTesting.h | 12 +--- .../testing/UnitTestExecutionSignatureTag.cxx | 12 +--- .../testing/UnitTestFetchArrayDirectIn.cxx | 12 +--- .../testing/UnitTestFetchArrayDirectInOut.cxx | 12 +--- .../testing/UnitTestFetchArrayDirectOut.cxx | 12 +--- .../UnitTestFetchArrayNeighborhoodIn.cxx | 12 +--- .../UnitTestFetchArrayTopologyMapIn.cxx | 12 +--- .../arg/testing/UnitTestFetchExecObject.cxx | 12 +--- .../arg/testing/UnitTestFetchWorkIndex.cxx | 12 +--- vtkm/exec/cuda/CMakeLists.txt | 12 +--- .../cuda/internal/ArrayPortalFromThrust.h | 12 +--- vtkm/exec/cuda/internal/CMakeLists.txt | 12 +--- vtkm/exec/cuda/internal/ExecutionPolicy.h | 13 +---- .../cuda/internal/IteratorFromArrayPortal.h | 12 +--- vtkm/exec/cuda/internal/TaskStrided.h | 12 +--- vtkm/exec/cuda/internal/ThrustPatches.h | 12 +--- vtkm/exec/cuda/internal/WrappedOperators.h | 12 +--- .../exec/cuda/internal/testing/CMakeLists.txt | 16 +----- .../internal/testing/UnitTestTaskStrided.cu | 12 +--- .../testing/UnitTestTextureMemorySupport.cu | 12 +--- vtkm/exec/internal/CMakeLists.txt | 12 +--- vtkm/exec/internal/ErrorMessageBuffer.h | 12 +--- vtkm/exec/internal/FastVec.h | 12 +--- vtkm/exec/internal/ReduceByKeyLookup.h | 12 +--- vtkm/exec/internal/TaskSingular.h | 12 +--- .../TwoLevelUniformGridExecutionObject.h | 15 +---- .../internal/WorkletInvokeFunctorDetail.h | 12 +--- .../internal/WorkletInvokeFunctorDetail.h.in | 12 +--- vtkm/exec/internal/testing/CMakeLists.txt | 16 +----- .../exec/internal/testing/TestingTaskTiling.h | 12 +--- .../testing/UnitTestErrorMessageBuffer.cxx | 12 +--- .../internal/testing/UnitTestTaskSingular.cxx | 12 +--- .../testing/UnitTestWorkletInvokeFunctor.cxx | 12 +--- vtkm/exec/openmp/CMakeLists.txt | 12 +--- vtkm/exec/openmp/internal/CMakeLists.txt | 12 +--- vtkm/exec/openmp/internal/TaskTilingOpenMP.h | 12 +--- .../openmp/internal/testing/CMakeLists.txt | 16 +----- .../testing/UnitTestTaskTilingOpenMP.cxx | 12 +--- vtkm/exec/serial/CMakeLists.txt | 12 +--- vtkm/exec/serial/internal/CMakeLists.txt | 12 +--- vtkm/exec/serial/internal/TaskTiling.h | 12 +--- .../serial/internal/testing/CMakeLists.txt | 16 +----- .../testing/UnitTestTaskTilingSerial.cxx | 12 +--- vtkm/exec/tbb/CMakeLists.txt | 12 +--- vtkm/exec/tbb/internal/CMakeLists.txt | 12 +--- vtkm/exec/tbb/internal/TaskTiling.h | 12 +--- vtkm/exec/tbb/internal/testing/CMakeLists.txt | 16 +----- .../testing/UnitTestTaskTilingTBB.cxx | 12 +--- vtkm/exec/testing/CMakeLists.txt | 16 +----- vtkm/exec/testing/UnitTestCellDerivative.cxx | 12 +--- vtkm/exec/testing/UnitTestCellEdgeFace.cxx | 12 +--- vtkm/exec/testing/UnitTestCellInterpolate.cxx | 12 +--- .../testing/UnitTestParametricCoordinates.cxx | 12 +--- vtkm/filter/CMakeLists.txt | 12 +--- vtkm/filter/CellAverage.h | 12 +--- vtkm/filter/CellAverage.hxx | 12 +--- vtkm/filter/CellMeasures.h | 12 +--- vtkm/filter/CellMeasures.hxx | 12 +--- vtkm/filter/CellSetConnectivity.h | 16 +----- vtkm/filter/CellSetConnectivity.hxx | 16 +----- vtkm/filter/CleanGrid.h | 12 +--- vtkm/filter/CleanGrid.hxx | 12 +--- vtkm/filter/ClipWithField.h | 12 +--- vtkm/filter/ClipWithField.hxx | 12 +--- vtkm/filter/ClipWithImplicitFunction.h | 12 +--- vtkm/filter/ClipWithImplicitFunction.hxx | 12 +--- vtkm/filter/ContourTreeUniform.h | 12 +--- vtkm/filter/ContourTreeUniform.hxx | 12 +--- vtkm/filter/ContourTreeUniformAugmented.h | 12 +--- vtkm/filter/ContourTreeUniformAugmented.hxx | 12 +--- vtkm/filter/CoordinateSystemTransform.h | 12 +--- vtkm/filter/CoordinateSystemTransform.hxx | 12 +--- vtkm/filter/CrossProduct.h | 12 +--- vtkm/filter/CrossProduct.hxx | 12 +--- vtkm/filter/DotProduct.h | 12 +--- vtkm/filter/DotProduct.hxx | 12 +--- vtkm/filter/Entropy.h | 12 +--- vtkm/filter/Entropy.hxx | 12 +--- vtkm/filter/ExternalFaces.h | 12 +--- vtkm/filter/ExternalFaces.hxx | 12 +--- vtkm/filter/ExtractGeometry.h | 12 +--- vtkm/filter/ExtractGeometry.hxx | 12 +--- vtkm/filter/ExtractPoints.h | 12 +--- vtkm/filter/ExtractPoints.hxx | 12 +--- vtkm/filter/ExtractStructured.h | 12 +--- vtkm/filter/ExtractStructured.hxx | 12 +--- vtkm/filter/FieldMetadata.h | 12 +--- vtkm/filter/FieldSelection.h | 12 +--- vtkm/filter/FieldToColors.h | 12 +--- vtkm/filter/FieldToColors.hxx | 12 +--- vtkm/filter/Filter.h | 12 +--- vtkm/filter/Filter.hxx | 12 +--- vtkm/filter/FilterCell.h | 12 +--- vtkm/filter/FilterCell.hxx | 12 +--- vtkm/filter/FilterDataSet.h | 12 +--- vtkm/filter/FilterDataSet.hxx | 12 +--- vtkm/filter/FilterDataSetWithField.h | 12 +--- vtkm/filter/FilterDataSetWithField.hxx | 12 +--- vtkm/filter/FilterField.h | 12 +--- vtkm/filter/FilterField.hxx | 12 +--- vtkm/filter/FilterTraits.h | 12 +--- vtkm/filter/GhostCellClassify.h | 12 +--- vtkm/filter/GhostCellClassify.hxx | 12 +--- vtkm/filter/GhostCellRemove.h | 12 +--- vtkm/filter/GhostCellRemove.hxx | 12 +--- vtkm/filter/Gradient.h | 12 +--- vtkm/filter/Gradient.hxx | 12 +--- vtkm/filter/Histogram.h | 12 +--- vtkm/filter/Histogram.hxx | 12 +--- vtkm/filter/ImageConnectivity.h | 16 +----- vtkm/filter/ImageConnectivity.hxx | 12 +--- vtkm/filter/Lagrangian.h | 12 +--- vtkm/filter/Lagrangian.hxx | 12 +--- vtkm/filter/MarchingCubes.h | 12 +--- vtkm/filter/MarchingCubes.hxx | 12 +--- vtkm/filter/Mask.h | 12 +--- vtkm/filter/Mask.hxx | 12 +--- vtkm/filter/MaskPoints.h | 12 +--- vtkm/filter/MaskPoints.hxx | 12 +--- vtkm/filter/NDEntropy.h | 12 +--- vtkm/filter/NDEntropy.hxx | 12 +--- vtkm/filter/NDHistogram.h | 12 +--- vtkm/filter/NDHistogram.hxx | 12 +--- vtkm/filter/OscillatorSource.h | 12 +--- vtkm/filter/OscillatorSource.hxx | 12 +--- vtkm/filter/Pathline.h | 12 +--- vtkm/filter/Pathline.hxx | 12 +--- vtkm/filter/PointAverage.h | 12 +--- vtkm/filter/PointAverage.hxx | 12 +--- vtkm/filter/PointElevation.h | 12 +--- vtkm/filter/PointElevation.hxx | 12 +--- vtkm/filter/PointTransform.h | 12 +--- vtkm/filter/PointTransform.hxx | 12 +--- vtkm/filter/PolicyBase.h | 12 +--- vtkm/filter/PolicyDefault.h | 12 +--- vtkm/filter/Probe.h | 12 +--- vtkm/filter/Probe.hxx | 12 +--- vtkm/filter/SplitSharpEdges.h | 12 +--- vtkm/filter/SplitSharpEdges.hxx | 12 +--- vtkm/filter/Streamline.h | 12 +--- vtkm/filter/Streamline.hxx | 12 +--- vtkm/filter/SurfaceNormals.h | 12 +--- vtkm/filter/SurfaceNormals.hxx | 12 +--- vtkm/filter/Tetrahedralize.h | 12 +--- vtkm/filter/Tetrahedralize.hxx | 12 +--- vtkm/filter/Threshold.h | 12 +--- vtkm/filter/Threshold.hxx | 12 +--- vtkm/filter/ThresholdPoints.h | 12 +--- vtkm/filter/ThresholdPoints.hxx | 12 +--- vtkm/filter/Triangulate.h | 12 +--- vtkm/filter/Triangulate.hxx | 12 +--- vtkm/filter/VectorMagnitude.h | 12 +--- vtkm/filter/VectorMagnitude.hxx | 12 +--- vtkm/filter/VertexClustering.h | 12 +--- vtkm/filter/VertexClustering.hxx | 12 +--- vtkm/filter/WarpScalar.h | 12 +--- vtkm/filter/WarpScalar.hxx | 12 +--- vtkm/filter/WarpVector.h | 12 +--- vtkm/filter/WarpVector.hxx | 12 +--- vtkm/filter/ZFPCompressor1D.h | 12 +--- vtkm/filter/ZFPCompressor1D.hxx | 12 +--- vtkm/filter/ZFPCompressor2D.h | 12 +--- vtkm/filter/ZFPCompressor2D.hxx | 12 +--- vtkm/filter/ZFPCompressor3D.h | 12 +--- vtkm/filter/ZFPCompressor3D.hxx | 12 +--- vtkm/filter/ZFPDecompressor1D.h | 12 +--- vtkm/filter/ZFPDecompressor1D.hxx | 12 +--- vtkm/filter/ZFPDecompressor2D.h | 12 +--- vtkm/filter/ZFPDecompressor2D.hxx | 12 +--- vtkm/filter/ZFPDecompressor3D.h | 12 +--- vtkm/filter/ZFPDecompressor3D.hxx | 12 +--- vtkm/filter/internal/CMakeLists.txt | 12 +--- vtkm/filter/internal/CreateResult.h | 12 +--- .../internal/ResolveFieldTypeAndExecute.h | 12 +--- vtkm/filter/internal/ResolveFieldTypeAndMap.h | 12 +--- vtkm/filter/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestCellAverageFilter.cxx | 12 +--- .../testing/UnitTestCellMeasuresFilter.cxx | 12 +--- .../UnitTestCellSetConnectivityFilter.cxx | 16 +----- vtkm/filter/testing/UnitTestCleanGrid.cxx | 12 +--- .../testing/UnitTestClipWithFieldFilter.cxx | 12 +--- ...UnitTestClipWithImplicitFunctionFilter.cxx | 12 +--- ...tTestContourTreeUniformAugmentedFilter.cxx | 12 +--- .../UnitTestContourTreeUniformFilter.cxx | 12 +--- .../UnitTestCoordinateSystemTransform.cxx | 12 +--- .../testing/UnitTestCrossProductFilter.cxx | 12 +--- .../testing/UnitTestDotProductFilter.cxx | 12 +--- vtkm/filter/testing/UnitTestEntropyFilter.cxx | 12 +--- .../testing/UnitTestExternalFacesFilter.cxx | 12 +--- .../testing/UnitTestExtractGeometryFilter.cxx | 12 +--- .../testing/UnitTestExtractPointsFilter.cxx | 12 +--- .../UnitTestExtractStructuredFilter.cxx | 12 +--- vtkm/filter/testing/UnitTestFieldMetadata.cxx | 12 +--- .../filter/testing/UnitTestFieldSelection.cxx | 12 +--- vtkm/filter/testing/UnitTestFieldToColors.cxx | 12 +--- .../testing/UnitTestGhostCellClassify.cxx | 12 +--- .../testing/UnitTestGhostCellRemove.cxx | 12 +--- vtkm/filter/testing/UnitTestGradient.cxx | 12 +--- .../testing/UnitTestHistogramFilter.cxx | 12 +--- .../UnitTestImageConnectivityFilter.cxx | 12 +--- .../testing/UnitTestLagrangianFilter.cxx | 12 +--- .../testing/UnitTestMarchingCubesFilter.cxx | 12 +--- vtkm/filter/testing/UnitTestMaskFilter.cxx | 12 +--- .../testing/UnitTestMaskPointsFilter.cxx | 12 +--- .../testing/UnitTestMultiBlockFilters.cxx | 12 +--- .../UnitTestMultiBlockHistogramFilter.cxx | 12 +--- .../testing/UnitTestNDEntropyFilter.cxx | 12 +--- .../testing/UnitTestNDHistogramFilter.cxx | 12 +--- .../testing/UnitTestPointAverageFilter.cxx | 12 +--- .../testing/UnitTestPointElevationFilter.cxx | 12 +--- .../filter/testing/UnitTestPointTransform.cxx | 12 +--- vtkm/filter/testing/UnitTestProbe.cxx | 12 +--- .../testing/UnitTestSplitSharpEdgesFilter.cxx | 12 +--- .../testing/UnitTestStreamlineFilter.cxx | 12 +--- .../testing/UnitTestSurfaceNormalsFilter.cxx | 12 +--- .../testing/UnitTestTetrahedralizeFilter.cxx | 12 +--- .../testing/UnitTestThresholdFilter.cxx | 12 +--- .../testing/UnitTestThresholdPointsFilter.cxx | 12 +--- .../testing/UnitTestTriangulateFilter.cxx | 12 +--- .../testing/UnitTestVectorMagnitudeFilter.cxx | 12 +--- .../UnitTestVertexClusteringFilter.cxx | 12 +--- .../testing/UnitTestWarpScalarFilter.cxx | 12 +--- .../testing/UnitTestWarpVectorFilter.cxx | 12 +--- vtkm/filter/testing/UnitTestZFP.cxx | 12 +--- vtkm/internal/ArrayPortalHelpers.h | 12 +--- .../ArrayPortalUniformPointCoordinates.h | 12 +--- vtkm/internal/ArrayPortalValueReference.h | 12 +--- vtkm/internal/ArrayPortalVirtual.h | 12 +--- vtkm/internal/Assume.h | 12 +--- vtkm/internal/CMakeLists.txt | 12 +--- vtkm/internal/Configure.h.in | 12 +--- vtkm/internal/ConfigureFor32.h | 12 +--- vtkm/internal/ConfigureFor64.h | 12 +--- .../ConnectivityStructuredInternals.h | 12 +--- vtkm/internal/ExportMacros.h | 12 +--- vtkm/internal/FunctionInterface.h | 12 +--- vtkm/internal/FunctionInterfaceDetailPost.h | 12 +--- .../internal/FunctionInterfaceDetailPost.h.in | 12 +--- vtkm/internal/FunctionInterfaceDetailPre.h | 12 +--- vtkm/internal/FunctionInterfaceDetailPre.h.in | 12 +--- vtkm/internal/IndexTag.h | 12 +--- vtkm/internal/Invocation.h | 12 +--- vtkm/internal/ListTagDetail.h | 12 +--- vtkm/internal/Unreachable.h | 12 +--- vtkm/internal/Windows.h | 12 +--- vtkm/internal/testing/CMakeLists.txt | 12 +--- .../UnitTestArrayPortalValueReference.cxx | 12 +--- .../testing/UnitTestConfigureFor32.cxx | 12 +--- .../testing/UnitTestConfigureFor64.cxx | 12 +--- .../testing/UnitTestFunctionInterface.cxx | 12 +--- vtkm/interop/BufferState.h | 12 +--- vtkm/interop/CMakeLists.txt | 12 +--- vtkm/interop/TransferToOpenGL.h | 12 +--- vtkm/interop/cuda/CMakeLists.txt | 12 +--- vtkm/interop/cuda/SetOpenGLDevice.h | 12 +--- vtkm/interop/cuda/internal/CMakeLists.txt | 12 +--- vtkm/interop/cuda/internal/TransferToOpenGL.h | 12 +--- vtkm/interop/cuda/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestTransferToOpenGLCuda.cu | 12 +--- vtkm/interop/internal/BufferTypePicker.h | 12 +--- vtkm/interop/internal/CMakeLists.txt | 12 +--- vtkm/interop/internal/OpenGLHeaders.h | 12 +--- vtkm/interop/internal/TransferToOpenGL.h | 12 +--- vtkm/interop/internal/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestBufferTypePicker.cxx | 12 +--- .../testing/UnitTestOpenGLHeaders.cxx | 12 +--- vtkm/interop/testing/CMakeLists.txt | 12 +--- vtkm/interop/testing/TestingOpenGLInterop.h | 12 +--- .../testing/TestingTransferFancyHandles.h | 16 +----- .../testing/UnitTestFancyTransferEGL.cxx | 12 +--- .../testing/UnitTestFancyTransferGLUT.cxx | 12 +--- .../testing/UnitTestFancyTransferOSMesa.cxx | 12 +--- vtkm/interop/testing/UnitTestTransferEGL.cxx | 12 +--- vtkm/interop/testing/UnitTestTransferGLUT.cxx | 12 +--- .../testing/UnitTestTransferOSMesa.cxx | 12 +--- vtkm/io/CMakeLists.txt | 12 +--- vtkm/io/ErrorIO.h | 12 +--- vtkm/io/internal/CMakeLists.txt | 12 +--- vtkm/io/internal/Endian.h | 12 +--- vtkm/io/internal/VTKDataSetCells.h | 12 +--- vtkm/io/internal/VTKDataSetStructures.h | 12 +--- vtkm/io/internal/VTKDataSetTypes.h | 12 +--- vtkm/io/reader/BOVDataSetReader.h | 12 +--- vtkm/io/reader/CMakeLists.txt | 12 +--- vtkm/io/reader/VTKDataSetReader.h | 12 +--- vtkm/io/reader/VTKDataSetReaderBase.h | 12 +--- vtkm/io/reader/VTKPolyDataReader.h | 12 +--- vtkm/io/reader/VTKRectilinearGridReader.h | 12 +--- vtkm/io/reader/VTKStructuredGridReader.h | 12 +--- vtkm/io/reader/VTKStructuredPointsReader.h | 12 +--- vtkm/io/reader/VTKUnstructuredGridReader.h | 12 +--- vtkm/io/reader/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestVTKDataSetReader.cxx | 12 +--- vtkm/io/writer/CMakeLists.txt | 12 +--- vtkm/io/writer/VTKDataSetWriter.h | 12 +--- vtkm/io/writer/testing/CMakeLists.txt | 14 +---- .../testing/UnitTestVTKDataSetWriter.cxx | 12 +--- vtkm/rendering/Actor.cxx | 12 +--- vtkm/rendering/Actor.h | 12 +--- vtkm/rendering/AxisAnnotation.cxx | 12 +--- vtkm/rendering/AxisAnnotation.h | 12 +--- vtkm/rendering/AxisAnnotation2D.cxx | 12 +--- vtkm/rendering/AxisAnnotation2D.h | 12 +--- vtkm/rendering/AxisAnnotation3D.cxx | 12 +--- vtkm/rendering/AxisAnnotation3D.h | 12 +--- vtkm/rendering/BitmapFont.cxx | 16 +----- vtkm/rendering/BitmapFont.h | 16 +----- vtkm/rendering/BitmapFontFactory.cxx | 16 +----- vtkm/rendering/BitmapFontFactory.h | 16 +----- vtkm/rendering/BoundingBoxAnnotation.cxx | 12 +--- vtkm/rendering/BoundingBoxAnnotation.h | 12 +--- vtkm/rendering/CMakeLists.txt | 12 +--- vtkm/rendering/Camera.cxx | 12 +--- vtkm/rendering/Camera.h | 12 +--- vtkm/rendering/Canvas.cxx | 12 +--- vtkm/rendering/Canvas.h | 12 +--- vtkm/rendering/CanvasEGL.cxx | 12 +--- vtkm/rendering/CanvasEGL.h | 12 +--- vtkm/rendering/CanvasGL.cxx | 12 +--- vtkm/rendering/CanvasGL.h | 12 +--- vtkm/rendering/CanvasOSMesa.cxx | 12 +--- vtkm/rendering/CanvasOSMesa.h | 12 +--- vtkm/rendering/CanvasRayTracer.cxx | 12 +--- vtkm/rendering/CanvasRayTracer.h | 12 +--- vtkm/rendering/Color.cxx | 12 +--- vtkm/rendering/Color.h | 12 +--- vtkm/rendering/ColorBarAnnotation.cxx | 12 +--- vtkm/rendering/ColorBarAnnotation.h | 12 +--- vtkm/rendering/ColorLegendAnnotation.cxx | 12 +--- vtkm/rendering/ColorLegendAnnotation.h | 12 +--- vtkm/rendering/ConnectivityProxy.cxx | 12 +--- vtkm/rendering/ConnectivityProxy.h | 12 +--- vtkm/rendering/Cylinderizer.h | 12 +--- vtkm/rendering/DecodePNG.cxx | 16 +----- vtkm/rendering/DecodePNG.h | 16 +----- vtkm/rendering/LineRenderer.cxx | 12 +--- vtkm/rendering/LineRenderer.h | 12 +--- vtkm/rendering/Mapper.cxx | 12 +--- vtkm/rendering/Mapper.h | 12 +--- vtkm/rendering/MapperConnectivity.cxx | 12 +--- vtkm/rendering/MapperConnectivity.h | 12 +--- vtkm/rendering/MapperCylinder.cxx | 12 +--- vtkm/rendering/MapperCylinder.h | 12 +--- vtkm/rendering/MapperGL.cxx | 12 +--- vtkm/rendering/MapperGL.h | 12 +--- vtkm/rendering/MapperPoint.cxx | 12 +--- vtkm/rendering/MapperPoint.h | 12 +--- vtkm/rendering/MapperQuad.cxx | 12 +--- vtkm/rendering/MapperQuad.h | 12 +--- vtkm/rendering/MapperRayTracer.cxx | 12 +--- vtkm/rendering/MapperRayTracer.h | 12 +--- vtkm/rendering/MapperVolume.cxx | 12 +--- vtkm/rendering/MapperVolume.h | 12 +--- vtkm/rendering/MapperWireframer.cxx | 12 +--- vtkm/rendering/MapperWireframer.h | 12 +--- vtkm/rendering/MatrixHelpers.h | 12 +--- vtkm/rendering/Quadralizer.h | 12 +--- vtkm/rendering/Scene.cxx | 12 +--- vtkm/rendering/Scene.h | 12 +--- vtkm/rendering/TextAnnotation.cxx | 12 +--- vtkm/rendering/TextAnnotation.h | 12 +--- vtkm/rendering/TextAnnotationBillboard.cxx | 12 +--- vtkm/rendering/TextAnnotationBillboard.h | 12 +--- vtkm/rendering/TextAnnotationScreen.cxx | 12 +--- vtkm/rendering/TextAnnotationScreen.h | 12 +--- vtkm/rendering/TextRenderer.cxx | 12 +--- vtkm/rendering/TextRenderer.h | 12 +--- vtkm/rendering/Texture2D.h | 12 +--- vtkm/rendering/TextureGL.cxx | 16 +----- vtkm/rendering/TextureGL.h | 16 +----- vtkm/rendering/Triangulator.h | 12 +--- vtkm/rendering/View.cxx | 12 +--- vtkm/rendering/View.h | 12 +--- vtkm/rendering/View1D.cxx | 12 +--- vtkm/rendering/View1D.h | 12 +--- vtkm/rendering/View2D.cxx | 12 +--- vtkm/rendering/View2D.h | 12 +--- vtkm/rendering/View3D.cxx | 12 +--- vtkm/rendering/View3D.h | 12 +--- vtkm/rendering/Wireframer.h | 12 +--- vtkm/rendering/WorldAnnotator.cxx | 12 +--- vtkm/rendering/WorldAnnotator.h | 12 +--- vtkm/rendering/WorldAnnotatorGL.cxx | 12 +--- vtkm/rendering/WorldAnnotatorGL.h | 12 +--- vtkm/rendering/internal/CMakeLists.txt | 12 +--- vtkm/rendering/internal/OpenGLHeaders.h | 12 +--- vtkm/rendering/internal/RunTriangulator.cxx | 12 +--- vtkm/rendering/internal/RunTriangulator.h | 12 +--- vtkm/rendering/raytracing/BVHTraverser.h | 12 +--- .../raytracing/BoundingVolumeHierarchy.cxx | 12 +--- .../raytracing/BoundingVolumeHierarchy.h | 12 +--- vtkm/rendering/raytracing/CMakeLists.txt | 12 +--- vtkm/rendering/raytracing/Camera.cxx | 12 +--- vtkm/rendering/raytracing/Camera.h | 12 +--- vtkm/rendering/raytracing/CellIntersector.h | 12 +--- vtkm/rendering/raytracing/CellSampler.h | 12 +--- vtkm/rendering/raytracing/CellTables.h | 12 +--- vtkm/rendering/raytracing/ChannelBuffer.cxx | 12 +--- vtkm/rendering/raytracing/ChannelBuffer.h | 12 +--- .../raytracing/ChannelBufferOperations.h | 12 +--- .../raytracing/ConnectivityTracer.cxx | 12 +--- .../rendering/raytracing/ConnectivityTracer.h | 12 +--- .../raytracing/CylinderExtractor.cxx | 12 +--- vtkm/rendering/raytracing/CylinderExtractor.h | 12 +--- .../raytracing/CylinderIntersector.cxx | 12 +--- .../raytracing/CylinderIntersector.h | 12 +--- vtkm/rendering/raytracing/Logger.cxx | 12 +--- vtkm/rendering/raytracing/Logger.h | 12 +--- .../raytracing/MeshConnectivityBase.h | 12 +--- .../raytracing/MeshConnectivityBuilder.cxx | 12 +--- .../raytracing/MeshConnectivityBuilder.h | 12 +--- .../raytracing/MeshConnectivityContainers.cxx | 12 +--- .../raytracing/MeshConnectivityContainers.h | 12 +--- vtkm/rendering/raytracing/MortonCodes.h | 12 +--- vtkm/rendering/raytracing/PartialComposite.h | 12 +--- vtkm/rendering/raytracing/QuadExtractor.cxx | 12 +--- vtkm/rendering/raytracing/QuadExtractor.h | 12 +--- vtkm/rendering/raytracing/QuadIntersector.cxx | 12 +--- vtkm/rendering/raytracing/QuadIntersector.h | 12 +--- vtkm/rendering/raytracing/Ray.h | 12 +--- vtkm/rendering/raytracing/RayOperations.cxx | 16 +----- vtkm/rendering/raytracing/RayOperations.h | 12 +--- vtkm/rendering/raytracing/RayTracer.cxx | 12 +--- vtkm/rendering/raytracing/RayTracer.h | 12 +--- .../rendering/raytracing/RayTracingTypeDefs.h | 12 +--- vtkm/rendering/raytracing/Sampler.h | 12 +--- .../rendering/raytracing/ShapeIntersector.cxx | 12 +--- vtkm/rendering/raytracing/ShapeIntersector.h | 12 +--- vtkm/rendering/raytracing/SphereExtractor.cxx | 12 +--- vtkm/rendering/raytracing/SphereExtractor.h | 12 +--- .../raytracing/SphereIntersector.cxx | 12 +--- vtkm/rendering/raytracing/SphereIntersector.h | 12 +--- .../raytracing/TriangleExtractor.cxx | 12 +--- vtkm/rendering/raytracing/TriangleExtractor.h | 12 +--- .../raytracing/TriangleIntersections.h | 12 +--- .../raytracing/TriangleIntersector.cxx | 12 +--- .../raytracing/TriangleIntersector.h | 12 +--- .../raytracing/VolumeRendererStructured.cxx | 16 +----- .../raytracing/VolumeRendererStructured.h | 16 +----- vtkm/rendering/raytracing/Worklets.h | 12 +--- vtkm/rendering/testing/CMakeLists.txt | 14 +---- vtkm/rendering/testing/RenderTest.h | 12 +--- vtkm/rendering/testing/UnitTestCanvas.cxx | 12 +--- .../testing/UnitTestMapperConnectivity.cxx | 12 +--- .../testing/UnitTestMapperCylinders.cxx | 12 +--- .../testing/UnitTestMapperPoints.cxx | 12 +--- .../rendering/testing/UnitTestMapperQuads.cxx | 12 +--- .../testing/UnitTestMapperRayTracer.cxx | 12 +--- .../testing/UnitTestMapperVolume.cxx | 12 +--- .../testing/UnitTestMapperWireframer.cxx | 12 +--- .../rendering/testing/UnitTestMultiMapper.cxx | 12 +--- vtkm/rendering/testing/egl/CMakeLists.txt | 14 +---- .../testing/egl/UnitTestMapperEGL.cxx | 12 +--- vtkm/rendering/testing/glfw/CMakeLists.txt | 14 +---- .../testing/glfw/UnitTestMapperGLFW.cxx | 12 +--- vtkm/rendering/testing/glut/CMakeLists.txt | 14 +---- .../testing/glut/UnitTestMapperGLUT.cxx | 12 +--- vtkm/rendering/testing/osmesa/CMakeLists.txt | 14 +---- .../testing/osmesa/UnitTestMapperOSMesa.cxx | 12 +--- vtkm/testing/CMakeLists.txt | 12 +--- vtkm/testing/Testing.h | 12 +--- vtkm/testing/TestingGeometry.h | 16 +----- vtkm/testing/TestingMath.h | 16 +----- vtkm/testing/UnitTestBinaryOperators.cxx | 12 +--- vtkm/testing/UnitTestBinaryPredicates.cxx | 12 +--- vtkm/testing/UnitTestBounds.cxx | 12 +--- vtkm/testing/UnitTestCellShape.cxx | 12 +--- vtkm/testing/UnitTestExceptions.cxx | 12 +--- vtkm/testing/UnitTestHash.cxx | 12 +--- vtkm/testing/UnitTestListTag.cxx | 12 +--- vtkm/testing/UnitTestMath.cxx | 16 +----- vtkm/testing/UnitTestMatrix.cxx | 16 +----- vtkm/testing/UnitTestNewtonsMethod.cxx | 12 +--- vtkm/testing/UnitTestNoAssert.cxx | 12 +--- vtkm/testing/UnitTestPair.cxx | 12 +--- vtkm/testing/UnitTestRange.cxx | 12 +--- vtkm/testing/UnitTestTesting.cxx | 12 +--- vtkm/testing/UnitTestTransform3D.cxx | 16 +----- vtkm/testing/UnitTestTypeListTag.cxx | 12 +--- vtkm/testing/UnitTestTypeTraits.cxx | 12 +--- vtkm/testing/UnitTestTypes.cxx | 12 +--- vtkm/testing/UnitTestUnaryPredicates.cxx | 12 +--- ...UnitTestVecAxisAlignedPointCoordinates.cxx | 12 +--- vtkm/testing/UnitTestVecFromPortal.cxx | 12 +--- vtkm/testing/UnitTestVecFromPortalPermute.cxx | 12 +--- vtkm/testing/UnitTestVecTraits.cxx | 12 +--- vtkm/testing/UnitTestVecVariable.cxx | 12 +--- vtkm/testing/UnitTestVectorAnalysis.cxx | 16 +----- vtkm/testing/VecTraitsTests.h | 12 +--- vtkm/thirdparty/diy/CMakeLists.txt | 16 +----- vtkm/thirdparty/diy/Configure.h.in | 16 +----- vtkm/thirdparty/diy/diy.h | 12 +--- vtkm/thirdparty/diy/serialization.h | 12 +--- vtkm/thirdparty/loguru/CMakeLists.txt | 16 +----- vtkm/thirdparty/optionparser/CMakeLists.txt | 16 +----- vtkm/thirdparty/taotuple/CMakeLists.txt | 16 +----- .../vtkmtaotuple/include/SimpleTuple.h | 12 +--- .../taotuple/vtkmtaotuple/include/Tuple.h | 12 +--- vtkm/worklet/AverageByKey.h | 12 +--- vtkm/worklet/CMakeLists.txt | 12 +--- vtkm/worklet/CellAverage.h | 12 +--- vtkm/worklet/CellDeepCopy.h | 12 +--- vtkm/worklet/CellMeasure.h | 12 +--- vtkm/worklet/Clip.h | 12 +--- vtkm/worklet/ContourTreeUniform.h | 12 +--- vtkm/worklet/ContourTreeUniformAugmented.h | 12 +--- vtkm/worklet/CoordinateSystemTransform.h | 12 +--- vtkm/worklet/CosmoTools.h | 12 +--- vtkm/worklet/CrossProduct.h | 12 +--- vtkm/worklet/DispatcherMapField.h | 12 +--- vtkm/worklet/DispatcherMapTopology.h | 12 +--- vtkm/worklet/DispatcherPointNeighborhood.h | 12 +--- vtkm/worklet/DispatcherReduceByKey.h | 12 +--- vtkm/worklet/DispatcherStreamingMapField.h | 12 +--- vtkm/worklet/DotProduct.h | 12 +--- vtkm/worklet/ExternalFaces.h | 12 +--- vtkm/worklet/ExtractGeometry.h | 12 +--- vtkm/worklet/ExtractPoints.h | 12 +--- vtkm/worklet/ExtractStructured.h | 12 +--- vtkm/worklet/FieldEntropy.h | 12 +--- vtkm/worklet/FieldHistogram.h | 12 +--- vtkm/worklet/FieldStatistics.h | 12 +--- vtkm/worklet/Gradient.h | 12 +--- vtkm/worklet/Invoker.h | 12 +--- vtkm/worklet/KdTree3D.h | 12 +--- vtkm/worklet/KernelSplatter.h | 12 +--- vtkm/worklet/Keys.cxx | 12 +--- vtkm/worklet/Keys.h | 12 +--- vtkm/worklet/Magnitude.h | 12 +--- vtkm/worklet/MarchingCubes.h | 12 +--- vtkm/worklet/Mask.h | 12 +--- vtkm/worklet/MaskIndices.h | 16 +----- vtkm/worklet/MaskNone.h | 16 +----- vtkm/worklet/MaskPoints.h | 12 +--- vtkm/worklet/MaskSelect.cxx | 16 +----- vtkm/worklet/MaskSelect.h | 16 +----- vtkm/worklet/NDimsEntropy.h | 12 +--- vtkm/worklet/NDimsHistMarginalization.h | 12 +--- vtkm/worklet/NDimsHistogram.h | 12 +--- vtkm/worklet/Normalize.h | 12 +--- vtkm/worklet/OscillatorSource.h | 12 +--- vtkm/worklet/ParticleAdvection.h | 12 +--- vtkm/worklet/PointAverage.h | 12 +--- vtkm/worklet/PointElevation.h | 12 +--- vtkm/worklet/PointMerge.h | 12 +--- vtkm/worklet/PointTransform.h | 12 +--- vtkm/worklet/Probe.h | 12 +--- vtkm/worklet/RemoveDegenerateCells.h | 12 +--- vtkm/worklet/RemoveUnusedPoints.h | 16 +----- vtkm/worklet/ScalarsToColors.h | 16 +----- vtkm/worklet/ScalarsToColors.hxx | 16 +----- vtkm/worklet/ScatterCounting.cxx | 16 +----- vtkm/worklet/ScatterCounting.h | 16 +----- vtkm/worklet/ScatterIdentity.h | 16 +----- vtkm/worklet/ScatterPermutation.h | 16 +----- vtkm/worklet/ScatterUniform.h | 16 +----- vtkm/worklet/SplitSharpEdges.h | 12 +--- vtkm/worklet/StableSortIndices.h | 12 +--- vtkm/worklet/StreamLineUniformGrid.h | 12 +--- vtkm/worklet/SurfaceNormals.h | 12 +--- vtkm/worklet/Tetrahedralize.h | 12 +--- vtkm/worklet/Threshold.h | 12 +--- vtkm/worklet/ThresholdPoints.h | 12 +--- vtkm/worklet/Triangulate.h | 12 +--- vtkm/worklet/VertexClustering.h | 12 +--- vtkm/worklet/WarpScalar.h | 12 +--- vtkm/worklet/WarpVector.h | 12 +--- vtkm/worklet/WaveletCompressor.h | 12 +--- vtkm/worklet/WaveletGenerator.h | 12 +--- vtkm/worklet/WorkletMapField.h | 12 +--- vtkm/worklet/WorkletMapTopology.h | 12 +--- vtkm/worklet/WorkletPointNeighborhood.h | 12 +--- vtkm/worklet/WorkletReduceByKey.h | 12 +--- vtkm/worklet/ZFP1DCompressor.h | 12 +--- vtkm/worklet/ZFP1DDecompress.h | 12 +--- vtkm/worklet/ZFP2DCompressor.h | 12 +--- vtkm/worklet/ZFP2DDecompress.h | 12 +--- vtkm/worklet/ZFPCompressor.h | 12 +--- vtkm/worklet/ZFPDecompress.h | 12 +--- vtkm/worklet/clip/CMakeLists.txt | 12 +--- vtkm/worklet/clip/ClipTables.h | 12 +--- vtkm/worklet/colorconversion/CMakeLists.txt | 12 +--- vtkm/worklet/colorconversion/Conversions.h | 16 +----- vtkm/worklet/colorconversion/ConvertToRGB.h | 16 +----- vtkm/worklet/colorconversion/ConvertToRGBA.h | 16 +----- vtkm/worklet/colorconversion/LookupTable.h | 16 +----- vtkm/worklet/colorconversion/Portals.h | 16 +----- .../worklet/colorconversion/ShiftScaleToRGB.h | 16 +----- .../colorconversion/ShiftScaleToRGBA.h | 16 +----- .../colorconversion/TransferFunction.h | 16 +----- vtkm/worklet/connectivities/CMakeLists.txt | 12 +--- .../connectivities/CellSetConnectivity.h | 16 +----- .../worklet/connectivities/CellSetDualGraph.h | 16 +----- .../connectivities/GraphConnectivity.h | 16 +----- .../connectivities/ImageConnectivity.h | 16 +----- vtkm/worklet/connectivities/InnerJoin.h | 16 +----- vtkm/worklet/connectivities/UnionFind.h | 16 +----- vtkm/worklet/contour/CMakeLists.txt | 12 +--- vtkm/worklet/contour/DataTables.h | 16 +----- .../contourtree/ActiveEdgeTransferrer.h | 12 +--- vtkm/worklet/contourtree/CMakeLists.txt | 12 +--- vtkm/worklet/contourtree/ChainDoubler.h | 12 +--- vtkm/worklet/contourtree/ChainGraph.h | 12 +--- vtkm/worklet/contourtree/ContourTree.h | 12 +--- vtkm/worklet/contourtree/CopyJoinSplit.h | 12 +--- vtkm/worklet/contourtree/CopyNeighbors.h | 12 +--- vtkm/worklet/contourtree/CopySupernodes.h | 12 +--- vtkm/worklet/contourtree/DegreeDelta.h | 12 +--- .../contourtree/DegreeSubrangeOffset.h | 12 +--- vtkm/worklet/contourtree/EdgePeakComparator.h | 12 +--- vtkm/worklet/contourtree/FillSupernodes.h | 12 +--- vtkm/worklet/contourtree/FindLeaves.h | 12 +--- .../contourtree/GoverningSaddleFinder.h | 12 +--- vtkm/worklet/contourtree/JoinArcConnector.h | 12 +--- vtkm/worklet/contourtree/JoinSuperArcFinder.h | 12 +--- .../worklet/contourtree/JoinTreeTransferrer.h | 12 +--- .../contourtree/LinkComponentCaseTable2D.h | 12 +--- .../contourtree/LinkComponentCaseTable3D.h | 12 +--- vtkm/worklet/contourtree/MergeTree.h | 12 +--- .../contourtree/Mesh2D_DEM_SaddleStarter.h | 12 +--- .../contourtree/Mesh2D_DEM_Triangulation.h | 12 +--- .../Mesh2D_DEM_Triangulation_Macros.h | 12 +--- .../Mesh2D_DEM_VertexOutdegreeStarter.h | 12 +--- .../contourtree/Mesh2D_DEM_VertexStarter.h | 12 +--- .../contourtree/Mesh3D_DEM_SaddleStarter.h | 12 +--- .../contourtree/Mesh3D_DEM_Triangulation.h | 12 +--- .../Mesh3D_DEM_Triangulation_Macros.h | 12 +--- .../Mesh3D_DEM_VertexOutdegreeStarter.h | 12 +--- .../contourtree/Mesh3D_DEM_VertexStarter.h | 12 +--- vtkm/worklet/contourtree/PrintVectors.h | 12 +--- .../contourtree/RegularPointTransferrer.h | 12 +--- vtkm/worklet/contourtree/RegularToCandidate.h | 12 +--- .../contourtree/RegularToCriticalDown.h | 12 +--- .../worklet/contourtree/RegularToCriticalUp.h | 12 +--- vtkm/worklet/contourtree/ResetDegrees.h | 12 +--- .../worklet/contourtree/SaddleAscentFunctor.h | 12 +--- .../contourtree/SaddleAscentTransferrer.h | 12 +--- .../worklet/contourtree/SetJoinAndSplitArcs.h | 12 +--- vtkm/worklet/contourtree/SetSupernodeInward.h | 12 +--- vtkm/worklet/contourtree/SkipVertex.h | 12 +--- vtkm/worklet/contourtree/SubrangeOffset.h | 12 +--- vtkm/worklet/contourtree/TrunkBuilder.h | 12 +--- vtkm/worklet/contourtree/Types.h | 12 +--- vtkm/worklet/contourtree/UpdateOutbound.h | 12 +--- .../worklet/contourtree/VertexDegreeUpdater.h | 12 +--- .../contourtree/VertexMergeComparator.h | 12 +--- .../contourtree/VertexValueComparator.h | 12 +--- .../contourtree_augmented/ActiveGraph.h | 12 +--- .../contourtree_augmented/ArrayTransforms.h | 12 +--- .../contourtree_augmented/CMakeLists.txt | 57 +------------------ .../contourtree_augmented/ContourTree.h | 12 +--- .../contourtree_augmented/ContourTreeMaker.h | 12 +--- .../worklet/contourtree_augmented/MergeTree.h | 12 +--- .../contourtree_augmented/MeshExtrema.h | 12 +--- .../Mesh_DEM_Triangulation.h | 12 +--- .../contourtree_augmented/PointerDoubling.h | 12 +--- .../contourtree_augmented/PrintVectors.h | 12 +--- .../ProcessContourTree.h | 12 +--- vtkm/worklet/contourtree_augmented/Types.h | 12 +--- .../activegraph/BuildChainsWorklet.h | 12 +--- .../activegraph/BuildTrunkWorklet.h | 12 +--- .../activegraph/CMakeLists.txt | 57 +------------------ ...pactActiveEdgesComputeNewVertexOutdegree.h | 12 +--- .../CompactActiveEdgesTransferActiveEdges.h | 12 +--- .../activegraph/EdgePeakComparator.h | 12 +--- .../activegraph/FindGoverningSaddlesWorklet.h | 12 +--- .../FindSuperAndHyperNodesWorklet.h | 12 +--- .../activegraph/HyperArcSuperNodeComparator.h | 12 +--- .../activegraph/InitializeActiveEdges.h | 12 +--- .../InitializeActiveGraphVertices.h | 12 +--- .../InitializeEdgeFarFromActiveIndices.h | 12 +--- .../InitializeHyperarcsFromActiveIndices.h | 12 +--- ...nitializeNeighbourhoodMasksAndOutDegrees.h | 12 +--- .../activegraph/SetArcsConnectNodes.h | 12 +--- .../SetArcsSetSuperAndHypernodeArcs.h | 12 +--- .../activegraph/SetArcsSlideVertices.h | 12 +--- .../activegraph/SetHyperArcsWorklet.h | 12 +--- .../SetSuperArcsSetTreeHyperparents.h | 12 +--- .../SetSuperArcsSetTreeSuperarcs.h | 12 +--- .../activegraph/SuperArcNodeComparator.h | 12 +--- .../TransferRegularPointsWorklet.h | 12 +--- .../TransferSaddleStartsResetEdgeFar.h | 12 +--- ...ferSaddleStartsSetNewOutdegreeForSaddles.h | 12 +--- .../TransferSaddleStartsUpdateEdgeSorter.h | 12 +--- ...eTrees_InitNewJoinSplitIDAndSuperparents.h | 12 +--- .../AugmentMergeTrees_SetAugmentedMergeArcs.h | 12 +--- .../contourtreemaker/CMakeLists.txt | 57 +------------------ .../contourtreemaker/CompressTrees_Step.h | 12 +--- ...erStructure_HypernodesSetFirstSuperchild.h | 12 +--- ...omputeHyperAndSuperStructure_PermuteArcs.h | 12 +--- ...perAndSuperStructure_ResetHyperparentsId.h | 12 +--- ...ndSuperStructure_SetNewHypernodesAndArcs.h | 12 +--- .../ComputeRegularStructure_LocateSuperarcs.h | 12 +--- .../ComputeRegularStructure_SetArcs.h | 12 +--- .../ContourTreeNodeComparator.h | 12 +--- .../ContourTreeSuperNodeComparator.h | 12 +--- .../contourtreemaker/FindDegrees_FindRHE.h | 12 +--- .../FindDegrees_ResetUpAndDowndegree.h | 12 +--- .../FindDegrees_SubtractLHE.h | 12 +--- .../TransferLeafChains_CollapsePastRegular.h | 12 +--- .../TransferLeafChains_InitInAndOutbound.h | 12 +--- ...TransferLeafChains_TransferToContourTree.h | 12 +--- .../contourtreemaker/WasNotTransferred.h | 12 +--- .../mesh_dem/CMakeLists.txt | 57 +------------------ .../mesh_dem/MeshStructure2D.h | 12 +--- .../mesh_dem/MeshStructure3D.h | 12 +--- .../mesh_dem/SimulatedSimplicityComperator.h | 12 +--- .../mesh_dem/SortIndices.h | 12 +--- .../mesh_dem_meshtypes/CMakeLists.txt | 57 +------------------ .../Freudenthal_2D_Triangulation.h | 12 +--- .../Freudenthal_3D_Triangulation.h | 12 +--- .../MarchingCubes_3D_Triangulation.h | 12 +--- .../MeshStructureFreudenthal2D.h | 12 +--- .../MeshStructureFreudenthal3D.h | 12 +--- .../MeshStructureMarchingCubes.h | 12 +--- .../mesh_dem_meshtypes/freudenthal_2D/Types.h | 12 +--- .../mesh_dem_meshtypes/freudenthal_3D/Types.h | 12 +--- .../marchingcubes_3D/Types.h | 12 +--- .../meshextrema/CMakeLists.txt | 57 +------------------ .../meshextrema/SetStarts.h | 12 +--- .../processcontourtree/Branch.h | 12 +--- .../processcontourtree/CMakeLists.txt | 57 +------------------ .../PiecewiseLinearFunction.h | 12 +--- .../SuperArcVolumetricComparator.h | 12 +--- .../SuperNodeBranchComparator.h | 12 +--- vtkm/worklet/cosmotools/CMakeLists.txt | 12 +--- vtkm/worklet/cosmotools/ComputeBinIndices.h | 12 +--- vtkm/worklet/cosmotools/ComputeBinRange.h | 12 +--- vtkm/worklet/cosmotools/ComputeBins.h | 12 +--- vtkm/worklet/cosmotools/ComputeNeighborBins.h | 12 +--- vtkm/worklet/cosmotools/ComputePotential.h | 12 +--- vtkm/worklet/cosmotools/ComputePotentialBin.h | 12 +--- vtkm/worklet/cosmotools/ComputePotentialMxN.h | 12 +--- .../cosmotools/ComputePotentialNeighbors.h | 12 +--- vtkm/worklet/cosmotools/ComputePotentialNxN.h | 12 +--- .../cosmotools/ComputePotentialOnCandidates.h | 12 +--- vtkm/worklet/cosmotools/CosmoTools.h | 12 +--- .../cosmotools/CosmoToolsCenterFinder.h | 12 +--- .../worklet/cosmotools/CosmoToolsHaloFinder.h | 12 +--- .../cosmotools/EqualsMinimumPotential.h | 12 +--- vtkm/worklet/cosmotools/GraftParticles.h | 14 +---- vtkm/worklet/cosmotools/IsStar.h | 12 +--- vtkm/worklet/cosmotools/MarkActiveNeighbors.h | 14 +---- vtkm/worklet/cosmotools/PointerJump.h | 12 +--- .../cosmotools/SetCandidateParticles.h | 12 +--- vtkm/worklet/cosmotools/TagTypes.h | 13 +---- vtkm/worklet/cosmotools/ValidHalo.h | 12 +--- vtkm/worklet/gradient/CMakeLists.txt | 12 +--- vtkm/worklet/gradient/CellGradient.h | 12 +--- vtkm/worklet/gradient/Divergence.h | 12 +--- vtkm/worklet/gradient/GradientOutput.h | 12 +--- vtkm/worklet/gradient/PointGradient.h | 12 +--- vtkm/worklet/gradient/QCriterion.h | 12 +--- .../gradient/StructuredPointGradient.h | 12 +--- vtkm/worklet/gradient/Transpose.h | 12 +--- vtkm/worklet/gradient/Vorticity.h | 12 +--- vtkm/worklet/histogram/CMakeLists.txt | 12 +--- vtkm/worklet/histogram/ComputeNDEntropy.h | 12 +--- vtkm/worklet/histogram/ComputeNDHistogram.h | 12 +--- .../histogram/MarginalizeNDHistogram.h | 12 +--- vtkm/worklet/internal/CMakeLists.txt | 12 +--- vtkm/worklet/internal/DispatcherBase.h | 12 +--- vtkm/worklet/internal/TriangulateTables.h | 12 +--- vtkm/worklet/internal/WorkletBase.h | 12 +--- vtkm/worklet/internal/testing/CMakeLists.txt | 12 +--- .../testing/UnitTestDispatcherBase.cxx | 12 +--- vtkm/worklet/particleadvection/CMakeLists.txt | 12 +--- .../CellInterpolationHelper.h | 12 +--- .../particleadvection/GridEvaluators.h | 12 +--- vtkm/worklet/particleadvection/Integrators.h | 12 +--- .../ParticleAdvectionWorklets.h | 12 +--- vtkm/worklet/particleadvection/Particles.h | 12 +--- .../TemporalGridEvaluators.h | 12 +--- .../BoundingIntervalHierarchy.h | 12 +--- vtkm/worklet/spatialstructure/CMakeLists.txt | 12 +--- .../spatialstructure/KdTree3DConstruction.h | 12 +--- .../spatialstructure/KdTree3DNNSearch.h | 12 +--- vtkm/worklet/splatkernels/CMakeLists.txt | 12 +--- vtkm/worklet/splatkernels/Gaussian.h | 12 +--- vtkm/worklet/splatkernels/KernelBase.h | 12 +--- vtkm/worklet/splatkernels/Spline3rdOrder.h | 12 +--- vtkm/worklet/testing/CMakeLists.txt | 14 +---- vtkm/worklet/testing/UnitTestAverageByKey.cxx | 16 +----- .../UnitTestBoundingIntervalHierarchy.cxx | 12 +--- vtkm/worklet/testing/UnitTestCellAverage.cxx | 12 +--- vtkm/worklet/testing/UnitTestCellDeepCopy.cxx | 12 +--- vtkm/worklet/testing/UnitTestCellGradient.cxx | 12 +--- vtkm/worklet/testing/UnitTestCellMeasure.cxx | 12 +--- .../testing/UnitTestCellSetConnectivity.cxx | 16 +----- .../testing/UnitTestCellSetDualGraph.cxx | 16 +----- vtkm/worklet/testing/UnitTestClipping.cxx | 12 +--- .../testing/UnitTestContourTreeUniform.cxx | 12 +--- .../UnitTestContourTreeUniformAugmented.cxx | 12 +--- .../UnitTestCoordinateSystemTransform.cxx | 12 +--- vtkm/worklet/testing/UnitTestCosmoTools.cxx | 12 +--- vtkm/worklet/testing/UnitTestCrossProduct.cxx | 12 +--- vtkm/worklet/testing/UnitTestDotProduct.cxx | 12 +--- .../worklet/testing/UnitTestExternalFaces.cxx | 12 +--- .../testing/UnitTestExtractGeometry.cxx | 12 +--- .../worklet/testing/UnitTestExtractPoints.cxx | 12 +--- .../testing/UnitTestExtractStructured.cxx | 12 +--- .../testing/UnitTestFieldHistogram.cxx | 12 +--- .../testing/UnitTestFieldStatistics.cxx | 12 +--- .../testing/UnitTestGraphConnectivity.cxx | 16 +----- .../testing/UnitTestImageConnectivity.cxx | 16 +----- vtkm/worklet/testing/UnitTestInnerJoin.cxx | 16 +----- .../testing/UnitTestKdTreeBuildNNS.cxx | 12 +--- vtkm/worklet/testing/UnitTestKeys.cxx | 16 +----- vtkm/worklet/testing/UnitTestMagnitude.cxx | 12 +--- .../worklet/testing/UnitTestMarchingCubes.cxx | 12 +--- vtkm/worklet/testing/UnitTestMask.cxx | 12 +--- vtkm/worklet/testing/UnitTestMaskIndices.cxx | 16 +----- vtkm/worklet/testing/UnitTestMaskPoints.cxx | 12 +--- vtkm/worklet/testing/UnitTestMaskSelect.cxx | 16 +----- vtkm/worklet/testing/UnitTestNDimsEntropy.cxx | 12 +--- .../UnitTestNDimsHistMarginalization.cxx | 12 +--- .../testing/UnitTestNDimsHistogram.cxx | 12 +--- vtkm/worklet/testing/UnitTestNormalize.cxx | 12 +--- .../testing/UnitTestParticleAdvection.cxx | 12 +--- .../testing/UnitTestPointElevation.cxx | 12 +--- .../worklet/testing/UnitTestPointGradient.cxx | 12 +--- .../testing/UnitTestPointTransform.cxx | 12 +--- vtkm/worklet/testing/UnitTestProbe.cxx | 12 +--- .../testing/UnitTestRemoveUnusedPoints.cxx | 12 +--- .../testing/UnitTestScalarsToColors.cxx | 12 +--- .../testing/UnitTestScatterAndMask.cxx | 16 +----- .../testing/UnitTestScatterCounting.cxx | 16 +----- .../testing/UnitTestScatterPermutation.cxx | 16 +----- vtkm/worklet/testing/UnitTestSplatKernels.cxx | 12 +--- .../testing/UnitTestSplitSharpEdges.cxx | 12 +--- .../testing/UnitTestStreamLineUniformGrid.cxx | 12 +--- .../worklet/testing/UnitTestStreamingSine.cxx | 12 +--- .../testing/UnitTestSurfaceNormals.cxx | 12 +--- .../testing/UnitTestTemporalAdvection.cxx | 12 +--- .../testing/UnitTestTetrahedralize.cxx | 12 +--- vtkm/worklet/testing/UnitTestThreshold.cxx | 12 +--- .../testing/UnitTestThresholdPoints.cxx | 12 +--- vtkm/worklet/testing/UnitTestTriangulate.cxx | 12 +--- .../testing/UnitTestVertexClustering.cxx | 12 +--- vtkm/worklet/testing/UnitTestWarpScalar.cxx | 12 +--- vtkm/worklet/testing/UnitTestWarpVector.cxx | 12 +--- .../testing/UnitTestWaveletCompressor.cxx | 12 +--- .../testing/UnitTestWaveletGenerator.cxx | 12 +--- .../testing/UnitTestWholeCellSetIn.cxx | 12 +--- .../testing/UnitTestWorkletMapField.cxx | 12 +--- .../UnitTestWorkletMapFieldExecArg.cxx | 12 +--- .../UnitTestWorkletMapFieldWholeArray.cxx | 12 +--- ...nitTestWorkletMapFieldWholeArrayAtomic.cxx | 12 +--- .../UnitTestWorkletMapPointNeighborhood.cxx | 12 +--- .../UnitTestWorkletMapTopologyExplicit.cxx | 12 +--- .../UnitTestWorkletMapTopologyUniform.cxx | 12 +--- .../testing/UnitTestWorkletReduceByKey.cxx | 16 +----- .../worklet/testing/UnitTestZFPCompressor.cxx | 12 +--- vtkm/worklet/tetrahedralize/CMakeLists.txt | 12 +--- .../tetrahedralize/TetrahedralizeExplicit.h | 12 +--- .../tetrahedralize/TetrahedralizeStructured.h | 12 +--- vtkm/worklet/triangulate/CMakeLists.txt | 12 +--- .../worklet/triangulate/TriangulateExplicit.h | 12 +--- .../triangulate/TriangulateStructured.h | 12 +--- vtkm/worklet/wavelets/CMakeLists.txt | 12 +--- vtkm/worklet/wavelets/FilterBanks.h | 16 +----- vtkm/worklet/wavelets/WaveletBase.h | 12 +--- vtkm/worklet/wavelets/WaveletDWT.h | 12 +--- vtkm/worklet/wavelets/WaveletFilter.h | 12 +--- vtkm/worklet/wavelets/WaveletTransforms.h | 12 +--- vtkm/worklet/zfp/CMakeLists.txt | 12 +--- vtkm/worklet/zfp/ZFPBlockReader.h | 12 +--- vtkm/worklet/zfp/ZFPBlockWriter.h | 12 +--- vtkm/worklet/zfp/ZFPCodec.h | 12 +--- vtkm/worklet/zfp/ZFPDecode.h | 12 +--- vtkm/worklet/zfp/ZFPDecode1.h | 12 +--- vtkm/worklet/zfp/ZFPDecode2.h | 12 +--- vtkm/worklet/zfp/ZFPDecode3.h | 12 +--- vtkm/worklet/zfp/ZFPEncode.h | 12 +--- vtkm/worklet/zfp/ZFPEncode1.h | 12 +--- vtkm/worklet/zfp/ZFPEncode2.h | 12 +--- vtkm/worklet/zfp/ZFPEncode3.h | 12 +--- vtkm/worklet/zfp/ZFPFunctions.h | 12 +--- vtkm/worklet/zfp/ZFPStructs.h | 12 +--- vtkm/worklet/zfp/ZFPTools.h | 12 +--- vtkm/worklet/zfp/ZFPTypeInfo.h | 12 +--- 1508 files changed, 1660 insertions(+), 17334 deletions(-) diff --git a/CMake/FindOpenGL.cmake b/CMake/FindOpenGL.cmake index 42adf718..3303256a 100644 --- a/CMake/FindOpenGL.cmake +++ b/CMake/FindOpenGL.cmake @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2017 UT-Battelle, LLC. -## Copyright 2017 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ # Distributed under the OSI-approved BSD 3-Clause License. See accompanying # file Copyright.txt or https://cmake.org/licensing for details. diff --git a/CMake/FindOpenMP.cmake b/CMake/FindOpenMP.cmake index 93d37692..11608ccd 100644 --- a/CMake/FindOpenMP.cmake +++ b/CMake/FindOpenMP.cmake @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ #.rst: # FindOpenMP diff --git a/CMake/FindPyexpander.cmake b/CMake/FindPyexpander.cmake index 51b8a55e..e1b85240 100644 --- a/CMake/FindPyexpander.cmake +++ b/CMake/FindPyexpander.cmake @@ -2,22 +2,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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ -# + # - Finds the pyexpander macro tool. # Use this module by invoking find_package. # @@ -32,7 +22,6 @@ # script directly. Thus, it could be safer to execute the Python interpreter # with PYEXPANDER_COMMAND as an argument. See FindPythonInterp.cmake for help # in finding the Python interpreter. -# find_program(PYEXPANDER_COMMAND NAMES expander.py expander3.py) diff --git a/CMake/VTKmBuildDocumentation.cmake b/CMake/VTKmBuildDocumentation.cmake index 46517fcc..783cad56 100644 --- a/CMake/VTKmBuildDocumentation.cmake +++ b/CMake/VTKmBuildDocumentation.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/CMake/VTKmBuildType.cmake b/CMake/VTKmBuildType.cmake index a2e1de25..c1ae8049 100644 --- a/CMake/VTKmBuildType.cmake +++ b/CMake/VTKmBuildType.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # Set a default build type if none was specified diff --git a/CMake/VTKmCPUVectorization.cmake b/CMake/VTKmCPUVectorization.cmake index 401b1074..f2170a07 100644 --- a/CMake/VTKmCPUVectorization.cmake +++ b/CMake/VTKmCPUVectorization.cmake @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2017 UT-Battelle, LLC. -## Copyright 2017 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ #Currently all we are going to build is a set of options that are possible #based on the compiler. For now we are going on the presumption diff --git a/CMake/VTKmCheckCopyright.cmake b/CMake/VTKmCheckCopyright.cmake index 93cb2511..85c24cd8 100644 --- a/CMake/VTKmCheckCopyright.cmake +++ b/CMake/VTKmCheckCopyright.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ ## This CMake script checks source files for the appropriate VTKM copyright diff --git a/CMake/VTKmCompilerDynamicAnalysisFlags.cmake b/CMake/VTKmCompilerDynamicAnalysisFlags.cmake index 3e8104a7..3d3493cd 100644 --- a/CMake/VTKmCompilerDynamicAnalysisFlags.cmake +++ b/CMake/VTKmCompilerDynamicAnalysisFlags.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/CMake/VTKmCompilerFlags.cmake b/CMake/VTKmCompilerFlags.cmake index c2e5ef9b..0b05e3f1 100644 --- a/CMake/VTKmCompilerFlags.cmake +++ b/CMake/VTKmCompilerFlags.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") diff --git a/CMake/VTKmConfig.cmake.in b/CMake/VTKmConfig.cmake.in index 5958b592..e3848dfc 100644 --- a/CMake/VTKmConfig.cmake.in +++ b/CMake/VTKmConfig.cmake.in @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # When this file is run by CMake through the find_package command, the diff --git a/CMake/VTKmCopyrightStatement.txt b/CMake/VTKmCopyrightStatement.txt index 8114747c..5fca0fe3 100644 --- a/CMake/VTKmCopyrightStatement.txt +++ b/CMake/VTKmCopyrightStatement.txt @@ -5,13 +5,3 @@ 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. - -Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -Copyright 2014 UT-Battelle, LLC. -Copyright 2014 Los Alamos National Security. - -Under the terms of Contract DE-NA0003525 with NTESS, -the U.S. Government retains certain rights in this software. -Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -Laboratory (LANL), the U.S. Government retains certain rights in -this software. diff --git a/CMake/VTKmDetectCUDAVersion.cu b/CMake/VTKmDetectCUDAVersion.cu index 64524cd4..dbf5e946 100644 --- a/CMake/VTKmDetectCUDAVersion.cu +++ b/CMake/VTKmDetectCUDAVersion.cu @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include #include diff --git a/CMake/VTKmDetermineVersion.cmake b/CMake/VTKmDetermineVersion.cmake index 3c2ea924..b2ef9a5a 100644 --- a/CMake/VTKmDetermineVersion.cmake +++ b/CMake/VTKmDetermineVersion.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2017 UT-Battelle, LLC. -## Copyright 2017 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # Used to determine the version for VTK-m source using "git describe", if git diff --git a/CMake/VTKmDeviceAdapters.cmake b/CMake/VTKmDeviceAdapters.cmake index 724c3dfb..a594e715 100644 --- a/CMake/VTKmDeviceAdapters.cmake +++ b/CMake/VTKmDeviceAdapters.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # diff --git a/CMake/VTKmExportHeaderTemplate.h.in b/CMake/VTKmExportHeaderTemplate.h.in index e389221b..f560012f 100644 --- a/CMake/VTKmExportHeaderTemplate.h.in +++ b/CMake/VTKmExportHeaderTemplate.h.in @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef @EXPORT_MACRO_NAME@_EXPORT_H #define @EXPORT_MACRO_NAME@_EXPORT_H diff --git a/CMake/VTKmRenderingContexts.cmake b/CMake/VTKmRenderingContexts.cmake index 67abf910..d438b4f2 100644 --- a/CMake/VTKmRenderingContexts.cmake +++ b/CMake/VTKmRenderingContexts.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/CMake/VTKmWrappers.cmake b/CMake/VTKmWrappers.cmake index f1d2da03..c0001aa9 100644 --- a/CMake/VTKmWrappers.cmake +++ b/CMake/VTKmWrappers.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ include(CMakeParseArguments) diff --git a/CMake/doxyfile.in b/CMake/doxyfile.in index acfae5ce..48971bc2 100644 --- a/CMake/doxyfile.in +++ b/CMake/doxyfile.in @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ PROJECT_NAME = "VTK-m" diff --git a/CMake/testing/VTKmCheckPyexpander.cmake b/CMake/testing/VTKmCheckPyexpander.cmake index c1d00332..8065dd6c 100644 --- a/CMake/testing/VTKmCheckPyexpander.cmake +++ b/CMake/testing/VTKmCheckPyexpander.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # This script, which is run as part of a target, uses pyexpander to do diff --git a/CMake/testing/VTKmCheckSourceInInstall.cmake b/CMake/testing/VTKmCheckSourceInInstall.cmake index 11d5c3d7..d26020b4 100644 --- a/CMake/testing/VTKmCheckSourceInInstall.cmake +++ b/CMake/testing/VTKmCheckSourceInInstall.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2016 UT-Battelle, LLC. -## Copyright 2016 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ ## This CMake script checks to make sure that each source file explicitly diff --git a/CMake/testing/VTKmSystemInformation.cmake b/CMake/testing/VTKmSystemInformation.cmake index 8ce13d65..90df7a2a 100644 --- a/CMake/testing/VTKmSystemInformation.cmake +++ b/CMake/testing/VTKmSystemInformation.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # This script is used to create the SystemInformation test. The test always diff --git a/CMake/testing/VTKmTestInstall.cmake b/CMake/testing/VTKmTestInstall.cmake index a03007f5..b73df8b5 100644 --- a/CMake/testing/VTKmTestInstall.cmake +++ b/CMake/testing/VTKmTestInstall.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # ----------------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index c3b2eefa..6e57a7f1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # If you want CUDA support, you will need to have CMake 3.9 on Linux/OSX. diff --git a/CTestConfig.cmake b/CTestConfig.cmake index 2c98607f..f213928c 100644 --- a/CTestConfig.cmake +++ b/CTestConfig.cmake @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ ## This file should be placed in the root directory of your project. diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in index 00b15fba..39bb7ff7 100644 --- a/CTestCustom.cmake.in +++ b/CTestCustom.cmake.in @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION diff --git a/benchmarking/BenchmarkArrayTransfer.cxx b/benchmarking/BenchmarkArrayTransfer.cxx index 37055658..aca66782 100644 --- a/benchmarking/BenchmarkArrayTransfer.cxx +++ b/benchmarking/BenchmarkArrayTransfer.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "Benchmarker.h" diff --git a/benchmarking/BenchmarkAtomicArray.cxx b/benchmarking/BenchmarkAtomicArray.cxx index 94502b6a..e6221753 100644 --- a/benchmarking/BenchmarkAtomicArray.cxx +++ b/benchmarking/BenchmarkAtomicArray.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "Benchmarker.h" diff --git a/benchmarking/BenchmarkCopySpeeds.cxx b/benchmarking/BenchmarkCopySpeeds.cxx index 085abe5f..6dfe4da5 100644 --- a/benchmarking/BenchmarkCopySpeeds.cxx +++ b/benchmarking/BenchmarkCopySpeeds.cxx @@ -2,21 +2,11 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -//============================================================ +//============================================================================ #include diff --git a/benchmarking/BenchmarkDeviceAdapter.cxx b/benchmarking/BenchmarkDeviceAdapter.cxx index ab864e99..22ea8cad 100644 --- a/benchmarking/BenchmarkDeviceAdapter.cxx +++ b/benchmarking/BenchmarkDeviceAdapter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "Benchmarker.h" diff --git a/benchmarking/BenchmarkFieldAlgorithms.cxx b/benchmarking/BenchmarkFieldAlgorithms.cxx index f6979926..6878d952 100644 --- a/benchmarking/BenchmarkFieldAlgorithms.cxx +++ b/benchmarking/BenchmarkFieldAlgorithms.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/benchmarking/BenchmarkFilters.cxx b/benchmarking/BenchmarkFilters.cxx index 34fdb07f..909e9f9e 100644 --- a/benchmarking/BenchmarkFilters.cxx +++ b/benchmarking/BenchmarkFilters.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "Benchmarker.h" diff --git a/benchmarking/BenchmarkRayTracing.cxx b/benchmarking/BenchmarkRayTracing.cxx index 64ef6811..993abf59 100644 --- a/benchmarking/BenchmarkRayTracing.cxx +++ b/benchmarking/BenchmarkRayTracing.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "Benchmarker.h" diff --git a/benchmarking/BenchmarkTopologyAlgorithms.cxx b/benchmarking/BenchmarkTopologyAlgorithms.cxx index e892f104..7367b6f0 100644 --- a/benchmarking/BenchmarkTopologyAlgorithms.cxx +++ b/benchmarking/BenchmarkTopologyAlgorithms.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/benchmarking/Benchmarker.h b/benchmarking/Benchmarker.h index a0c132f4..7120d852 100644 --- a/benchmarking/Benchmarker.h +++ b/benchmarking/Benchmarker.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_benchmarking_Benchmarker_h diff --git a/benchmarking/CMakeLists.txt b/benchmarking/CMakeLists.txt index b646f6a3..39dcfdfd 100644 --- a/benchmarking/CMakeLists.txt +++ b/benchmarking/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ function(add_benchmark) set(options) diff --git a/docs/CodingConventions.md b/docs/CodingConventions.md index 054f6164..c8c2b72e 100644 --- a/docs/CodingConventions.md +++ b/docs/CodingConventions.md @@ -12,7 +12,8 @@ coding and because we expect vtkm to have continual interaction with VTK. + Copyright notices should appear at the top of all source, configuration, and text files. The statement should have the following - form (with 20XX replaced with the year the file was created): + form. Various copyright specific details are referenced in the LICENSE.txt + file. ``` //========================================================================== @@ -23,16 +24,6 @@ coding and because we expect vtkm to have continual interaction with VTK. // 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. -// -// Copyright 20XX National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 20XX UT-Battelle, LLC. -// Copyright 20XX Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //========================================================================== ``` diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 0beff805..7721d552 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,8 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ + #add the directory that contains the VTK-m config file to the cmake #path so that our examples can find VTK-m set(CMAKE_PREFIX_PATH ${VTKm_BINARY_DIR}/${VTKm_INSTALL_CONFIG_DIR}) diff --git a/examples/clipping/CMakeLists.txt b/examples/clipping/CMakeLists.txt index 072dcb2c..9e7dfe70 100644 --- a/examples/clipping/CMakeLists.txt +++ b/examples/clipping/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(Clipping CXX) diff --git a/examples/clipping/Clipping.cxx b/examples/clipping/Clipping.cxx index e1cb9726..951ccebb 100644 --- a/examples/clipping/Clipping.cxx +++ b/examples/clipping/Clipping.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/contour_tree/CMakeLists.txt b/examples/contour_tree/CMakeLists.txt index 1970bce5..4057785b 100644 --- a/examples/contour_tree/CMakeLists.txt +++ b/examples/contour_tree/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(ContourTree CXX) diff --git a/examples/contour_tree/ContourTreeMesh2D.cxx b/examples/contour_tree/ContourTreeMesh2D.cxx index dbe751d6..4b49b77d 100644 --- a/examples/contour_tree/ContourTreeMesh2D.cxx +++ b/examples/contour_tree/ContourTreeMesh2D.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2016, Los Alamos National Security, LLC // All rights reserved. diff --git a/examples/contour_tree/ContourTreeMesh3D.cxx b/examples/contour_tree/ContourTreeMesh3D.cxx index b339c4a7..c2456818 100644 --- a/examples/contour_tree/ContourTreeMesh3D.cxx +++ b/examples/contour_tree/ContourTreeMesh3D.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2016, Los Alamos National Security, LLC // All rights reserved. diff --git a/examples/contour_tree_augmented/CMakeLists.txt b/examples/contour_tree_augmented/CMakeLists.txt index ba2a536a..db3faf1a 100644 --- a/examples/contour_tree_augmented/CMakeLists.txt +++ b/examples/contour_tree_augmented/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,19 +6,8 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= ##============================================================================ + ## Copyright (c) 2018, The Regents of the University of California, through ## Lawrence Berkeley National Laboratory (subject to receipt of any required approvals ## from the U.S. Dept. of Energy). All rights reserved. diff --git a/examples/contour_tree_augmented/ContourTreeApp.cxx b/examples/contour_tree_augmented/ContourTreeApp.cxx index d3f4bc1d..38d51d35 100644 --- a/examples/contour_tree_augmented/ContourTreeApp.cxx +++ b/examples/contour_tree_augmented/ContourTreeApp.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2018, The Regents of the University of California, through // Lawrence Berkeley National Laboratory (subject to receipt of any required approvals diff --git a/examples/cosmotools/CMakeLists.txt b/examples/cosmotools/CMakeLists.txt index d738e5a2..7563660f 100644 --- a/examples/cosmotools/CMakeLists.txt +++ b/examples/cosmotools/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(CosmoTools CXX) diff --git a/examples/cosmotools/CosmoCenterFinder.cxx b/examples/cosmotools/CosmoCenterFinder.cxx index 72439970..88128832 100644 --- a/examples/cosmotools/CosmoCenterFinder.cxx +++ b/examples/cosmotools/CosmoCenterFinder.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/cosmotools/CosmoHaloFinder.cxx b/examples/cosmotools/CosmoHaloFinder.cxx index 65869067..0897a88e 100644 --- a/examples/cosmotools/CosmoHaloFinder.cxx +++ b/examples/cosmotools/CosmoHaloFinder.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/demo/CMakeLists.txt b/examples/demo/CMakeLists.txt index fd737e97..1fdf0e8c 100644 --- a/examples/demo/CMakeLists.txt +++ b/examples/demo/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(VTKmDemo CXX) diff --git a/examples/demo/Demo.cxx b/examples/demo/Demo.cxx index 6816346a..3934fe51 100644 --- a/examples/demo/Demo.cxx +++ b/examples/demo/Demo.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/game_of_life/CMakeLists.txt b/examples/game_of_life/CMakeLists.txt index e210a848..904dbaf1 100644 --- a/examples/game_of_life/CMakeLists.txt +++ b/examples/game_of_life/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(GameOfLife CXX) diff --git a/examples/game_of_life/GameOfLife.cxx b/examples/game_of_life/GameOfLife.cxx index 971d0a23..b3ee481c 100644 --- a/examples/game_of_life/GameOfLife.cxx +++ b/examples/game_of_life/GameOfLife.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Must be included before any other GL includes: #include diff --git a/examples/game_of_life/LoadShaders.h b/examples/game_of_life/LoadShaders.h index 60125b12..b21bb660 100644 --- a/examples/game_of_life/LoadShaders.h +++ b/examples/game_of_life/LoadShaders.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef LOAD_SHADERS diff --git a/examples/hello_world/CMakeLists.txt b/examples/hello_world/CMakeLists.txt index 8ea0888a..9d8304e3 100755 --- a/examples/hello_world/CMakeLists.txt +++ b/examples/hello_world/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(HelloWorld CXX) diff --git a/examples/hello_world/HelloWorld.cxx b/examples/hello_world/HelloWorld.cxx index c6cb8f83..bbff38c6 100644 --- a/examples/hello_world/HelloWorld.cxx +++ b/examples/hello_world/HelloWorld.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Must be included before any other GL includes: diff --git a/examples/hello_world/LoadShaders.h b/examples/hello_world/LoadShaders.h index 60125b12..b21bb660 100644 --- a/examples/hello_world/LoadShaders.h +++ b/examples/hello_world/LoadShaders.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef LOAD_SHADERS diff --git a/examples/histogram/CMakeLists.txt b/examples/histogram/CMakeLists.txt index d8eaae7b..262d7097 100644 --- a/examples/histogram/CMakeLists.txt +++ b/examples/histogram/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(Histogram CXX) diff --git a/examples/histogram/Histogram.cxx b/examples/histogram/Histogram.cxx index daa60a46..51f8bb27 100644 --- a/examples/histogram/Histogram.cxx +++ b/examples/histogram/Histogram.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ /* diff --git a/examples/histogram/HistogramMPI.h b/examples/histogram/HistogramMPI.h index 60e1fe5e..df7a91f4 100644 --- a/examples/histogram/HistogramMPI.h +++ b/examples/histogram/HistogramMPI.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_examples_histogram_HistogramMPI_h #define vtk_m_examples_histogram_HistogramMPI_h diff --git a/examples/histogram/HistogramMPI.hxx b/examples/histogram/HistogramMPI.hxx index d2757b06..3a550785 100644 --- a/examples/histogram/HistogramMPI.hxx +++ b/examples/histogram/HistogramMPI.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/isosurface/CMakeLists.txt b/examples/isosurface/CMakeLists.txt index 461306d3..62410187 100644 --- a/examples/isosurface/CMakeLists.txt +++ b/examples/isosurface/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(IsoSurface CXX) diff --git a/examples/isosurface/IsosurfaceUniformGrid.cxx b/examples/isosurface/IsosurfaceUniformGrid.cxx index 98c1f11f..df83c154 100644 --- a/examples/isosurface/IsosurfaceUniformGrid.cxx +++ b/examples/isosurface/IsosurfaceUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/isosurface/quaternion.h b/examples/isosurface/quaternion.h index 965b12ec..35349a20 100644 --- a/examples/isosurface/quaternion.h +++ b/examples/isosurface/quaternion.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ /* * quaternion.h diff --git a/examples/lagrangian/ABCfield.h b/examples/lagrangian/ABCfield.h index f66c0053..93a257bd 100644 --- a/examples/lagrangian/ABCfield.h +++ b/examples/lagrangian/ABCfield.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/lagrangian/CMakeLists.txt b/examples/lagrangian/CMakeLists.txt index d49224c3..ce7fc2cf 100644 --- a/examples/lagrangian/CMakeLists.txt +++ b/examples/lagrangian/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) #Find the VTK-m package diff --git a/examples/lagrangian/lagrangian.cxx b/examples/lagrangian/lagrangian.cxx index adfe4cdf..2a4de834 100644 --- a/examples/lagrangian/lagrangian.cxx +++ b/examples/lagrangian/lagrangian.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "ABCfield.h" diff --git a/examples/multi_backend/CMakeLists.txt b/examples/multi_backend/CMakeLists.txt index 07c27d8c..8b53971d 100644 --- a/examples/multi_backend/CMakeLists.txt +++ b/examples/multi_backend/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(MultiBackend CXX) diff --git a/examples/multi_backend/IOGenerator.cxx b/examples/multi_backend/IOGenerator.cxx index 44e02e9f..0c00421e 100644 --- a/examples/multi_backend/IOGenerator.cxx +++ b/examples/multi_backend/IOGenerator.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include "IOGenerator.h" diff --git a/examples/multi_backend/IOGenerator.h b/examples/multi_backend/IOGenerator.h index ebe1d8d6..99b3ca69 100644 --- a/examples/multi_backend/IOGenerator.h +++ b/examples/multi_backend/IOGenerator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_examples_multibackend_IOWorker_h #define vtk_m_examples_multibackend_IOWorker_h diff --git a/examples/multi_backend/MultiBackend.cxx b/examples/multi_backend/MultiBackend.cxx index 67a2e733..6ec4fe11 100644 --- a/examples/multi_backend/MultiBackend.cxx +++ b/examples/multi_backend/MultiBackend.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/multi_backend/MultiDeviceGradient.cxx b/examples/multi_backend/MultiDeviceGradient.cxx index 7d30e58d..0984c9ab 100644 --- a/examples/multi_backend/MultiDeviceGradient.cxx +++ b/examples/multi_backend/MultiDeviceGradient.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_examples_multibackend_MultiDeviceGradient_cxx diff --git a/examples/multi_backend/MultiDeviceGradient.h b/examples/multi_backend/MultiDeviceGradient.h index d44c7b7e..86bf24ee 100644 --- a/examples/multi_backend/MultiDeviceGradient.h +++ b/examples/multi_backend/MultiDeviceGradient.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_examples_multibackend_MultiDeviceGradient_h #define vtk_m_examples_multibackend_MultiDeviceGradient_h diff --git a/examples/multi_backend/MultiDeviceGradient.hxx b/examples/multi_backend/MultiDeviceGradient.hxx index 49afc76e..4b0f7105 100644 --- a/examples/multi_backend/MultiDeviceGradient.hxx +++ b/examples/multi_backend/MultiDeviceGradient.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/multi_backend/TaskQueue.h b/examples/multi_backend/TaskQueue.h index eef8600a..285f870f 100644 --- a/examples/multi_backend/TaskQueue.h +++ b/examples/multi_backend/TaskQueue.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_examples_multibackend_TaskQueue_h #define vtk_m_examples_multibackend_TaskQueue_h diff --git a/examples/oscillator/CMakeLists.txt b/examples/oscillator/CMakeLists.txt index 02a25245..74cfa28b 100644 --- a/examples/oscillator/CMakeLists.txt +++ b/examples/oscillator/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(Oscillator CXX) diff --git a/examples/oscillator/Oscillator.cxx b/examples/oscillator/Oscillator.cxx index d1098eaf..7445e79c 100644 --- a/examples/oscillator/Oscillator.cxx +++ b/examples/oscillator/Oscillator.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/particle_advection/CMakeLists.txt b/examples/particle_advection/CMakeLists.txt index 9e04899c..f0b294a2 100644 --- a/examples/particle_advection/CMakeLists.txt +++ b/examples/particle_advection/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(ParticleAdvection CXX) diff --git a/examples/particle_advection/ParticleAdvection.cxx b/examples/particle_advection/ParticleAdvection.cxx index e57452d5..d4697bd3 100644 --- a/examples/particle_advection/ParticleAdvection.cxx +++ b/examples/particle_advection/ParticleAdvection.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/redistribute_points/CMakeLists.txt b/examples/redistribute_points/CMakeLists.txt index ec73b14b..54201833 100644 --- a/examples/redistribute_points/CMakeLists.txt +++ b/examples/redistribute_points/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(RedistributePoints CXX) diff --git a/examples/redistribute_points/RedistributePoints.cxx b/examples/redistribute_points/RedistributePoints.cxx index 701753d8..49956e48 100644 --- a/examples/redistribute_points/RedistributePoints.cxx +++ b/examples/redistribute_points/RedistributePoints.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/redistribute_points/RedistributePoints.h b/examples/redistribute_points/RedistributePoints.h index b832a408..0c820836 100644 --- a/examples/redistribute_points/RedistributePoints.h +++ b/examples/redistribute_points/RedistributePoints.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/rendering/CMakeLists.txt b/examples/rendering/CMakeLists.txt index b49da8c1..3df93dd9 100644 --- a/examples/rendering/CMakeLists.txt +++ b/examples/rendering/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(RenderingExample CXX) diff --git a/examples/rendering/Rendering.cxx b/examples/rendering/Rendering.cxx index 5ac8c3da..ffefe922 100644 --- a/examples/rendering/Rendering.cxx +++ b/examples/rendering/Rendering.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/streamline/CMakeLists.txt b/examples/streamline/CMakeLists.txt index 756a0715..073bb5bd 100644 --- a/examples/streamline/CMakeLists.txt +++ b/examples/streamline/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(Streamline CXX) diff --git a/examples/streamline/StreamLineUniformGrid.cxx b/examples/streamline/StreamLineUniformGrid.cxx index 0d8e0954..5c5bd2cf 100644 --- a/examples/streamline/StreamLineUniformGrid.cxx +++ b/examples/streamline/StreamLineUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/tau_timing/CMakeLists.txt b/examples/tau_timing/CMakeLists.txt index db13a169..ae94d8fc 100644 --- a/examples/tau_timing/CMakeLists.txt +++ b/examples/tau_timing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(TauTiming CXX) diff --git a/examples/tau_timing/TauTiming.cxx b/examples/tau_timing/TauTiming.cxx index a0b88015..2b88c190 100644 --- a/examples/tau_timing/TauTiming.cxx +++ b/examples/tau_timing/TauTiming.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/temporal_advection/CMakeLists.txt b/examples/temporal_advection/CMakeLists.txt index 71aff052..191c9bf7 100644 --- a/examples/temporal_advection/CMakeLists.txt +++ b/examples/temporal_advection/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ #Find the VTK-m package cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) diff --git a/examples/temporal_advection/TemporalAdvection.cxx b/examples/temporal_advection/TemporalAdvection.cxx index aeb55032..dd244464 100644 --- a/examples/temporal_advection/TemporalAdvection.cxx +++ b/examples/temporal_advection/TemporalAdvection.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/tetrahedra/CMakeLists.txt b/examples/tetrahedra/CMakeLists.txt index 18b77f80..ece07c8b 100644 --- a/examples/tetrahedra/CMakeLists.txt +++ b/examples/tetrahedra/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(Tetrahedra CXX) diff --git a/examples/tetrahedra/TetrahedralizeExplicitGrid.cxx b/examples/tetrahedra/TetrahedralizeExplicitGrid.cxx index 70ca4d7e..8b02ef71 100644 --- a/examples/tetrahedra/TetrahedralizeExplicitGrid.cxx +++ b/examples/tetrahedra/TetrahedralizeExplicitGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/tetrahedra/TetrahedralizeUniformGrid.cxx b/examples/tetrahedra/TetrahedralizeUniformGrid.cxx index af144ace..edd942f8 100644 --- a/examples/tetrahedra/TetrahedralizeUniformGrid.cxx +++ b/examples/tetrahedra/TetrahedralizeUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/examples/tetrahedra/TriangulateExplicitGrid.cxx b/examples/tetrahedra/TriangulateExplicitGrid.cxx index e7de62d8..b5ad8bdf 100644 --- a/examples/tetrahedra/TriangulateExplicitGrid.cxx +++ b/examples/tetrahedra/TriangulateExplicitGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/tetrahedra/TriangulateUniformGrid.cxx b/examples/tetrahedra/TriangulateUniformGrid.cxx index db240bee..55dda8f0 100644 --- a/examples/tetrahedra/TriangulateUniformGrid.cxx +++ b/examples/tetrahedra/TriangulateUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/examples/unified_memory/CMakeLists.txt b/examples/unified_memory/CMakeLists.txt index 3aa14034..44b1140f 100644 --- a/examples/unified_memory/CMakeLists.txt +++ b/examples/unified_memory/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2015 UT-Battelle, LLC. -## Copyright 2015 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ cmake_minimum_required(VERSION 3.8...3.14 FATAL_ERROR) project(UnifiedMemory CXX) diff --git a/examples/unified_memory/UnifiedMemory.cu b/examples/unified_memory/UnifiedMemory.cu index 667d0fd0..d4b099d6 100644 --- a/examples/unified_memory/UnifiedMemory.cu +++ b/examples/unified_memory/UnifiedMemory.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/Assert.h b/vtkm/Assert.h index 9537c4e4..bdb613f2 100644 --- a/vtkm/Assert.h +++ b/vtkm/Assert.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Assert_h diff --git a/vtkm/BaseComponent.h b/vtkm/BaseComponent.h index ce5a5ed7..cb0f9127 100644 --- a/vtkm/BaseComponent.h +++ b/vtkm/BaseComponent.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_BaseComponent_h #define vtk_m_BaseComponent_h diff --git a/vtkm/BinaryOperators.h b/vtkm/BinaryOperators.h index f324fc3f..99303c96 100644 --- a/vtkm/BinaryOperators.h +++ b/vtkm/BinaryOperators.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_BinaryOperators_h #define vtk_m_BinaryOperators_h diff --git a/vtkm/BinaryPredicates.h b/vtkm/BinaryPredicates.h index e2c471e5..2d9098b7 100644 --- a/vtkm/BinaryPredicates.h +++ b/vtkm/BinaryPredicates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_BinaryPredicates_h #define vtk_m_BinaryPredicates_h diff --git a/vtkm/Bitset.h b/vtkm/Bitset.h index 76928c5c..c8765b21 100644 --- a/vtkm/Bitset.h +++ b/vtkm/Bitset.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Bitset_h diff --git a/vtkm/Bounds.h b/vtkm/Bounds.h index 1ce10796..13274466 100644 --- a/vtkm/Bounds.h +++ b/vtkm/Bounds.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Bounds_h diff --git a/vtkm/CMakeLists.txt b/vtkm/CMakeLists.txt index e1bf4562..cd0459b1 100644 --- a/vtkm/CMakeLists.txt +++ b/vtkm/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ # Configure version file. (Other configuration in internal/Configure.h) diff --git a/vtkm/CellClassification.h b/vtkm/CellClassification.h index ccec61fa..69bc5bee 100644 --- a/vtkm/CellClassification.h +++ b/vtkm/CellClassification.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_CellClassification_h #define vtk_m_CellClassification_h diff --git a/vtkm/CellShape.h b/vtkm/CellShape.h index 9d50d190..7dfe1c96 100644 --- a/vtkm/CellShape.h +++ b/vtkm/CellShape.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_CellShape_h #define vtk_m_CellShape_h diff --git a/vtkm/CellTraits.h b/vtkm/CellTraits.h index 9d2c1db7..d7a90cb2 100644 --- a/vtkm/CellTraits.h +++ b/vtkm/CellTraits.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_CellTraits_h #define vtk_m_CellTraits_h diff --git a/vtkm/Flags.h b/vtkm/Flags.h index ba90d3f6..ca4b8d80 100644 --- a/vtkm/Flags.h +++ b/vtkm/Flags.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Flags_h #define vtk_m_Flags_h diff --git a/vtkm/Geometry.h b/vtkm/Geometry.h index 3822bbe9..80d3089d 100644 --- a/vtkm/Geometry.h +++ b/vtkm/Geometry.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Geometry_h diff --git a/vtkm/Geometry.hxx b/vtkm/Geometry.hxx index cb91818e..c766d32d 100644 --- a/vtkm/Geometry.hxx +++ b/vtkm/Geometry.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace vtkm diff --git a/vtkm/Hash.h b/vtkm/Hash.h index ea2515fb..c9a3262b 100644 --- a/vtkm/Hash.h +++ b/vtkm/Hash.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Hash_h #define vtk_m_Hash_h diff --git a/vtkm/ImplicitFunction.h b/vtkm/ImplicitFunction.h index 6b3445c8..c76fd0b1 100644 --- a/vtkm/ImplicitFunction.h +++ b/vtkm/ImplicitFunction.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_ImplicitFunction_h #define vtk_m_ImplicitFunction_h diff --git a/vtkm/ListTag.h b/vtkm/ListTag.h index b916844c..860c5e81 100644 --- a/vtkm/ListTag.h +++ b/vtkm/ListTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_ListTag_h #define vtk_m_ListTag_h diff --git a/vtkm/Math.h b/vtkm/Math.h index f7af5d28..2042c858 100644 --- a/vtkm/Math.h +++ b/vtkm/Math.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ // **** DO NOT EDIT THIS FILE!!! **** // This file is automatically generated by Math.h.in diff --git a/vtkm/Math.h.in b/vtkm/Math.h.in index 1602f37c..301390b9 100644 --- a/vtkm/Math.h.in +++ b/vtkm/Math.h.in @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ $# This file uses the pyexpander macro processing utility to build the $# FunctionInterface facilities that use a variable number of arguments. $# Information, documentation, and downloads for pyexpander can be found at: diff --git a/vtkm/Matrix.h b/vtkm/Matrix.h index af9ac2e6..b4afbaef 100644 --- a/vtkm/Matrix.h +++ b/vtkm/Matrix.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_Matrix_h #define vtk_m_Matrix_h diff --git a/vtkm/NewtonsMethod.h b/vtkm/NewtonsMethod.h index 76f59067..363e6107 100644 --- a/vtkm/NewtonsMethod.h +++ b/vtkm/NewtonsMethod.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_NewtonsMethod_h #define vtk_m_NewtonsMethod_h diff --git a/vtkm/Pair.h b/vtkm/Pair.h index 1b438bcd..7ebad97d 100644 --- a/vtkm/Pair.h +++ b/vtkm/Pair.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Pair_h diff --git a/vtkm/Range.h b/vtkm/Range.h index a58de6bc..5eb17baf 100644 --- a/vtkm/Range.h +++ b/vtkm/Range.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Range_h diff --git a/vtkm/RangeId.h b/vtkm/RangeId.h index e7e4787c..5149f45a 100644 --- a/vtkm/RangeId.h +++ b/vtkm/RangeId.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_RangeId_h #define vtk_m_RangeId_h diff --git a/vtkm/RangeId2.h b/vtkm/RangeId2.h index 14b71aca..679689d0 100644 --- a/vtkm/RangeId2.h +++ b/vtkm/RangeId2.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_RangeId2_h #define vtk_m_RangeId2_h diff --git a/vtkm/RangeId3.h b/vtkm/RangeId3.h index 16266b7f..acdcde61 100644 --- a/vtkm/RangeId3.h +++ b/vtkm/RangeId3.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_RangeId3_h #define vtk_m_RangeId3_h diff --git a/vtkm/StaticAssert.h b/vtkm/StaticAssert.h index 7d03b7d3..9f405e45 100644 --- a/vtkm/StaticAssert.h +++ b/vtkm/StaticAssert.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_StaticAssert_h #define vtk_m_StaticAssert_h diff --git a/vtkm/Swap.h b/vtkm/Swap.h index 233266ad..3f4b1ddc 100644 --- a/vtkm/Swap.h +++ b/vtkm/Swap.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Swap_h diff --git a/vtkm/TopologyElementTag.h b/vtkm/TopologyElementTag.h index ad96e74c..6cda149d 100644 --- a/vtkm/TopologyElementTag.h +++ b/vtkm/TopologyElementTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_TopologyElementTag_h #define vtk_m_TopologyElementTag_h diff --git a/vtkm/Transform3D.h b/vtkm/Transform3D.h index 9e18e51e..f9d780f1 100644 --- a/vtkm/Transform3D.h +++ b/vtkm/Transform3D.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_Transform3D_h #define vtk_m_Transform3D_h diff --git a/vtkm/TypeListTag.h b/vtkm/TypeListTag.h index a6ff9bc3..1c4c47e3 100644 --- a/vtkm/TypeListTag.h +++ b/vtkm/TypeListTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_TypeListTag_h #define vtk_m_TypeListTag_h diff --git a/vtkm/TypeTraits.h b/vtkm/TypeTraits.h index 03d01984..3af3163d 100644 --- a/vtkm/TypeTraits.h +++ b/vtkm/TypeTraits.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_TypeTraits_h #define vtk_m_TypeTraits_h diff --git a/vtkm/Types.h b/vtkm/Types.h index 4a3713e3..acf9f6eb 100644 --- a/vtkm/Types.h +++ b/vtkm/Types.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Types_h #define vtk_m_Types_h diff --git a/vtkm/UnaryPredicates.h b/vtkm/UnaryPredicates.h index 1eb44686..38937e8a 100644 --- a/vtkm/UnaryPredicates.h +++ b/vtkm/UnaryPredicates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_UnaryPredicates_h #define vtk_m_UnaryPredicates_h diff --git a/vtkm/VecAxisAlignedPointCoordinates.h b/vtkm/VecAxisAlignedPointCoordinates.h index 28afa781..86775818 100644 --- a/vtkm/VecAxisAlignedPointCoordinates.h +++ b/vtkm/VecAxisAlignedPointCoordinates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecAxisAlignedPointCoordinates_h diff --git a/vtkm/VecFromPortal.h b/vtkm/VecFromPortal.h index 877ecfff..729732fb 100644 --- a/vtkm/VecFromPortal.h +++ b/vtkm/VecFromPortal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecFromPortal_h #define vtk_m_VecFromPortal_h diff --git a/vtkm/VecFromPortalPermute.h b/vtkm/VecFromPortalPermute.h index b2f07bc5..93377e06 100644 --- a/vtkm/VecFromPortalPermute.h +++ b/vtkm/VecFromPortalPermute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecFromPortalPermute_h #define vtk_m_VecFromPortalPermute_h diff --git a/vtkm/VecFromVirtPortal.h b/vtkm/VecFromVirtPortal.h index 75ba9e10..d7d8845a 100644 --- a/vtkm/VecFromVirtPortal.h +++ b/vtkm/VecFromVirtPortal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecFromVirtPortal_h #define vtk_m_VecFromVirtPortal_h diff --git a/vtkm/VecTraits.h b/vtkm/VecTraits.h index 9d8b7aed..31faf541 100644 --- a/vtkm/VecTraits.h +++ b/vtkm/VecTraits.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecTraits_h #define vtk_m_VecTraits_h diff --git a/vtkm/VecVariable.h b/vtkm/VecVariable.h index 85fbfd0b..54627fdd 100644 --- a/vtkm/VecVariable.h +++ b/vtkm/VecVariable.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VecVariable_h #define vtk_m_VecVariable_h diff --git a/vtkm/VectorAnalysis.h b/vtkm/VectorAnalysis.h index 978e5c4d..ca144a31 100644 --- a/vtkm/VectorAnalysis.h +++ b/vtkm/VectorAnalysis.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_VectorAnalysis_h #define vtk_m_VectorAnalysis_h diff --git a/vtkm/Version.h.in b/vtkm/Version.h.in index 66bc87fa..2e7306ce 100644 --- a/vtkm/Version.h.in +++ b/vtkm/Version.h.in @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_Version_h #define vtk_m_Version_h diff --git a/vtkm/VirtualObjectBase.h b/vtkm/VirtualObjectBase.h index 8f0fd38d..1f7ff585 100644 --- a/vtkm/VirtualObjectBase.h +++ b/vtkm/VirtualObjectBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_VirtualObjectBase_h #define vtk_m_VirtualObjectBase_h diff --git a/vtkm/cont/Algorithm.h b/vtkm/cont/Algorithm.h index 99705a0a..b959a870 100644 --- a/vtkm/cont/Algorithm.h +++ b/vtkm/cont/Algorithm.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Algorithm_h #define vtk_m_cont_Algorithm_h diff --git a/vtkm/cont/ArrayCopy.h b/vtkm/cont/ArrayCopy.h index 96c45884..0054f54f 100644 --- a/vtkm/cont/ArrayCopy.h +++ b/vtkm/cont/ArrayCopy.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayCopy_h #define vtk_m_cont_ArrayCopy_h diff --git a/vtkm/cont/ArrayHandle.cxx b/vtkm/cont/ArrayHandle.cxx index 843e7f83..206110bb 100644 --- a/vtkm/cont/ArrayHandle.cxx +++ b/vtkm/cont/ArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtkm_cont_ArrayHandle_cxx diff --git a/vtkm/cont/ArrayHandle.h b/vtkm/cont/ArrayHandle.h index bb019f56..595b9494 100644 --- a/vtkm/cont/ArrayHandle.h +++ b/vtkm/cont/ArrayHandle.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandle_h #define vtk_m_cont_ArrayHandle_h diff --git a/vtkm/cont/ArrayHandle.hxx b/vtkm/cont/ArrayHandle.hxx index a59aeb46..c66514b1 100644 --- a/vtkm/cont/ArrayHandle.hxx +++ b/vtkm/cont/ArrayHandle.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandle_hxx #define vtk_m_cont_ArrayHandle_hxx diff --git a/vtkm/cont/ArrayHandleBitField.h b/vtkm/cont/ArrayHandleBitField.h index 259f0e97..2a3ab5d8 100644 --- a/vtkm/cont/ArrayHandleBitField.h +++ b/vtkm/cont/ArrayHandleBitField.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleBitField_h #define vtk_m_cont_ArrayHandleBitField_h diff --git a/vtkm/cont/ArrayHandleCartesianProduct.h b/vtkm/cont/ArrayHandleCartesianProduct.h index 72760284..f7662627 100644 --- a/vtkm/cont/ArrayHandleCartesianProduct.h +++ b/vtkm/cont/ArrayHandleCartesianProduct.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleCartesianProduct_h #define vtk_m_cont_ArrayHandleCartesianProduct_h diff --git a/vtkm/cont/ArrayHandleCast.h b/vtkm/cont/ArrayHandleCast.h index ac33857b..3cd02574 100644 --- a/vtkm/cont/ArrayHandleCast.h +++ b/vtkm/cont/ArrayHandleCast.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleCast_h #define vtk_m_cont_ArrayHandleCast_h diff --git a/vtkm/cont/ArrayHandleCompositeVector.h b/vtkm/cont/ArrayHandleCompositeVector.h index bf2e7a3f..ae91d8c1 100644 --- a/vtkm/cont/ArrayHandleCompositeVector.h +++ b/vtkm/cont/ArrayHandleCompositeVector.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_ArrayHandleCompositeVector_h #define vtk_m_ArrayHandleCompositeVector_h diff --git a/vtkm/cont/ArrayHandleConcatenate.h b/vtkm/cont/ArrayHandleConcatenate.h index b9b2b46c..9d3cfed8 100644 --- a/vtkm/cont/ArrayHandleConcatenate.h +++ b/vtkm/cont/ArrayHandleConcatenate.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleConcatenate_h #define vtk_m_cont_ArrayHandleConcatenate_h diff --git a/vtkm/cont/ArrayHandleConstant.h b/vtkm/cont/ArrayHandleConstant.h index ca015d19..3829888a 100644 --- a/vtkm/cont/ArrayHandleConstant.h +++ b/vtkm/cont/ArrayHandleConstant.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleConstant_h #define vtk_m_cont_ArrayHandleConstant_h diff --git a/vtkm/cont/ArrayHandleCounting.h b/vtkm/cont/ArrayHandleCounting.h index d290aaa8..8f3c7e27 100644 --- a/vtkm/cont/ArrayHandleCounting.h +++ b/vtkm/cont/ArrayHandleCounting.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleCounting_h #define vtk_m_cont_ArrayHandleCounting_h diff --git a/vtkm/cont/ArrayHandleDiscard.h b/vtkm/cont/ArrayHandleDiscard.h index 827d4f16..d5a67b18 100644 --- a/vtkm/cont/ArrayHandleDiscard.h +++ b/vtkm/cont/ArrayHandleDiscard.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleDiscard_h #define vtk_m_cont_ArrayHandleDiscard_h diff --git a/vtkm/cont/ArrayHandleExtractComponent.h b/vtkm/cont/ArrayHandleExtractComponent.h index e7c024d4..5b4af37c 100644 --- a/vtkm/cont/ArrayHandleExtractComponent.h +++ b/vtkm/cont/ArrayHandleExtractComponent.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleExtractComponent_h #define vtk_m_cont_ArrayHandleExtractComponent_h diff --git a/vtkm/cont/ArrayHandleGroupVec.h b/vtkm/cont/ArrayHandleGroupVec.h index a17d31af..048b2441 100644 --- a/vtkm/cont/ArrayHandleGroupVec.h +++ b/vtkm/cont/ArrayHandleGroupVec.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleGroupVec_h #define vtk_m_cont_ArrayHandleGroupVec_h diff --git a/vtkm/cont/ArrayHandleGroupVecVariable.h b/vtkm/cont/ArrayHandleGroupVecVariable.h index f0177780..b23a1102 100644 --- a/vtkm/cont/ArrayHandleGroupVecVariable.h +++ b/vtkm/cont/ArrayHandleGroupVecVariable.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleGroupVecVariable_h #define vtk_m_cont_ArrayHandleGroupVecVariable_h diff --git a/vtkm/cont/ArrayHandleImplicit.h b/vtkm/cont/ArrayHandleImplicit.h index f3d8bf9c..d5998da7 100644 --- a/vtkm/cont/ArrayHandleImplicit.h +++ b/vtkm/cont/ArrayHandleImplicit.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleImplicit_h #define vtk_m_cont_ArrayHandleImplicit_h diff --git a/vtkm/cont/ArrayHandleIndex.h b/vtkm/cont/ArrayHandleIndex.h index 29f787d3..4ba612ab 100644 --- a/vtkm/cont/ArrayHandleIndex.h +++ b/vtkm/cont/ArrayHandleIndex.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleIndex_h #define vtk_m_cont_ArrayHandleIndex_h diff --git a/vtkm/cont/ArrayHandlePermutation.h b/vtkm/cont/ArrayHandlePermutation.h index 46b6abe0..b66ca015 100644 --- a/vtkm/cont/ArrayHandlePermutation.h +++ b/vtkm/cont/ArrayHandlePermutation.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandlePermutation_h #define vtk_m_cont_ArrayHandlePermutation_h diff --git a/vtkm/cont/ArrayHandleReverse.h b/vtkm/cont/ArrayHandleReverse.h index a080f32c..6799c1b4 100644 --- a/vtkm/cont/ArrayHandleReverse.h +++ b/vtkm/cont/ArrayHandleReverse.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleReverse_h #define vtk_m_cont_ArrayHandleReverse_h diff --git a/vtkm/cont/ArrayHandleStreaming.h b/vtkm/cont/ArrayHandleStreaming.h index 58e33de2..b4f13f9e 100644 --- a/vtkm/cont/ArrayHandleStreaming.h +++ b/vtkm/cont/ArrayHandleStreaming.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleStreaming_h #define vtk_m_cont_ArrayHandleStreaming_h diff --git a/vtkm/cont/ArrayHandleSwizzle.h b/vtkm/cont/ArrayHandleSwizzle.h index 72be449a..4f9400e0 100644 --- a/vtkm/cont/ArrayHandleSwizzle.h +++ b/vtkm/cont/ArrayHandleSwizzle.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleSwizzle_h #define vtk_m_cont_ArrayHandleSwizzle_h diff --git a/vtkm/cont/ArrayHandleTransform.h b/vtkm/cont/ArrayHandleTransform.h index 6ea83c79..fe85a39a 100644 --- a/vtkm/cont/ArrayHandleTransform.h +++ b/vtkm/cont/ArrayHandleTransform.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_ArrayHandleTransform_h #define vtk_m_cont_ArrayHandleTransform_h diff --git a/vtkm/cont/ArrayHandleUniformPointCoordinates.h b/vtkm/cont/ArrayHandleUniformPointCoordinates.h index 708408c1..f0b1deae 100644 --- a/vtkm/cont/ArrayHandleUniformPointCoordinates.h +++ b/vtkm/cont/ArrayHandleUniformPointCoordinates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleUniformPointCoordinates_h #define vtk_m_cont_ArrayHandleUniformPointCoordinates_h diff --git a/vtkm/cont/ArrayHandleView.h b/vtkm/cont/ArrayHandleView.h index 366e313f..e84c5a6e 100644 --- a/vtkm/cont/ArrayHandleView.h +++ b/vtkm/cont/ArrayHandleView.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleView_h #define vtk_m_cont_ArrayHandleView_h diff --git a/vtkm/cont/ArrayHandleVirtual.cxx b/vtkm/cont/ArrayHandleVirtual.cxx index 1664aea7..ce3a466e 100644 --- a/vtkm/cont/ArrayHandleVirtual.cxx +++ b/vtkm/cont/ArrayHandleVirtual.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_ArrayHandleVirtual_cxx #include diff --git a/vtkm/cont/ArrayHandleVirtual.h b/vtkm/cont/ArrayHandleVirtual.h index aee3fe9b..f0789828 100644 --- a/vtkm/cont/ArrayHandleVirtual.h +++ b/vtkm/cont/ArrayHandleVirtual.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleVirtual_h #define vtk_m_cont_ArrayHandleVirtual_h diff --git a/vtkm/cont/ArrayHandleVirtual.hxx b/vtkm/cont/ArrayHandleVirtual.hxx index c38acd57..034d0482 100644 --- a/vtkm/cont/ArrayHandleVirtual.hxx +++ b/vtkm/cont/ArrayHandleVirtual.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleVirtual_hxx #define vtk_m_cont_ArrayHandleVirtual_hxx diff --git a/vtkm/cont/ArrayHandleVirtualCoordinates.h b/vtkm/cont/ArrayHandleVirtualCoordinates.h index 88b59930..1d502b3c 100644 --- a/vtkm/cont/ArrayHandleVirtualCoordinates.h +++ b/vtkm/cont/ArrayHandleVirtualCoordinates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleVirtualCoordinates_h #define vtk_m_cont_ArrayHandleVirtualCoordinates_h diff --git a/vtkm/cont/ArrayHandleZip.h b/vtkm/cont/ArrayHandleZip.h index ade3ad4a..cdd79a77 100644 --- a/vtkm/cont/ArrayHandleZip.h +++ b/vtkm/cont/ArrayHandleZip.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayHandleZip_h #define vtk_m_cont_ArrayHandleZip_h diff --git a/vtkm/cont/ArrayPortal.h b/vtkm/cont/ArrayPortal.h index 64a10949..55cca922 100644 --- a/vtkm/cont/ArrayPortal.h +++ b/vtkm/cont/ArrayPortal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayPortal_h #define vtk_m_cont_ArrayPortal_h diff --git a/vtkm/cont/ArrayPortalToIterators.h b/vtkm/cont/ArrayPortalToIterators.h index fa6cf873..d1869f4e 100644 --- a/vtkm/cont/ArrayPortalToIterators.h +++ b/vtkm/cont/ArrayPortalToIterators.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayPortalToIterators_h #define vtk_m_cont_ArrayPortalToIterators_h diff --git a/vtkm/cont/ArrayRangeCompute.cxx b/vtkm/cont/ArrayRangeCompute.cxx index d91db787..5f15b5da 100644 --- a/vtkm/cont/ArrayRangeCompute.cxx +++ b/vtkm/cont/ArrayRangeCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/ArrayRangeCompute.h b/vtkm/cont/ArrayRangeCompute.h index bc1ff979..c825eb1f 100644 --- a/vtkm/cont/ArrayRangeCompute.h +++ b/vtkm/cont/ArrayRangeCompute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayRangeCompute_h #define vtk_m_cont_ArrayRangeCompute_h diff --git a/vtkm/cont/ArrayRangeCompute.hxx b/vtkm/cont/ArrayRangeCompute.hxx index 1e7372c0..d0b188db 100644 --- a/vtkm/cont/ArrayRangeCompute.hxx +++ b/vtkm/cont/ArrayRangeCompute.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ArrayRangeCompute_hxx #define vtk_m_cont_ArrayRangeCompute_hxx diff --git a/vtkm/cont/AssignerMultiBlock.cxx b/vtkm/cont/AssignerMultiBlock.cxx index 638ad6a7..208363c6 100644 --- a/vtkm/cont/AssignerMultiBlock.cxx +++ b/vtkm/cont/AssignerMultiBlock.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/AssignerMultiBlock.h b/vtkm/cont/AssignerMultiBlock.h index ede6dbf1..7a260394 100644 --- a/vtkm/cont/AssignerMultiBlock.h +++ b/vtkm/cont/AssignerMultiBlock.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_AssignerMultiBlock_h #define vtk_m_cont_AssignerMultiBlock_h diff --git a/vtkm/cont/AtomicArray.h b/vtkm/cont/AtomicArray.h index b6d3a5bb..09c4823b 100644 --- a/vtkm/cont/AtomicArray.h +++ b/vtkm/cont/AtomicArray.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_AtomicArray_h #define vtk_m_cont_AtomicArray_h diff --git a/vtkm/cont/BitField.h b/vtkm/cont/BitField.h index 27a3157c..004bef10 100644 --- a/vtkm/cont/BitField.h +++ b/vtkm/cont/BitField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_BitField_h diff --git a/vtkm/cont/BoundsCompute.cxx b/vtkm/cont/BoundsCompute.cxx index 3acc48d0..6814a662 100644 --- a/vtkm/cont/BoundsCompute.cxx +++ b/vtkm/cont/BoundsCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/BoundsCompute.h b/vtkm/cont/BoundsCompute.h index 52bdd9bd..c2984942 100644 --- a/vtkm/cont/BoundsCompute.h +++ b/vtkm/cont/BoundsCompute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_BoundsCompute_h #define vtk_m_cont_BoundsCompute_h diff --git a/vtkm/cont/BoundsGlobalCompute.cxx b/vtkm/cont/BoundsGlobalCompute.cxx index 1e7f143a..dd77d5bb 100644 --- a/vtkm/cont/BoundsGlobalCompute.cxx +++ b/vtkm/cont/BoundsGlobalCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/BoundsGlobalCompute.h b/vtkm/cont/BoundsGlobalCompute.h index 7aaaf58c..f7072892 100644 --- a/vtkm/cont/BoundsGlobalCompute.h +++ b/vtkm/cont/BoundsGlobalCompute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_BoundsGlobalCompute_h #define vtk_m_cont_BoundsGlobalCompute_h diff --git a/vtkm/cont/CMakeLists.txt b/vtkm/cont/CMakeLists.txt index 67e47fea..b0c39b3b 100644 --- a/vtkm/cont/CMakeLists.txt +++ b/vtkm/cont/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/CastAndCall.h b/vtkm/cont/CastAndCall.h index 5817af03..dc5eb9ac 100644 --- a/vtkm/cont/CastAndCall.h +++ b/vtkm/cont/CastAndCall.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CastAndCall_h #define vtk_m_cont_CastAndCall_h diff --git a/vtkm/cont/CellLocator.cxx b/vtkm/cont/CellLocator.cxx index 8a3e32f0..31c8c79d 100644 --- a/vtkm/cont/CellLocator.cxx +++ b/vtkm/cont/CellLocator.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocator.h b/vtkm/cont/CellLocator.h index a80d2116..caa6e5d4 100644 --- a/vtkm/cont/CellLocator.h +++ b/vtkm/cont/CellLocator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellLocator_h #define vtk_m_cont_CellLocator_h diff --git a/vtkm/cont/CellLocatorBoundingIntervalHierarchy.cxx b/vtkm/cont/CellLocatorBoundingIntervalHierarchy.cxx index 41006a71..007385d7 100644 --- a/vtkm/cont/CellLocatorBoundingIntervalHierarchy.cxx +++ b/vtkm/cont/CellLocatorBoundingIntervalHierarchy.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocatorBoundingIntervalHierarchy.h b/vtkm/cont/CellLocatorBoundingIntervalHierarchy.h index 3f77cd2e..e5b2d521 100644 --- a/vtkm/cont/CellLocatorBoundingIntervalHierarchy.h +++ b/vtkm/cont/CellLocatorBoundingIntervalHierarchy.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellLocatorBoundingIntervalHierarchy_h diff --git a/vtkm/cont/CellLocatorGeneral.cxx b/vtkm/cont/CellLocatorGeneral.cxx index 9364f148..091cb4cd 100644 --- a/vtkm/cont/CellLocatorGeneral.cxx +++ b/vtkm/cont/CellLocatorGeneral.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocatorGeneral.h b/vtkm/cont/CellLocatorGeneral.h index 7c8038c4..4ec53f4b 100644 --- a/vtkm/cont/CellLocatorGeneral.h +++ b/vtkm/cont/CellLocatorGeneral.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellLocatorGeneral_h #define vtk_m_cont_CellLocatorGeneral_h diff --git a/vtkm/cont/CellLocatorRectilinearGrid.cxx b/vtkm/cont/CellLocatorRectilinearGrid.cxx index 2754a2f2..921c6bd6 100644 --- a/vtkm/cont/CellLocatorRectilinearGrid.cxx +++ b/vtkm/cont/CellLocatorRectilinearGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocatorRectilinearGrid.h b/vtkm/cont/CellLocatorRectilinearGrid.h index 3c7702a1..7f387fcf 100644 --- a/vtkm/cont/CellLocatorRectilinearGrid.h +++ b/vtkm/cont/CellLocatorRectilinearGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtkm_cont_CellLocatorRectilinearGrid_h #define vtkm_cont_CellLocatorRectilinearGrid_h diff --git a/vtkm/cont/CellLocatorUniformBins.cxx b/vtkm/cont/CellLocatorUniformBins.cxx index 00e1a447..4394545a 100644 --- a/vtkm/cont/CellLocatorUniformBins.cxx +++ b/vtkm/cont/CellLocatorUniformBins.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocatorUniformBins.h b/vtkm/cont/CellLocatorUniformBins.h index 1a3c3589..62b3d5a9 100644 --- a/vtkm/cont/CellLocatorUniformBins.h +++ b/vtkm/cont/CellLocatorUniformBins.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellLocatorUniformBins_h #define vtk_m_cont_CellLocatorUniformBins_h diff --git a/vtkm/cont/CellLocatorUniformGrid.cxx b/vtkm/cont/CellLocatorUniformGrid.cxx index 47d4fd2e..eebaea90 100644 --- a/vtkm/cont/CellLocatorUniformGrid.cxx +++ b/vtkm/cont/CellLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellLocatorUniformGrid.h b/vtkm/cont/CellLocatorUniformGrid.h index 162c2fcc..1bc13e7d 100644 --- a/vtkm/cont/CellLocatorUniformGrid.h +++ b/vtkm/cont/CellLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtkm_cont_CellLocatorUniformGrid_h #define vtkm_cont_CellLocatorUniformGrid_h diff --git a/vtkm/cont/CellSet.cxx b/vtkm/cont/CellSet.cxx index a8436c25..1fdbe43b 100644 --- a/vtkm/cont/CellSet.cxx +++ b/vtkm/cont/CellSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CellSet.h b/vtkm/cont/CellSet.h index b80a8aac..37ed1e43 100644 --- a/vtkm/cont/CellSet.h +++ b/vtkm/cont/CellSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSet_h #define vtk_m_cont_CellSet_h diff --git a/vtkm/cont/CellSetExplicit.cxx b/vtkm/cont/CellSetExplicit.cxx index e24b4cbb..2eb29fd3 100644 --- a/vtkm/cont/CellSetExplicit.cxx +++ b/vtkm/cont/CellSetExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_CellSetExplicit_cxx diff --git a/vtkm/cont/CellSetExplicit.h b/vtkm/cont/CellSetExplicit.h index bea62760..e1d39449 100644 --- a/vtkm/cont/CellSetExplicit.h +++ b/vtkm/cont/CellSetExplicit.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSetExplicit_h #define vtk_m_cont_CellSetExplicit_h diff --git a/vtkm/cont/CellSetExplicit.hxx b/vtkm/cont/CellSetExplicit.hxx index 07c985e1..3bcddeb9 100644 --- a/vtkm/cont/CellSetExplicit.hxx +++ b/vtkm/cont/CellSetExplicit.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/CellSetListTag.h b/vtkm/cont/CellSetListTag.h index b794f91c..8317311a 100644 --- a/vtkm/cont/CellSetListTag.h +++ b/vtkm/cont/CellSetListTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSetListTag_h #define vtk_m_cont_CellSetListTag_h diff --git a/vtkm/cont/CellSetPermutation.h b/vtkm/cont/CellSetPermutation.h index 938d5322..ad787bbe 100644 --- a/vtkm/cont/CellSetPermutation.h +++ b/vtkm/cont/CellSetPermutation.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSetPermutation_h #define vtk_m_cont_CellSetPermutation_h diff --git a/vtkm/cont/CellSetSingleType.h b/vtkm/cont/CellSetSingleType.h index 9448039d..b70a9ecc 100644 --- a/vtkm/cont/CellSetSingleType.h +++ b/vtkm/cont/CellSetSingleType.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSetSingleType_h #define vtk_m_cont_CellSetSingleType_h diff --git a/vtkm/cont/CellSetStructured.cxx b/vtkm/cont/CellSetStructured.cxx index bbe0d367..8d992c42 100644 --- a/vtkm/cont/CellSetStructured.cxx +++ b/vtkm/cont/CellSetStructured.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtkm_cont_CellSetStructured_cxx diff --git a/vtkm/cont/CellSetStructured.h b/vtkm/cont/CellSetStructured.h index e853ddbe..a810445f 100644 --- a/vtkm/cont/CellSetStructured.h +++ b/vtkm/cont/CellSetStructured.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellSetStructured_h #define vtk_m_cont_CellSetStructured_h diff --git a/vtkm/cont/CellSetStructured.hxx b/vtkm/cont/CellSetStructured.hxx index 6e0b9ee7..bacea1cb 100644 --- a/vtkm/cont/CellSetStructured.hxx +++ b/vtkm/cont/CellSetStructured.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace vtkm diff --git a/vtkm/cont/ColorTable.cxx b/vtkm/cont/ColorTable.cxx index 436f1a81..c1b0a104 100644 --- a/vtkm/cont/ColorTable.cxx +++ b/vtkm/cont/ColorTable.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/ColorTable.h b/vtkm/cont/ColorTable.h index 22bc237f..1e499d3f 100644 --- a/vtkm/cont/ColorTable.h +++ b/vtkm/cont/ColorTable.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ColorTable_h #define vtk_m_cont_ColorTable_h diff --git a/vtkm/cont/ColorTable.hxx b/vtkm/cont/ColorTable.hxx index c73cc5e2..a5fc7d83 100644 --- a/vtkm/cont/ColorTable.hxx +++ b/vtkm/cont/ColorTable.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ColorTable_hxx diff --git a/vtkm/cont/ColorTablePresets.cxx b/vtkm/cont/ColorTablePresets.cxx index 6266f27a..84d384dc 100644 --- a/vtkm/cont/ColorTablePresets.cxx +++ b/vtkm/cont/ColorTablePresets.cxx @@ -1,22 +1,11 @@ - //============================================================================ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/ColorTablePrivate.hxx b/vtkm/cont/ColorTablePrivate.hxx index 3d38129f..7f3e2bd9 100644 --- a/vtkm/cont/ColorTablePrivate.hxx +++ b/vtkm/cont/ColorTablePrivate.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/ColorTableSamples.h b/vtkm/cont/ColorTableSamples.h index dbcdcb16..2e07e4ad 100644 --- a/vtkm/cont/ColorTableSamples.h +++ b/vtkm/cont/ColorTableSamples.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ColorTableSamples_h #define vtk_m_cont_ColorTableSamples_h diff --git a/vtkm/cont/CoordinateSystem.cxx b/vtkm/cont/CoordinateSystem.cxx index 59391569..85f67f05 100644 --- a/vtkm/cont/CoordinateSystem.cxx +++ b/vtkm/cont/CoordinateSystem.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/CoordinateSystem.h b/vtkm/cont/CoordinateSystem.h index 2b9adb85..38477839 100644 --- a/vtkm/cont/CoordinateSystem.h +++ b/vtkm/cont/CoordinateSystem.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CoordinateSystem_h #define vtk_m_cont_CoordinateSystem_h diff --git a/vtkm/cont/CoordinateSystem.hxx b/vtkm/cont/CoordinateSystem.hxx index dca1ac06..d710d07b 100644 --- a/vtkm/cont/CoordinateSystem.hxx +++ b/vtkm/cont/CoordinateSystem.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CoordinateSystem_hxx #define vtk_m_cont_CoordinateSystem_hxx diff --git a/vtkm/cont/DataSet.cxx b/vtkm/cont/DataSet.cxx index 4820a0e8..98c52429 100644 --- a/vtkm/cont/DataSet.cxx +++ b/vtkm/cont/DataSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/DataSet.h b/vtkm/cont/DataSet.h index 90ed32bc..4dd5c8c0 100644 --- a/vtkm/cont/DataSet.h +++ b/vtkm/cont/DataSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DataSet_h #define vtk_m_cont_DataSet_h diff --git a/vtkm/cont/DataSetBuilderExplicit.cxx b/vtkm/cont/DataSetBuilderExplicit.cxx index 3a73d868..e0f68c35 100644 --- a/vtkm/cont/DataSetBuilderExplicit.cxx +++ b/vtkm/cont/DataSetBuilderExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/DataSetBuilderExplicit.h b/vtkm/cont/DataSetBuilderExplicit.h index 3b2ba6d0..c62c771f 100644 --- a/vtkm/cont/DataSetBuilderExplicit.h +++ b/vtkm/cont/DataSetBuilderExplicit.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DataSetBuilderExplicit_h #define vtk_m_cont_DataSetBuilderExplicit_h diff --git a/vtkm/cont/DataSetBuilderRectilinear.cxx b/vtkm/cont/DataSetBuilderRectilinear.cxx index b5555567..2ee3972a 100644 --- a/vtkm/cont/DataSetBuilderRectilinear.cxx +++ b/vtkm/cont/DataSetBuilderRectilinear.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/DataSetBuilderRectilinear.h b/vtkm/cont/DataSetBuilderRectilinear.h index ae2d3942..144875d6 100644 --- a/vtkm/cont/DataSetBuilderRectilinear.h +++ b/vtkm/cont/DataSetBuilderRectilinear.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DataSetBuilderRectilinear_h #define vtk_m_cont_DataSetBuilderRectilinear_h diff --git a/vtkm/cont/DataSetBuilderUniform.cxx b/vtkm/cont/DataSetBuilderUniform.cxx index 35aeed1a..18604e88 100644 --- a/vtkm/cont/DataSetBuilderUniform.cxx +++ b/vtkm/cont/DataSetBuilderUniform.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/DataSetBuilderUniform.h b/vtkm/cont/DataSetBuilderUniform.h index db9a1921..b8a7749e 100644 --- a/vtkm/cont/DataSetBuilderUniform.h +++ b/vtkm/cont/DataSetBuilderUniform.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DataSetBuilderUniform_h #define vtk_m_cont_DataSetBuilderUniform_h diff --git a/vtkm/cont/DataSetFieldAdd.h b/vtkm/cont/DataSetFieldAdd.h index ee2bb558..a64c5e28 100644 --- a/vtkm/cont/DataSetFieldAdd.h +++ b/vtkm/cont/DataSetFieldAdd.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DataSetFieldAdd_h #define vtk_m_cont_DataSetFieldAdd_h diff --git a/vtkm/cont/DeviceAdapter.h b/vtkm/cont/DeviceAdapter.h index 90ef6fb6..ffc63182 100644 --- a/vtkm/cont/DeviceAdapter.h +++ b/vtkm/cont/DeviceAdapter.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DeviceAdapter_h #define vtk_m_cont_DeviceAdapter_h diff --git a/vtkm/cont/DeviceAdapterAlgorithm.h b/vtkm/cont/DeviceAdapterAlgorithm.h index a3f9ea43..16e77c74 100644 --- a/vtkm/cont/DeviceAdapterAlgorithm.h +++ b/vtkm/cont/DeviceAdapterAlgorithm.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DeviceAdapterAlgorithm_h #define vtk_m_cont_DeviceAdapterAlgorithm_h diff --git a/vtkm/cont/DeviceAdapterListTag.h b/vtkm/cont/DeviceAdapterListTag.h index d6e839d6..8d5bd668 100644 --- a/vtkm/cont/DeviceAdapterListTag.h +++ b/vtkm/cont/DeviceAdapterListTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DeviceAdapterListTag_h #define vtk_m_cont_DeviceAdapterListTag_h diff --git a/vtkm/cont/DeviceAdapterTag.h b/vtkm/cont/DeviceAdapterTag.h index 39df26df..d8000634 100644 --- a/vtkm/cont/DeviceAdapterTag.h +++ b/vtkm/cont/DeviceAdapterTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DeviceAdapterTag_h #define vtk_m_cont_DeviceAdapterTag_h diff --git a/vtkm/cont/DynamicCellSet.h b/vtkm/cont/DynamicCellSet.h index 5a0508ef..9914efba 100644 --- a/vtkm/cont/DynamicCellSet.h +++ b/vtkm/cont/DynamicCellSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_DynamicCellSet_h #define vtk_m_cont_DynamicCellSet_h diff --git a/vtkm/cont/EnvironmentTracker.cxx b/vtkm/cont/EnvironmentTracker.cxx index 5e4dd70f..cb03cb73 100644 --- a/vtkm/cont/EnvironmentTracker.cxx +++ b/vtkm/cont/EnvironmentTracker.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/EnvironmentTracker.h b/vtkm/cont/EnvironmentTracker.h index cd8f141a..48e79ded 100644 --- a/vtkm/cont/EnvironmentTracker.h +++ b/vtkm/cont/EnvironmentTracker.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_EnvironmentTracker_h #define vtk_m_cont_EnvironmentTracker_h diff --git a/vtkm/cont/Error.h b/vtkm/cont/Error.h index b4ba6395..a8f0af88 100644 --- a/vtkm/cont/Error.h +++ b/vtkm/cont/Error.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Error_h #define vtk_m_cont_Error_h diff --git a/vtkm/cont/ErrorBadAllocation.h b/vtkm/cont/ErrorBadAllocation.h index 9811a9df..6179ec5c 100644 --- a/vtkm/cont/ErrorBadAllocation.h +++ b/vtkm/cont/ErrorBadAllocation.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorBadAllocation_h #define vtk_m_cont_ErrorBadAllocation_h diff --git a/vtkm/cont/ErrorBadDevice.cxx b/vtkm/cont/ErrorBadDevice.cxx index 9e51ca57..54cb23f3 100644 --- a/vtkm/cont/ErrorBadDevice.cxx +++ b/vtkm/cont/ErrorBadDevice.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/ErrorBadDevice.h b/vtkm/cont/ErrorBadDevice.h index 6119eaea..816eb0d6 100644 --- a/vtkm/cont/ErrorBadDevice.h +++ b/vtkm/cont/ErrorBadDevice.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorBadDevice_h #define vtk_m_cont_ErrorBadDevice_h diff --git a/vtkm/cont/ErrorBadType.cxx b/vtkm/cont/ErrorBadType.cxx index 693f3d52..2900e54a 100644 --- a/vtkm/cont/ErrorBadType.cxx +++ b/vtkm/cont/ErrorBadType.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/ErrorBadType.h b/vtkm/cont/ErrorBadType.h index c32459ad..2faff4c7 100644 --- a/vtkm/cont/ErrorBadType.h +++ b/vtkm/cont/ErrorBadType.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorBadType_h #define vtk_m_cont_ErrorBadType_h diff --git a/vtkm/cont/ErrorBadValue.h b/vtkm/cont/ErrorBadValue.h index b2b2a8c2..aeef6fef 100644 --- a/vtkm/cont/ErrorBadValue.h +++ b/vtkm/cont/ErrorBadValue.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorBadValue_h #define vtk_m_cont_ErrorBadValue_h diff --git a/vtkm/cont/ErrorExecution.h b/vtkm/cont/ErrorExecution.h index 384c0d9a..aae0b614 100644 --- a/vtkm/cont/ErrorExecution.h +++ b/vtkm/cont/ErrorExecution.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorExecution_h #define vtk_m_cont_ErrorExecution_h diff --git a/vtkm/cont/ErrorFilterExecution.h b/vtkm/cont/ErrorFilterExecution.h index b7617bb5..19c59e0f 100644 --- a/vtkm/cont/ErrorFilterExecution.h +++ b/vtkm/cont/ErrorFilterExecution.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorFilterExecution_h #define vtk_m_cont_ErrorFilterExecution_h diff --git a/vtkm/cont/ErrorInternal.h b/vtkm/cont/ErrorInternal.h index 8e525e26..e8f48f39 100644 --- a/vtkm/cont/ErrorInternal.h +++ b/vtkm/cont/ErrorInternal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ErrorInternal_h #define vtk_m_cont_ErrorInternal_h diff --git a/vtkm/cont/ExecutionAndControlObjectBase.h b/vtkm/cont/ExecutionAndControlObjectBase.h index 26f340dc..e4a934c5 100644 --- a/vtkm/cont/ExecutionAndControlObjectBase.h +++ b/vtkm/cont/ExecutionAndControlObjectBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ExecutionAndControlObjectBase_h #define vtk_m_cont_ExecutionAndControlObjectBase_h diff --git a/vtkm/cont/ExecutionObjectBase.h b/vtkm/cont/ExecutionObjectBase.h index 47dc08f9..fcf758e2 100644 --- a/vtkm/cont/ExecutionObjectBase.h +++ b/vtkm/cont/ExecutionObjectBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ExecutionObjectBase_h #define vtk_m_cont_ExecutionObjectBase_h diff --git a/vtkm/cont/Field.cxx b/vtkm/cont/Field.cxx index 7c87f1ed..c4ca7291 100644 --- a/vtkm/cont/Field.cxx +++ b/vtkm/cont/Field.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/Field.h b/vtkm/cont/Field.h index c1ad187f..0f610081 100644 --- a/vtkm/cont/Field.h +++ b/vtkm/cont/Field.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Field_h #define vtk_m_cont_Field_h diff --git a/vtkm/cont/FieldRangeCompute.cxx b/vtkm/cont/FieldRangeCompute.cxx index 29cfd475..ff6eaabf 100644 --- a/vtkm/cont/FieldRangeCompute.cxx +++ b/vtkm/cont/FieldRangeCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/FieldRangeCompute.h b/vtkm/cont/FieldRangeCompute.h index 2a971483..8adaaab1 100644 --- a/vtkm/cont/FieldRangeCompute.h +++ b/vtkm/cont/FieldRangeCompute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_FieldRangeCompute_h #define vtk_m_cont_FieldRangeCompute_h diff --git a/vtkm/cont/FieldRangeCompute.hxx b/vtkm/cont/FieldRangeCompute.hxx index aef17a83..bdfa5549 100644 --- a/vtkm/cont/FieldRangeCompute.hxx +++ b/vtkm/cont/FieldRangeCompute.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_FieldRangeCompute_hxx #define vtk_m_cont_FieldRangeCompute_hxx diff --git a/vtkm/cont/FieldRangeGlobalCompute.cxx b/vtkm/cont/FieldRangeGlobalCompute.cxx index 90fa025e..54435397 100644 --- a/vtkm/cont/FieldRangeGlobalCompute.cxx +++ b/vtkm/cont/FieldRangeGlobalCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/FieldRangeGlobalCompute.h b/vtkm/cont/FieldRangeGlobalCompute.h index 9c15b724..38f4cc35 100644 --- a/vtkm/cont/FieldRangeGlobalCompute.h +++ b/vtkm/cont/FieldRangeGlobalCompute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_FieldRangeGlobalCompute_h #define vtk_m_cont_FieldRangeGlobalCompute_h diff --git a/vtkm/cont/FieldRangeGlobalCompute.hxx b/vtkm/cont/FieldRangeGlobalCompute.hxx index be4dc554..56c99ce4 100644 --- a/vtkm/cont/FieldRangeGlobalCompute.hxx +++ b/vtkm/cont/FieldRangeGlobalCompute.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_FieldRangeGlobalCompute_hxx #define vtk_m_cont_FieldRangeGlobalCompute_hxx diff --git a/vtkm/cont/ImplicitFunctionHandle.h b/vtkm/cont/ImplicitFunctionHandle.h index 52331b00..6667aee8 100644 --- a/vtkm/cont/ImplicitFunctionHandle.h +++ b/vtkm/cont/ImplicitFunctionHandle.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_ImplicitFunctionHandle_h #define vtk_m_cont_ImplicitFunctionHandle_h diff --git a/vtkm/cont/Initialize.cxx b/vtkm/cont/Initialize.cxx index 656bc3fd..b0b12c85 100644 --- a/vtkm/cont/Initialize.cxx +++ b/vtkm/cont/Initialize.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/Initialize.h b/vtkm/cont/Initialize.h index 08598632..9fe0a056 100644 --- a/vtkm/cont/Initialize.h +++ b/vtkm/cont/Initialize.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Initialize_h #define vtk_m_cont_Initialize_h diff --git a/vtkm/cont/Logging.cxx b/vtkm/cont/Logging.cxx index 3ed05ac6..405f67b9 100644 --- a/vtkm/cont/Logging.cxx +++ b/vtkm/cont/Logging.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/Logging.h b/vtkm/cont/Logging.h index 0d99a322..ce2b8200 100644 --- a/vtkm/cont/Logging.h +++ b/vtkm/cont/Logging.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Logging_h #define vtk_m_cont_Logging_h diff --git a/vtkm/cont/MultiBlock.cxx b/vtkm/cont/MultiBlock.cxx index 11a91407..160d8786 100644 --- a/vtkm/cont/MultiBlock.cxx +++ b/vtkm/cont/MultiBlock.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/MultiBlock.h b/vtkm/cont/MultiBlock.h index 279399bb..3ea204aa 100644 --- a/vtkm/cont/MultiBlock.h +++ b/vtkm/cont/MultiBlock.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_MultiBlock_h #define vtk_m_cont_MultiBlock_h diff --git a/vtkm/cont/PointLocator.h b/vtkm/cont/PointLocator.h index b71ece5e..059c455e 100644 --- a/vtkm/cont/PointLocator.h +++ b/vtkm/cont/PointLocator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_PointLocator_h #define vtk_m_cont_PointLocator_h diff --git a/vtkm/cont/PointLocatorUniformGrid.h b/vtkm/cont/PointLocatorUniformGrid.h index 1da735b3..157592aa 100644 --- a/vtkm/cont/PointLocatorUniformGrid.h +++ b/vtkm/cont/PointLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_PointLocatorUniformGrid_h #define vtk_m_cont_PointLocatorUniformGrid_h diff --git a/vtkm/cont/RuntimeDeviceInformation.cxx b/vtkm/cont/RuntimeDeviceInformation.cxx index 847ae426..6f7936d3 100644 --- a/vtkm/cont/RuntimeDeviceInformation.cxx +++ b/vtkm/cont/RuntimeDeviceInformation.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/RuntimeDeviceInformation.h b/vtkm/cont/RuntimeDeviceInformation.h index 9272d491..c3ee1282 100644 --- a/vtkm/cont/RuntimeDeviceInformation.h +++ b/vtkm/cont/RuntimeDeviceInformation.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_RuntimeDeviceInformation_h #define vtk_m_cont_RuntimeDeviceInformation_h diff --git a/vtkm/cont/RuntimeDeviceTracker.cxx b/vtkm/cont/RuntimeDeviceTracker.cxx index 517d5f16..81bef9f0 100644 --- a/vtkm/cont/RuntimeDeviceTracker.cxx +++ b/vtkm/cont/RuntimeDeviceTracker.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/RuntimeDeviceTracker.h b/vtkm/cont/RuntimeDeviceTracker.h index 74c480b9..be311392 100644 --- a/vtkm/cont/RuntimeDeviceTracker.h +++ b/vtkm/cont/RuntimeDeviceTracker.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_RuntimeDeviceTracker_h #define vtk_m_cont_RuntimeDeviceTracker_h diff --git a/vtkm/cont/SerializableTypeString.h b/vtkm/cont/SerializableTypeString.h index 9e602507..40d0e96b 100644 --- a/vtkm/cont/SerializableTypeString.h +++ b/vtkm/cont/SerializableTypeString.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_SerializableTypeString_h #define vtk_m_cont_SerializableTypeString_h diff --git a/vtkm/cont/Serialization.h b/vtkm/cont/Serialization.h index 6915ee4c..4b4072b6 100644 --- a/vtkm/cont/Serialization.h +++ b/vtkm/cont/Serialization.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Serialization_h #define vtk_m_cont_Serialization_h diff --git a/vtkm/cont/Storage.h b/vtkm/cont/Storage.h index 4fd5f28d..ef3d0b62 100644 --- a/vtkm/cont/Storage.h +++ b/vtkm/cont/Storage.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Storage_h #define vtk_m_cont_Storage_h diff --git a/vtkm/cont/StorageBasic.cxx b/vtkm/cont/StorageBasic.cxx index 319a424e..44709657 100644 --- a/vtkm/cont/StorageBasic.cxx +++ b/vtkm/cont/StorageBasic.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtkm_cont_StorageBasic_cxx diff --git a/vtkm/cont/StorageBasic.h b/vtkm/cont/StorageBasic.h index 007ebba3..676dd270 100644 --- a/vtkm/cont/StorageBasic.h +++ b/vtkm/cont/StorageBasic.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_StorageBasic_h #define vtk_m_cont_StorageBasic_h diff --git a/vtkm/cont/StorageBasic.hxx b/vtkm/cont/StorageBasic.hxx index e30430a4..73f14100 100644 --- a/vtkm/cont/StorageBasic.hxx +++ b/vtkm/cont/StorageBasic.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/StorageImplicit.h b/vtkm/cont/StorageImplicit.h index ea0f794e..0f206237 100644 --- a/vtkm/cont/StorageImplicit.h +++ b/vtkm/cont/StorageImplicit.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_StorageImplicit #define vtk_m_cont_StorageImplicit diff --git a/vtkm/cont/StorageListTag.h b/vtkm/cont/StorageListTag.h index 0d5c5193..4ddc3773 100644 --- a/vtkm/cont/StorageListTag.h +++ b/vtkm/cont/StorageListTag.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_StorageListTag_h #define vtk_m_cont_StorageListTag_h diff --git a/vtkm/cont/StorageVirtual.cxx b/vtkm/cont/StorageVirtual.cxx index df75f388..41c44072 100644 --- a/vtkm/cont/StorageVirtual.cxx +++ b/vtkm/cont/StorageVirtual.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_StorageVirtual_cxx #include diff --git a/vtkm/cont/StorageVirtual.h b/vtkm/cont/StorageVirtual.h index f383726e..0026aa04 100644 --- a/vtkm/cont/StorageVirtual.h +++ b/vtkm/cont/StorageVirtual.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_StorageVirtual_h #define vtk_m_cont_StorageVirtual_h diff --git a/vtkm/cont/StorageVirtual.hxx b/vtkm/cont/StorageVirtual.hxx index e71d150b..6741e2e7 100644 --- a/vtkm/cont/StorageVirtual.hxx +++ b/vtkm/cont/StorageVirtual.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_StorageVirtual_hxx #define vtk_m_cont_StorageVirtual_hxx diff --git a/vtkm/cont/Timer.cxx b/vtkm/cont/Timer.cxx index 89685de2..cf04a6ed 100644 --- a/vtkm/cont/Timer.cxx +++ b/vtkm/cont/Timer.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/Timer.h b/vtkm/cont/Timer.h index 58f06f4e..566dc981 100644 --- a/vtkm/cont/Timer.h +++ b/vtkm/cont/Timer.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_Timer_h #define vtk_m_cont_Timer_h diff --git a/vtkm/cont/TryExecute.cxx b/vtkm/cont/TryExecute.cxx index d2e86a2e..c5ff29e7 100644 --- a/vtkm/cont/TryExecute.cxx +++ b/vtkm/cont/TryExecute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/TryExecute.h b/vtkm/cont/TryExecute.h index e8de49e0..1ad910f6 100644 --- a/vtkm/cont/TryExecute.h +++ b/vtkm/cont/TryExecute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_TryExecute_h #define vtk_m_cont_TryExecute_h diff --git a/vtkm/cont/VariantArrayHandle.cxx b/vtkm/cont/VariantArrayHandle.cxx index d0f60219..b8c700b2 100644 --- a/vtkm/cont/VariantArrayHandle.cxx +++ b/vtkm/cont/VariantArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/VariantArrayHandle.h b/vtkm/cont/VariantArrayHandle.h index e7bd8f68..2e49b57f 100644 --- a/vtkm/cont/VariantArrayHandle.h +++ b/vtkm/cont/VariantArrayHandle.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_VariantArrayHandle_h #define vtk_m_cont_VariantArrayHandle_h diff --git a/vtkm/cont/VirtualObjectHandle.h b/vtkm/cont/VirtualObjectHandle.h index 7db3f27e..c182d2fc 100644 --- a/vtkm/cont/VirtualObjectHandle.h +++ b/vtkm/cont/VirtualObjectHandle.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_VirtualObjectHandle_h #define vtk_m_cont_VirtualObjectHandle_h diff --git a/vtkm/cont/VirtualObjectHandle.hxx b/vtkm/cont/VirtualObjectHandle.hxx index 81200c45..0618eee7 100644 --- a/vtkm/cont/VirtualObjectHandle.hxx +++ b/vtkm/cont/VirtualObjectHandle.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_VirtualObjectHandle_hxx #define vtk_m_cont_VirtualObjectHandle_hxx diff --git a/vtkm/cont/arg/CMakeLists.txt b/vtkm/cont/arg/CMakeLists.txt index 12a6eb2c..890bd9a8 100644 --- a/vtkm/cont/arg/CMakeLists.txt +++ b/vtkm/cont/arg/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/arg/ControlSignatureTagBase.h b/vtkm/cont/arg/ControlSignatureTagBase.h index 3d035795..1fc62963 100644 --- a/vtkm/cont/arg/ControlSignatureTagBase.h +++ b/vtkm/cont/arg/ControlSignatureTagBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_ControlSignatureTagBase_h #define vtk_m_cont_arg_ControlSignatureTagBase_h diff --git a/vtkm/cont/arg/Transport.h b/vtkm/cont/arg/Transport.h index 64cf0ff0..2718b504 100644 --- a/vtkm/cont/arg/Transport.h +++ b/vtkm/cont/arg/Transport.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_Transport_h #define vtk_m_cont_arg_Transport_h diff --git a/vtkm/cont/arg/TransportTagArrayIn.h b/vtkm/cont/arg/TransportTagArrayIn.h index f8087c3c..231061e9 100644 --- a/vtkm/cont/arg/TransportTagArrayIn.h +++ b/vtkm/cont/arg/TransportTagArrayIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagArrayIn_h #define vtk_m_cont_arg_TransportTagArrayIn_h diff --git a/vtkm/cont/arg/TransportTagArrayInOut.h b/vtkm/cont/arg/TransportTagArrayInOut.h index acbeaf20..11eef14a 100644 --- a/vtkm/cont/arg/TransportTagArrayInOut.h +++ b/vtkm/cont/arg/TransportTagArrayInOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagArrayInOut_h #define vtk_m_cont_arg_TransportTagArrayInOut_h diff --git a/vtkm/cont/arg/TransportTagArrayOut.h b/vtkm/cont/arg/TransportTagArrayOut.h index f61ded60..54c5974c 100644 --- a/vtkm/cont/arg/TransportTagArrayOut.h +++ b/vtkm/cont/arg/TransportTagArrayOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagArrayOut_h #define vtk_m_cont_arg_TransportTagArrayOut_h diff --git a/vtkm/cont/arg/TransportTagAtomicArray.h b/vtkm/cont/arg/TransportTagAtomicArray.h index bb35fb75..3e405f05 100644 --- a/vtkm/cont/arg/TransportTagAtomicArray.h +++ b/vtkm/cont/arg/TransportTagAtomicArray.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagAtomicArray_h #define vtk_m_cont_arg_TransportTagAtomicArray_h diff --git a/vtkm/cont/arg/TransportTagBitField.h b/vtkm/cont/arg/TransportTagBitField.h index 0b247104..8572735f 100644 --- a/vtkm/cont/arg/TransportTagBitField.h +++ b/vtkm/cont/arg/TransportTagBitField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagBitField_h #define vtk_m_cont_arg_TransportTagBitField_h diff --git a/vtkm/cont/arg/TransportTagCellSetIn.h b/vtkm/cont/arg/TransportTagCellSetIn.h index efccb348..3e1a0e2c 100644 --- a/vtkm/cont/arg/TransportTagCellSetIn.h +++ b/vtkm/cont/arg/TransportTagCellSetIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagCellSetIn_h #define vtk_m_cont_arg_TransportTagCellSetIn_h diff --git a/vtkm/cont/arg/TransportTagExecObject.h b/vtkm/cont/arg/TransportTagExecObject.h index bb5cf6a1..88e370f5 100644 --- a/vtkm/cont/arg/TransportTagExecObject.h +++ b/vtkm/cont/arg/TransportTagExecObject.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagExecObject_h #define vtk_m_cont_arg_TransportTagExecObject_h diff --git a/vtkm/cont/arg/TransportTagKeyedValuesIn.h b/vtkm/cont/arg/TransportTagKeyedValuesIn.h index 301d4673..af381682 100644 --- a/vtkm/cont/arg/TransportTagKeyedValuesIn.h +++ b/vtkm/cont/arg/TransportTagKeyedValuesIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagKeyedValuesIn_h #define vtk_m_cont_arg_TransportTagKeyedValuesIn_h diff --git a/vtkm/cont/arg/TransportTagKeyedValuesInOut.h b/vtkm/cont/arg/TransportTagKeyedValuesInOut.h index d67300ef..ff8bd687 100644 --- a/vtkm/cont/arg/TransportTagKeyedValuesInOut.h +++ b/vtkm/cont/arg/TransportTagKeyedValuesInOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagKeyedValuesInOut_h #define vtk_m_cont_arg_TransportTagKeyedValuesInOut_h diff --git a/vtkm/cont/arg/TransportTagKeyedValuesOut.h b/vtkm/cont/arg/TransportTagKeyedValuesOut.h index 1a25258a..2cb68695 100644 --- a/vtkm/cont/arg/TransportTagKeyedValuesOut.h +++ b/vtkm/cont/arg/TransportTagKeyedValuesOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagKeyedValuesOut_h #define vtk_m_cont_arg_TransportTagKeyedValuesOut_h diff --git a/vtkm/cont/arg/TransportTagKeysIn.h b/vtkm/cont/arg/TransportTagKeysIn.h index d6b11116..412b3365 100644 --- a/vtkm/cont/arg/TransportTagKeysIn.h +++ b/vtkm/cont/arg/TransportTagKeysIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagKeysIn_h #define vtk_m_cont_arg_TransportTagKeysIn_h diff --git a/vtkm/cont/arg/TransportTagTopologyFieldIn.h b/vtkm/cont/arg/TransportTagTopologyFieldIn.h index 0b382dae..9412b9a1 100644 --- a/vtkm/cont/arg/TransportTagTopologyFieldIn.h +++ b/vtkm/cont/arg/TransportTagTopologyFieldIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagTopologyFieldIn_h #define vtk_m_cont_arg_TransportTagTopologyFieldIn_h diff --git a/vtkm/cont/arg/TransportTagWholeArrayIn.h b/vtkm/cont/arg/TransportTagWholeArrayIn.h index 8fc2916c..d461c6bb 100644 --- a/vtkm/cont/arg/TransportTagWholeArrayIn.h +++ b/vtkm/cont/arg/TransportTagWholeArrayIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagWholeArrayIn_h #define vtk_m_cont_arg_TransportTagWholeArrayIn_h diff --git a/vtkm/cont/arg/TransportTagWholeArrayInOut.h b/vtkm/cont/arg/TransportTagWholeArrayInOut.h index a7fdc981..b75c2187 100644 --- a/vtkm/cont/arg/TransportTagWholeArrayInOut.h +++ b/vtkm/cont/arg/TransportTagWholeArrayInOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagWholeArrayInOut_h #define vtk_m_cont_arg_TransportTagWholeArrayInOut_h diff --git a/vtkm/cont/arg/TransportTagWholeArrayOut.h b/vtkm/cont/arg/TransportTagWholeArrayOut.h index ef044d7f..e83d83b8 100644 --- a/vtkm/cont/arg/TransportTagWholeArrayOut.h +++ b/vtkm/cont/arg/TransportTagWholeArrayOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TransportTagWholeArrayOut_h #define vtk_m_cont_arg_TransportTagWholeArrayOut_h diff --git a/vtkm/cont/arg/TypeCheck.h b/vtkm/cont/arg/TypeCheck.h index 2a883753..7518768f 100644 --- a/vtkm/cont/arg/TypeCheck.h +++ b/vtkm/cont/arg/TypeCheck.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheck_h #define vtk_m_cont_arg_TypeCheck_h diff --git a/vtkm/cont/arg/TypeCheckTagArray.h b/vtkm/cont/arg/TypeCheckTagArray.h index b14b20f9..30bd4400 100644 --- a/vtkm/cont/arg/TypeCheckTagArray.h +++ b/vtkm/cont/arg/TypeCheckTagArray.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagArray_h #define vtk_m_cont_arg_TypeCheckTagArray_h diff --git a/vtkm/cont/arg/TypeCheckTagAtomicArray.h b/vtkm/cont/arg/TypeCheckTagAtomicArray.h index 8e66db09..3318c2b7 100644 --- a/vtkm/cont/arg/TypeCheckTagAtomicArray.h +++ b/vtkm/cont/arg/TypeCheckTagAtomicArray.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagAtomicArray_h #define vtk_m_cont_arg_TypeCheckTagAtomicArray_h diff --git a/vtkm/cont/arg/TypeCheckTagBitField.h b/vtkm/cont/arg/TypeCheckTagBitField.h index 7733bfa4..d5ba97ca 100644 --- a/vtkm/cont/arg/TypeCheckTagBitField.h +++ b/vtkm/cont/arg/TypeCheckTagBitField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagBitField_h #define vtk_m_cont_arg_TypeCheckTagBitField_h diff --git a/vtkm/cont/arg/TypeCheckTagCellSet.h b/vtkm/cont/arg/TypeCheckTagCellSet.h index 590aaef9..e9bcf7c8 100644 --- a/vtkm/cont/arg/TypeCheckTagCellSet.h +++ b/vtkm/cont/arg/TypeCheckTagCellSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagCellSet_h #define vtk_m_cont_arg_TypeCheckTagCellSet_h diff --git a/vtkm/cont/arg/TypeCheckTagCellSetStructured.h b/vtkm/cont/arg/TypeCheckTagCellSetStructured.h index 01e17daf..45d9431b 100644 --- a/vtkm/cont/arg/TypeCheckTagCellSetStructured.h +++ b/vtkm/cont/arg/TypeCheckTagCellSetStructured.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagCellSetStructured_h #define vtk_m_cont_arg_TypeCheckTagCellSetStructured_h diff --git a/vtkm/cont/arg/TypeCheckTagExecObject.h b/vtkm/cont/arg/TypeCheckTagExecObject.h index f45bb2f1..4c40299f 100644 --- a/vtkm/cont/arg/TypeCheckTagExecObject.h +++ b/vtkm/cont/arg/TypeCheckTagExecObject.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagExecObject_h #define vtk_m_cont_arg_TypeCheckTagExecObject_h diff --git a/vtkm/cont/arg/TypeCheckTagKeys.h b/vtkm/cont/arg/TypeCheckTagKeys.h index 821b46bf..39c0f1c3 100644 --- a/vtkm/cont/arg/TypeCheckTagKeys.h +++ b/vtkm/cont/arg/TypeCheckTagKeys.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_arg_TypeCheckTagKeys_h #define vtk_m_cont_arg_TypeCheckTagKeys_h diff --git a/vtkm/cont/arg/testing/CMakeLists.txt b/vtkm/cont/arg/testing/CMakeLists.txt index 80e831ca..ce7bfbc1 100644 --- a/vtkm/cont/arg/testing/CMakeLists.txt +++ b/vtkm/cont/arg/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/cont/arg/testing/UnitTestControlSignatureTag.cxx b/vtkm/cont/arg/testing/UnitTestControlSignatureTag.cxx index 6004ebd4..e16ea925 100644 --- a/vtkm/cont/arg/testing/UnitTestControlSignatureTag.cxx +++ b/vtkm/cont/arg/testing/UnitTestControlSignatureTag.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportArrayIn.cxx b/vtkm/cont/arg/testing/UnitTestTransportArrayIn.cxx index 130f39a5..da3cf6af 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportArrayIn.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportArrayIn.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportArrayInOut.cxx b/vtkm/cont/arg/testing/UnitTestTransportArrayInOut.cxx index 8bb15459..513269d1 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportArrayInOut.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportArrayInOut.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportArrayOut.cxx b/vtkm/cont/arg/testing/UnitTestTransportArrayOut.cxx index c21c79e4..6d2eecc4 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportArrayOut.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportArrayOut.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportCellSetIn.cxx b/vtkm/cont/arg/testing/UnitTestTransportCellSetIn.cxx index 50d78521..0d30c75e 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportCellSetIn.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportCellSetIn.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportExecObject.cxx b/vtkm/cont/arg/testing/UnitTestTransportExecObject.cxx index 2547818b..e070b003 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportExecObject.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportExecObject.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTransportWholeArray.cxx b/vtkm/cont/arg/testing/UnitTestTransportWholeArray.cxx index e13bf3cb..ce0205d5 100644 --- a/vtkm/cont/arg/testing/UnitTestTransportWholeArray.cxx +++ b/vtkm/cont/arg/testing/UnitTestTransportWholeArray.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTypeCheckArray.cxx b/vtkm/cont/arg/testing/UnitTestTypeCheckArray.cxx index 0a34dce3..58d289de 100644 --- a/vtkm/cont/arg/testing/UnitTestTypeCheckArray.cxx +++ b/vtkm/cont/arg/testing/UnitTestTypeCheckArray.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTypeCheckCellSet.cxx b/vtkm/cont/arg/testing/UnitTestTypeCheckCellSet.cxx index f20545e7..e3572630 100644 --- a/vtkm/cont/arg/testing/UnitTestTypeCheckCellSet.cxx +++ b/vtkm/cont/arg/testing/UnitTestTypeCheckCellSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTypeCheckExecObject.cxx b/vtkm/cont/arg/testing/UnitTestTypeCheckExecObject.cxx index e7a7c38a..bc64c8bf 100644 --- a/vtkm/cont/arg/testing/UnitTestTypeCheckExecObject.cxx +++ b/vtkm/cont/arg/testing/UnitTestTypeCheckExecObject.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/arg/testing/UnitTestTypeCheckKeys.cxx b/vtkm/cont/arg/testing/UnitTestTypeCheckKeys.cxx index 48bf2c61..38cdfedc 100644 --- a/vtkm/cont/arg/testing/UnitTestTypeCheckKeys.cxx +++ b/vtkm/cont/arg/testing/UnitTestTypeCheckKeys.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/CMakeLists.txt b/vtkm/cont/cuda/CMakeLists.txt index da9fb472..c5f62c63 100644 --- a/vtkm/cont/cuda/CMakeLists.txt +++ b/vtkm/cont/cuda/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/cuda/ChooseCudaDevice.h b/vtkm/cont/cuda/ChooseCudaDevice.h index 6c05a90c..7c9ca621 100644 --- a/vtkm/cont/cuda/ChooseCudaDevice.h +++ b/vtkm/cont/cuda/ChooseCudaDevice.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_ChooseCudaDevice_h #define vtk_m_cont_cuda_ChooseCudaDevice_h diff --git a/vtkm/cont/cuda/DeviceAdapterCuda.h b/vtkm/cont/cuda/DeviceAdapterCuda.h index 2feb0215..e8e3382c 100644 --- a/vtkm/cont/cuda/DeviceAdapterCuda.h +++ b/vtkm/cont/cuda/DeviceAdapterCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_DeviceAdapterCuda_h #define vtk_m_cont_cuda_DeviceAdapterCuda_h diff --git a/vtkm/cont/cuda/ErrorCuda.h b/vtkm/cont/cuda/ErrorCuda.h index 8af6ac09..b8991877 100644 --- a/vtkm/cont/cuda/ErrorCuda.h +++ b/vtkm/cont/cuda/ErrorCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_ErrorCuda_h #define vtk_m_cont_cuda_ErrorCuda_h diff --git a/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.cu b/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.cu index d375b9f9..c2860aef 100644 --- a/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.cu +++ b/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_cuda_internal_ArrayManagerExecutionCuda_cu diff --git a/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.h b/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.h index ffb1a31c..3665173d 100644 --- a/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.h +++ b/vtkm/cont/cuda/internal/ArrayManagerExecutionCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_ArrayManagerExecutionCuda_h #define vtk_m_cont_cuda_internal_ArrayManagerExecutionCuda_h diff --git a/vtkm/cont/cuda/internal/AtomicInterfaceExecutionCuda.h b/vtkm/cont/cuda/internal/AtomicInterfaceExecutionCuda.h index 7d42b8c6..e5d41f85 100644 --- a/vtkm/cont/cuda/internal/AtomicInterfaceExecutionCuda.h +++ b/vtkm/cont/cuda/internal/AtomicInterfaceExecutionCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_AtomicInterfaceExecutionCuda_h #define vtk_m_cont_cuda_internal_AtomicInterfaceExecutionCuda_h diff --git a/vtkm/cont/cuda/internal/CMakeLists.txt b/vtkm/cont/cuda/internal/CMakeLists.txt index 0a0aeb11..e01abd4d 100644 --- a/vtkm/cont/cuda/internal/CMakeLists.txt +++ b/vtkm/cont/cuda/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/cuda/internal/CudaAllocator.cu b/vtkm/cont/cuda/internal/CudaAllocator.cu index ddc9840c..9d443bca 100644 --- a/vtkm/cont/cuda/internal/CudaAllocator.cu +++ b/vtkm/cont/cuda/internal/CudaAllocator.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/internal/CudaAllocator.h b/vtkm/cont/cuda/internal/CudaAllocator.h index 17919cce..bd57c62f 100644 --- a/vtkm/cont/cuda/internal/CudaAllocator.h +++ b/vtkm/cont/cuda/internal/CudaAllocator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_CudaAllocator_h diff --git a/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.cu b/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.cu index aaec8b2c..f32c7883 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.cu +++ b/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.h b/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.h index 81889c5f..eeff2dd2 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.h +++ b/vtkm/cont/cuda/internal/DeviceAdapterAlgorithmCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_DeviceAdapterAlgorithmCuda_h #define vtk_m_cont_cuda_internal_DeviceAdapterAlgorithmCuda_h diff --git a/vtkm/cont/cuda/internal/DeviceAdapterAtomicArrayImplementationCuda.h b/vtkm/cont/cuda/internal/DeviceAdapterAtomicArrayImplementationCuda.h index af7fe91c..ace5f964 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterAtomicArrayImplementationCuda.h +++ b/vtkm/cont/cuda/internal/DeviceAdapterAtomicArrayImplementationCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DeviceAdapterAtomicArrayImplementationCuda_h diff --git a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cu b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cu index 164c29ea..0555d76d 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cu +++ b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cu @@ -2,19 +2,9 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cxx b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cxx index 63240cca..81d0164a 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cxx +++ b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.h b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.h index 539f7aaf..0d9f0936 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.h +++ b/vtkm/cont/cuda/internal/DeviceAdapterRuntimeDetectorCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_DeviceAdapterRuntimeDetectorCuda_h #define vtk_m_cont_cuda_internal_DeviceAdapterRuntimeDetectorCuda_h diff --git a/vtkm/cont/cuda/internal/DeviceAdapterTagCuda.h b/vtkm/cont/cuda/internal/DeviceAdapterTagCuda.h index c3917800..efd74e26 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterTagCuda.h +++ b/vtkm/cont/cuda/internal/DeviceAdapterTagCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_DeviceAdapterTagCuda_h #define vtk_m_cont_cuda_internal_DeviceAdapterTagCuda_h diff --git a/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.cu b/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.cu index 94b8a7e0..984fe3ae 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.cu +++ b/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.h b/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.h index a444f550..8e881252 100644 --- a/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.h +++ b/vtkm/cont/cuda/internal/DeviceAdapterTimerImplementationCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_DeviceAdapterTimerImplementationCuda_h #define vtk_m_cont_cuda_internal_DeviceAdapterTimerImplementationCuda_h diff --git a/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.cu b/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.cu index dca8e7d3..6a2d5c78 100644 --- a/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.cu +++ b/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.h b/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.h index 6e04c561..fa52cf53 100644 --- a/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.h +++ b/vtkm/cont/cuda/internal/ExecutionArrayInterfaceBasicCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_ExecutionArrayInterfaceCuda_h #define vtk_m_cont_cuda_internal_ExecutionArrayInterfaceCuda_h diff --git a/vtkm/cont/cuda/internal/MakeThrustIterator.h b/vtkm/cont/cuda/internal/MakeThrustIterator.h index 1f1227d0..0e960e69 100644 --- a/vtkm/cont/cuda/internal/MakeThrustIterator.h +++ b/vtkm/cont/cuda/internal/MakeThrustIterator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_MakeThrustIterator_h #define vtk_m_cont_cuda_internal_MakeThrustIterator_h diff --git a/vtkm/cont/cuda/internal/ThrustExceptionHandler.h b/vtkm/cont/cuda/internal/ThrustExceptionHandler.h index 4af1e25f..57303d97 100644 --- a/vtkm/cont/cuda/internal/ThrustExceptionHandler.h +++ b/vtkm/cont/cuda/internal/ThrustExceptionHandler.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_interal_ThrustExecptionHandler_h #define vtk_m_cont_cuda_interal_ThrustExecptionHandler_h diff --git a/vtkm/cont/cuda/internal/VirtualObjectTransferCuda.h b/vtkm/cont/cuda/internal/VirtualObjectTransferCuda.h index 292bf7a6..0e4e9c47 100644 --- a/vtkm/cont/cuda/internal/VirtualObjectTransferCuda.h +++ b/vtkm/cont/cuda/internal/VirtualObjectTransferCuda.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_VirtualObjectTransferCuda_h #define vtk_m_cont_cuda_internal_VirtualObjectTransferCuda_h diff --git a/vtkm/cont/cuda/internal/testing/CMakeLists.txt b/vtkm/cont/cuda/internal/testing/CMakeLists.txt index 5db248f9..7be1cbe8 100644 --- a/vtkm/cont/cuda/internal/testing/CMakeLists.txt +++ b/vtkm/cont/cuda/internal/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ diff --git a/vtkm/cont/cuda/internal/testing/Testing.h b/vtkm/cont/cuda/internal/testing/Testing.h index 23dba73c..b2bc04e2 100644 --- a/vtkm/cont/cuda/internal/testing/Testing.h +++ b/vtkm/cont/cuda/internal/testing/Testing.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_cuda_internal_Testing_h #define vtk_m_cont_cuda_internal_Testing_h diff --git a/vtkm/cont/cuda/testing/CMakeLists.txt b/vtkm/cont/cuda/testing/CMakeLists.txt index 3d4a87b7..4e21f432 100644 --- a/vtkm/cont/cuda/testing/CMakeLists.txt +++ b/vtkm/cont/cuda/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandle.cu b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandle.cu index e5fe0da4..64d49597 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandle.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandle.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleFancy.cu b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleFancy.cu index d1cb4c4f..6f623db3 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleFancy.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleFancy.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleVirtualCoordinates.cu b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleVirtualCoordinates.cu index babeeeca..2e976d73 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleVirtualCoordinates.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaArrayHandleVirtualCoordinates.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaBitField.cu b/vtkm/cont/cuda/testing/UnitTestCudaBitField.cu index b485f79a..08865926 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaBitField.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaBitField.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorRectilinearGrid.cu b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorRectilinearGrid.cu index b954055d..bb0bb6fa 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorRectilinearGrid.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorRectilinearGrid.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformBins.cu b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformBins.cu index 8c251e73..8e9500b9 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformBins.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformBins.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformGrid.cu b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformGrid.cu index 23d1122f..aeb13635 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformGrid.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaCellLocatorUniformGrid.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaColorTable.cu b/vtkm/cont/cuda/testing/UnitTestCudaColorTable.cu index ae120d16..1999d686 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaColorTable.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaColorTable.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaComputeRange.cu b/vtkm/cont/cuda/testing/UnitTestCudaComputeRange.cu index 20e6f8a7..a6ec06ca 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaComputeRange.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaComputeRange.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaDataSetExplicit.cu b/vtkm/cont/cuda/testing/UnitTestCudaDataSetExplicit.cu index 544fa95f..8fccfa7d 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaDataSetExplicit.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaDataSetExplicit.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaDataSetSingleType.cu b/vtkm/cont/cuda/testing/UnitTestCudaDataSetSingleType.cu index 265871f7..bce4e683 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaDataSetSingleType.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaDataSetSingleType.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaDeviceAdapter.cu b/vtkm/cont/cuda/testing/UnitTestCudaDeviceAdapter.cu index ababbbc0..b7b68be3 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaDeviceAdapter.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaDeviceAdapter.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaGeometry.cu b/vtkm/cont/cuda/testing/UnitTestCudaGeometry.cu index 3c28c8fd..f2e49ec0 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaGeometry.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaGeometry.cu @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaImplicitFunction.cu b/vtkm/cont/cuda/testing/UnitTestCudaImplicitFunction.cu index 909b4fd0..5e4412e3 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaImplicitFunction.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaImplicitFunction.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaMath.cu b/vtkm/cont/cuda/testing/UnitTestCudaMath.cu index a073aba7..3ef8ce61 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaMath.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaMath.cu @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaPointLocatorUniformGrid.cu b/vtkm/cont/cuda/testing/UnitTestCudaPointLocatorUniformGrid.cu index 4b992573..be4914cc 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaPointLocatorUniformGrid.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaPointLocatorUniformGrid.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaShareUserProvidedManagedMemory.cu b/vtkm/cont/cuda/testing/UnitTestCudaShareUserProvidedManagedMemory.cu index 200606a3..d6f2c94e 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaShareUserProvidedManagedMemory.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaShareUserProvidedManagedMemory.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/cuda/testing/UnitTestCudaVirtualObjectHandle.cu b/vtkm/cont/cuda/testing/UnitTestCudaVirtualObjectHandle.cu index 8eba5d12..967e278c 100644 --- a/vtkm/cont/cuda/testing/UnitTestCudaVirtualObjectHandle.cu +++ b/vtkm/cont/cuda/testing/UnitTestCudaVirtualObjectHandle.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/internal/ArrayExportMacros.h b/vtkm/cont/internal/ArrayExportMacros.h index dfdd4ad1..c41c5680 100644 --- a/vtkm/cont/internal/ArrayExportMacros.h +++ b/vtkm/cont/internal/ArrayExportMacros.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayExportMacros_h diff --git a/vtkm/cont/internal/ArrayHandleBasicImpl.cxx b/vtkm/cont/internal/ArrayHandleBasicImpl.cxx index 1f2a01b1..7a7b7c5c 100644 --- a/vtkm/cont/internal/ArrayHandleBasicImpl.cxx +++ b/vtkm/cont/internal/ArrayHandleBasicImpl.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtkm_cont_internal_ArrayHandleImpl_cxx diff --git a/vtkm/cont/internal/ArrayHandleBasicImpl.h b/vtkm/cont/internal/ArrayHandleBasicImpl.h index f4017898..b2dd1640 100644 --- a/vtkm/cont/internal/ArrayHandleBasicImpl.h +++ b/vtkm/cont/internal/ArrayHandleBasicImpl.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayHandleBasicImpl_h diff --git a/vtkm/cont/internal/ArrayHandleBasicImpl.hxx b/vtkm/cont/internal/ArrayHandleBasicImpl.hxx index db37f7b1..67b04c26 100644 --- a/vtkm/cont/internal/ArrayHandleBasicImpl.hxx +++ b/vtkm/cont/internal/ArrayHandleBasicImpl.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayHandleBasicImpl_hxx diff --git a/vtkm/cont/internal/ArrayHandleExecutionManager.h b/vtkm/cont/internal/ArrayHandleExecutionManager.h index 170caea2..a1d033d5 100644 --- a/vtkm/cont/internal/ArrayHandleExecutionManager.h +++ b/vtkm/cont/internal/ArrayHandleExecutionManager.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_exec_ArrayHandleExecutionManager_h #define vtk_m_cont_exec_ArrayHandleExecutionManager_h diff --git a/vtkm/cont/internal/ArrayManagerExecution.h b/vtkm/cont/internal/ArrayManagerExecution.h index 131d29a2..15d59afe 100644 --- a/vtkm/cont/internal/ArrayManagerExecution.h +++ b/vtkm/cont/internal/ArrayManagerExecution.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayManagerExecution_h #define vtk_m_cont_internal_ArrayManagerExecution_h diff --git a/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.cxx b/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.cxx index 1f7f401a..99347cff 100644 --- a/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.cxx +++ b/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.h b/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.h index 10fdafca..4d84b871 100644 --- a/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.h +++ b/vtkm/cont/internal/ArrayManagerExecutionShareWithControl.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayManagerExecutionShareWithControl_h #define vtk_m_cont_internal_ArrayManagerExecutionShareWithControl_h diff --git a/vtkm/cont/internal/ArrayPortalFromIterators.h b/vtkm/cont/internal/ArrayPortalFromIterators.h index fcd81f5e..d1ad904a 100644 --- a/vtkm/cont/internal/ArrayPortalFromIterators.h +++ b/vtkm/cont/internal/ArrayPortalFromIterators.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayPortalFromIterators_h #define vtk_m_cont_internal_ArrayPortalFromIterators_h diff --git a/vtkm/cont/internal/ArrayPortalShrink.h b/vtkm/cont/internal/ArrayPortalShrink.h index 46913610..25897022 100644 --- a/vtkm/cont/internal/ArrayPortalShrink.h +++ b/vtkm/cont/internal/ArrayPortalShrink.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayPortalShrink_h #define vtk_m_cont_internal_ArrayPortalShrink_h diff --git a/vtkm/cont/internal/ArrayTransfer.h b/vtkm/cont/internal/ArrayTransfer.h index 1ef22697..11451db5 100644 --- a/vtkm/cont/internal/ArrayTransfer.h +++ b/vtkm/cont/internal/ArrayTransfer.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ArrayTransfer_h #define vtk_m_cont_internal_ArrayTransfer_h diff --git a/vtkm/cont/internal/AtomicInterfaceControl.h b/vtkm/cont/internal/AtomicInterfaceControl.h index 217d01b6..46005673 100644 --- a/vtkm/cont/internal/AtomicInterfaceControl.h +++ b/vtkm/cont/internal/AtomicInterfaceControl.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_AtomicInterfaceControl_h #define vtk_m_cont_internal_AtomicInterfaceControl_h diff --git a/vtkm/cont/internal/AtomicInterfaceExecution.h b/vtkm/cont/internal/AtomicInterfaceExecution.h index 28913719..eb4243c2 100644 --- a/vtkm/cont/internal/AtomicInterfaceExecution.h +++ b/vtkm/cont/internal/AtomicInterfaceExecution.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_AtomicInterfaceExecution_h #define vtk_m_cont_internal_AtomicInterfaceExecution_h diff --git a/vtkm/cont/internal/CMakeLists.txt b/vtkm/cont/internal/CMakeLists.txt index 77812604..e8951d10 100644 --- a/vtkm/cont/internal/CMakeLists.txt +++ b/vtkm/cont/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/internal/ConnectivityExplicitInternals.h b/vtkm/cont/internal/ConnectivityExplicitInternals.h index 0dc79c02..6f7e4013 100644 --- a/vtkm/cont/internal/ConnectivityExplicitInternals.h +++ b/vtkm/cont/internal/ConnectivityExplicitInternals.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ConnectivityExplicitInternals_h #define vtk_m_cont_internal_ConnectivityExplicitInternals_h diff --git a/vtkm/cont/internal/DeviceAdapterAlgorithmGeneral.h b/vtkm/cont/internal/DeviceAdapterAlgorithmGeneral.h index d283214f..e3ad4ac6 100644 --- a/vtkm/cont/internal/DeviceAdapterAlgorithmGeneral.h +++ b/vtkm/cont/internal/DeviceAdapterAlgorithmGeneral.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DeviceAdapterAlgorithmGeneral_h diff --git a/vtkm/cont/internal/DeviceAdapterAtomicArrayImplementation.h b/vtkm/cont/internal/DeviceAdapterAtomicArrayImplementation.h index 78fdd42e..6e7c3130 100644 --- a/vtkm/cont/internal/DeviceAdapterAtomicArrayImplementation.h +++ b/vtkm/cont/internal/DeviceAdapterAtomicArrayImplementation.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DeviceAdapterAtomicArrayImplementation_h diff --git a/vtkm/cont/internal/DeviceAdapterError.h b/vtkm/cont/internal/DeviceAdapterError.h index b059c384..b94b570c 100644 --- a/vtkm/cont/internal/DeviceAdapterError.h +++ b/vtkm/cont/internal/DeviceAdapterError.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DeviceAdapterError_h #define vtk_m_cont_internal_DeviceAdapterError_h diff --git a/vtkm/cont/internal/DeviceAdapterListHelpers.h b/vtkm/cont/internal/DeviceAdapterListHelpers.h index d63f18bc..a76f2ff8 100644 --- a/vtkm/cont/internal/DeviceAdapterListHelpers.h +++ b/vtkm/cont/internal/DeviceAdapterListHelpers.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DeviceAdapterListHelpers_h #define vtk_m_cont_internal_DeviceAdapterListHelpers_h diff --git a/vtkm/cont/internal/DeviceAdapterTag.cxx b/vtkm/cont/internal/DeviceAdapterTag.cxx index 2f39f20b..73510d76 100644 --- a/vtkm/cont/internal/DeviceAdapterTag.cxx +++ b/vtkm/cont/internal/DeviceAdapterTag.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/DynamicTransform.h b/vtkm/cont/internal/DynamicTransform.h index f208b71b..df2ce11e 100644 --- a/vtkm/cont/internal/DynamicTransform.h +++ b/vtkm/cont/internal/DynamicTransform.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_DynamicTransform_h #define vtk_m_cont_internal_DynamicTransform_h diff --git a/vtkm/cont/internal/FunctorsGeneral.h b/vtkm/cont/internal/FunctorsGeneral.h index 3b4ea583..895e74fc 100644 --- a/vtkm/cont/internal/FunctorsGeneral.h +++ b/vtkm/cont/internal/FunctorsGeneral.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_FunctorsGeneral_h #define vtk_m_cont_internal_FunctorsGeneral_h diff --git a/vtkm/cont/internal/IteratorFromArrayPortal.h b/vtkm/cont/internal/IteratorFromArrayPortal.h index 194760e1..4407c43d 100644 --- a/vtkm/cont/internal/IteratorFromArrayPortal.h +++ b/vtkm/cont/internal/IteratorFromArrayPortal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_IteratorFromArrayPortal_h #define vtk_m_cont_internal_IteratorFromArrayPortal_h diff --git a/vtkm/cont/internal/KXSort.h b/vtkm/cont/internal/KXSort.h index e1c8ef18..08f21124 100644 --- a/vtkm/cont/internal/KXSort.h +++ b/vtkm/cont/internal/KXSort.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ /* The MIT License Copyright (c) 2016 Dinghua Li diff --git a/vtkm/cont/internal/OptionParser.h b/vtkm/cont/internal/OptionParser.h index 861a1dc8..21bf9e0b 100644 --- a/vtkm/cont/internal/OptionParser.h +++ b/vtkm/cont/internal/OptionParser.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_internal_OptionParser_h #define vtk_m_cont_internal_OptionParser_h diff --git a/vtkm/cont/internal/ParallelRadixSort.h b/vtkm/cont/internal/ParallelRadixSort.h index 6ed9f8df..b9684aa6 100644 --- a/vtkm/cont/internal/ParallelRadixSort.h +++ b/vtkm/cont/internal/ParallelRadixSort.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ // Copyright 2010, Takuya Akiba // All rights reserved. diff --git a/vtkm/cont/internal/ParallelRadixSortInterface.h b/vtkm/cont/internal/ParallelRadixSortInterface.h index 1295509c..d4309d3f 100644 --- a/vtkm/cont/internal/ParallelRadixSortInterface.h +++ b/vtkm/cont/internal/ParallelRadixSortInterface.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ParallelRadixSortInterface_h diff --git a/vtkm/cont/internal/ReverseConnectivityBuilder.h b/vtkm/cont/internal/ReverseConnectivityBuilder.h index 2d5ad5b5..01fe7f12 100644 --- a/vtkm/cont/internal/ReverseConnectivityBuilder.h +++ b/vtkm/cont/internal/ReverseConnectivityBuilder.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_ReverseConnectivityBuilder_h #define vtk_m_cont_internal_ReverseConnectivityBuilder_h diff --git a/vtkm/cont/internal/StorageError.h b/vtkm/cont/internal/StorageError.h index 795d68ac..694e3187 100644 --- a/vtkm/cont/internal/StorageError.h +++ b/vtkm/cont/internal/StorageError.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtkm_cont_internal_StorageError_h #define vtkm_cont_internal_StorageError_h diff --git a/vtkm/cont/internal/TransferInfo.cxx b/vtkm/cont/internal/TransferInfo.cxx index f9783a65..011be3e2 100644 --- a/vtkm/cont/internal/TransferInfo.cxx +++ b/vtkm/cont/internal/TransferInfo.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/TransferInfo.h b/vtkm/cont/internal/TransferInfo.h index 86880a7f..63a9cf28 100644 --- a/vtkm/cont/internal/TransferInfo.h +++ b/vtkm/cont/internal/TransferInfo.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_TransferInfo_h #define vtk_m_cont_internal_TransferInfo_h diff --git a/vtkm/cont/internal/VariantArrayHandleContainer.h b/vtkm/cont/internal/VariantArrayHandleContainer.h index 062ab707..90cd5118 100644 --- a/vtkm/cont/internal/VariantArrayHandleContainer.h +++ b/vtkm/cont/internal/VariantArrayHandleContainer.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_VariantArrayHandleContainer_h #define vtk_m_cont_VariantArrayHandleContainer_h diff --git a/vtkm/cont/internal/VirtualObjectTransfer.cxx b/vtkm/cont/internal/VirtualObjectTransfer.cxx index 488754e8..c7d0edc9 100644 --- a/vtkm/cont/internal/VirtualObjectTransfer.cxx +++ b/vtkm/cont/internal/VirtualObjectTransfer.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/VirtualObjectTransfer.h b/vtkm/cont/internal/VirtualObjectTransfer.h index 49cf8801..54229b7e 100644 --- a/vtkm/cont/internal/VirtualObjectTransfer.h +++ b/vtkm/cont/internal/VirtualObjectTransfer.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_VirtualObjectTransfer_h #define vtk_m_cont_internal_VirtualObjectTransfer_h diff --git a/vtkm/cont/internal/VirtualObjectTransferShareWithControl.h b/vtkm/cont/internal/VirtualObjectTransferShareWithControl.h index 4c666705..49f8480d 100644 --- a/vtkm/cont/internal/VirtualObjectTransferShareWithControl.h +++ b/vtkm/cont/internal/VirtualObjectTransferShareWithControl.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_internal_VirtualObjectTransferShareWithControl_h #define vtk_m_cont_internal_VirtualObjectTransferShareWithControl_h diff --git a/vtkm/cont/internal/testing/CMakeLists.txt b/vtkm/cont/internal/testing/CMakeLists.txt index 762ad01c..adc68bcc 100644 --- a/vtkm/cont/internal/testing/CMakeLists.txt +++ b/vtkm/cont/internal/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ diff --git a/vtkm/cont/internal/testing/UnitTestArrayManagerExecutionShareWithControl.cxx b/vtkm/cont/internal/testing/UnitTestArrayManagerExecutionShareWithControl.cxx index a06b416b..484fa164 100644 --- a/vtkm/cont/internal/testing/UnitTestArrayManagerExecutionShareWithControl.cxx +++ b/vtkm/cont/internal/testing/UnitTestArrayManagerExecutionShareWithControl.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/testing/UnitTestArrayPortalFromIterators.cxx b/vtkm/cont/internal/testing/UnitTestArrayPortalFromIterators.cxx index 31fa2645..2e7fa882 100644 --- a/vtkm/cont/internal/testing/UnitTestArrayPortalFromIterators.cxx +++ b/vtkm/cont/internal/testing/UnitTestArrayPortalFromIterators.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/testing/UnitTestDynamicTransform.cxx b/vtkm/cont/internal/testing/UnitTestDynamicTransform.cxx index 059c17df..f6faffed 100644 --- a/vtkm/cont/internal/testing/UnitTestDynamicTransform.cxx +++ b/vtkm/cont/internal/testing/UnitTestDynamicTransform.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/internal/testing/UnitTestIteratorFromArrayPortal.cxx b/vtkm/cont/internal/testing/UnitTestIteratorFromArrayPortal.cxx index c595c437..2a8466ac 100644 --- a/vtkm/cont/internal/testing/UnitTestIteratorFromArrayPortal.cxx +++ b/vtkm/cont/internal/testing/UnitTestIteratorFromArrayPortal.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/CMakeLists.txt b/vtkm/cont/openmp/CMakeLists.txt index a50f56b1..546bc08b 100644 --- a/vtkm/cont/openmp/CMakeLists.txt +++ b/vtkm/cont/openmp/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/openmp/DeviceAdapterOpenMP.h b/vtkm/cont/openmp/DeviceAdapterOpenMP.h index 58d2dbd9..9204eea5 100644 --- a/vtkm/cont/openmp/DeviceAdapterOpenMP.h +++ b/vtkm/cont/openmp/DeviceAdapterOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_DeviceAdapterOpenMP_h diff --git a/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.cxx b/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.cxx index de12f650..9602485b 100644 --- a/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.cxx +++ b/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_openmp_internal_ArrayManagerExecutionOpenMP_cxx diff --git a/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.h b/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.h index 01a08c75..381fbf31 100644 --- a/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.h +++ b/vtkm/cont/openmp/internal/ArrayManagerExecutionOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_ArrayManagerExecutionOpenMP_h diff --git a/vtkm/cont/openmp/internal/AtomicInterfaceExecutionOpenMP.h b/vtkm/cont/openmp/internal/AtomicInterfaceExecutionOpenMP.h index 153bb0c8..b4c74b0c 100644 --- a/vtkm/cont/openmp/internal/AtomicInterfaceExecutionOpenMP.h +++ b/vtkm/cont/openmp/internal/AtomicInterfaceExecutionOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_AtomicInterfaceExecutionOpenMP_h #define vtk_m_cont_openmp_internal_AtomicInterfaceExecutionOpenMP_h diff --git a/vtkm/cont/openmp/internal/CMakeLists.txt b/vtkm/cont/openmp/internal/CMakeLists.txt index 21dfcfcd..907452a0 100644 --- a/vtkm/cont/openmp/internal/CMakeLists.txt +++ b/vtkm/cont/openmp/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.cxx b/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.cxx index 4929109d..6e6d04ab 100644 --- a/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.cxx +++ b/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.h b/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.h index bc583c80..47804292 100644 --- a/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.h +++ b/vtkm/cont/openmp/internal/DeviceAdapterAlgorithmOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_DeviceAdapterAlgorithmOpenMP_h #define vtk_m_cont_openmp_internal_DeviceAdapterAlgorithmOpenMP_h diff --git a/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.cxx b/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.cxx index 8e23f485..b86c5499 100644 --- a/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.cxx +++ b/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.h b/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.h index 5dbe23c5..dab7d91f 100644 --- a/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.h +++ b/vtkm/cont/openmp/internal/DeviceAdapterRuntimeDetectorOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_DeviceAdapterRuntimeDetector_h #define vtk_m_cont_openmp_internal_DeviceAdapterRuntimeDetector_h diff --git a/vtkm/cont/openmp/internal/DeviceAdapterTagOpenMP.h b/vtkm/cont/openmp/internal/DeviceAdapterTagOpenMP.h index 1e059d4f..f1bfb4a5 100644 --- a/vtkm/cont/openmp/internal/DeviceAdapterTagOpenMP.h +++ b/vtkm/cont/openmp/internal/DeviceAdapterTagOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_DeviceAdapterTagOpenMP_h diff --git a/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.cxx b/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.cxx index 182329ce..266e519e 100644 --- a/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.cxx +++ b/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.h b/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.h index 198ecca7..4aeb982f 100644 --- a/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.h +++ b/vtkm/cont/openmp/internal/ExecutionArrayInterfaceBasicOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_ExecutionArrayInterfaceBasicOpenMP_h #define vtk_m_cont_openmp_internal_ExecutionArrayInterfaceBasicOpenMP_h diff --git a/vtkm/cont/openmp/internal/FunctorsOpenMP.h b/vtkm/cont/openmp/internal/FunctorsOpenMP.h index 145ba355..76ac0159 100644 --- a/vtkm/cont/openmp/internal/FunctorsOpenMP.h +++ b/vtkm/cont/openmp/internal/FunctorsOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_FunctorsOpenMP_h #define vtk_m_cont_openmp_internal_FunctorsOpenMP_h diff --git a/vtkm/cont/openmp/internal/ParallelQuickSortOpenMP.h b/vtkm/cont/openmp/internal/ParallelQuickSortOpenMP.h index f0cc718c..ad813274 100644 --- a/vtkm/cont/openmp/internal/ParallelQuickSortOpenMP.h +++ b/vtkm/cont/openmp/internal/ParallelQuickSortOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.cxx b/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.cxx index 25c3a4e2..891d92ab 100644 --- a/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.cxx +++ b/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.h b/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.h index 22ad69b4..77b657dc 100644 --- a/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.h +++ b/vtkm/cont/openmp/internal/ParallelRadixSortOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_ParallelRadixSortOpenMP_h diff --git a/vtkm/cont/openmp/internal/ParallelScanOpenMP.h b/vtkm/cont/openmp/internal/ParallelScanOpenMP.h index ed48d43e..9b0a1ea1 100644 --- a/vtkm/cont/openmp/internal/ParallelScanOpenMP.h +++ b/vtkm/cont/openmp/internal/ParallelScanOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/ParallelSortOpenMP.h b/vtkm/cont/openmp/internal/ParallelSortOpenMP.h index 9592be49..e06d1762 100644 --- a/vtkm/cont/openmp/internal/ParallelSortOpenMP.h +++ b/vtkm/cont/openmp/internal/ParallelSortOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/internal/VirtualObjectTransferOpenMP.h b/vtkm/cont/openmp/internal/VirtualObjectTransferOpenMP.h index 348d31df..717ce41a 100644 --- a/vtkm/cont/openmp/internal/VirtualObjectTransferOpenMP.h +++ b/vtkm/cont/openmp/internal/VirtualObjectTransferOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_openmp_internal_VirtualObjectTransferOpenMP_h diff --git a/vtkm/cont/openmp/testing/CMakeLists.txt b/vtkm/cont/openmp/testing/CMakeLists.txt index 0517980d..8f9657c4 100644 --- a/vtkm/cont/openmp/testing/CMakeLists.txt +++ b/vtkm/cont/openmp/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandle.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandle.cxx index 94fa6857..870e722b 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandle.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleFancy.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleFancy.cxx index 4869ac49..11b51d2d 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleFancy.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleFancy.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleVirtualCoordinates.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleVirtualCoordinates.cxx index d45b0ca8..84907593 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleVirtualCoordinates.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPArrayHandleVirtualCoordinates.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPBitField.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPBitField.cxx index 4978fac9..98dc91d6 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPBitField.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPBitField.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorRectilinearGrid.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorRectilinearGrid.cxx index 3883a33c..69947454 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorRectilinearGrid.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorRectilinearGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformBins.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformBins.cxx index 226637bc..ad35a355 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformBins.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformBins.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformGrid.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformGrid.cxx index 0c00f29f..781635ef 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformGrid.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPCellLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPColorTable.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPColorTable.cxx index a964a6cb..8d6c42aa 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPColorTable.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPColorTable.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPComputeRange.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPComputeRange.cxx index 33ad2700..5740206d 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPComputeRange.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPComputeRange.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetExplicit.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetExplicit.cxx index f7891134..7de744bd 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetExplicit.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetSingleType.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetSingleType.cxx index 7b6c2981..e670544b 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetSingleType.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPDataSetSingleType.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPDeviceAdapter.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPDeviceAdapter.cxx index 5173c8c0..f0a3d723 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPDeviceAdapter.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPDeviceAdapter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPImplicitFunction.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPImplicitFunction.cxx index 90e32351..18b2cfdd 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPImplicitFunction.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPImplicitFunction.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPPointLocatorUniformGrid.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPPointLocatorUniformGrid.cxx index 29eae38f..e9c020e9 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPPointLocatorUniformGrid.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPPointLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/openmp/testing/UnitTestOpenMPVirtualObjectHandle.cxx b/vtkm/cont/openmp/testing/UnitTestOpenMPVirtualObjectHandle.cxx index 6f22ccba..1a9e3091 100644 --- a/vtkm/cont/openmp/testing/UnitTestOpenMPVirtualObjectHandle.cxx +++ b/vtkm/cont/openmp/testing/UnitTestOpenMPVirtualObjectHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/serial/CMakeLists.txt b/vtkm/cont/serial/CMakeLists.txt index c2ccf222..299d4a5a 100644 --- a/vtkm/cont/serial/CMakeLists.txt +++ b/vtkm/cont/serial/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/serial/DeviceAdapterSerial.h b/vtkm/cont/serial/DeviceAdapterSerial.h index 43192e4f..c000bef6 100644 --- a/vtkm/cont/serial/DeviceAdapterSerial.h +++ b/vtkm/cont/serial/DeviceAdapterSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_DeviceAdapterSerial_h #define vtk_m_cont_serial_DeviceAdapterSerial_h diff --git a/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.cxx b/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.cxx index 699e1486..84637d26 100644 --- a/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.cxx +++ b/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_serial_internal_ArrayManagerExecutionSerial_cxx diff --git a/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.h b/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.h index 886a8c44..6a7e70d6 100644 --- a/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.h +++ b/vtkm/cont/serial/internal/ArrayManagerExecutionSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_ArrayManagerExecutionSerial_h #define vtk_m_cont_serial_internal_ArrayManagerExecutionSerial_h diff --git a/vtkm/cont/serial/internal/AtomicInterfaceExecutionSerial.h b/vtkm/cont/serial/internal/AtomicInterfaceExecutionSerial.h index 5c26a3a7..3260a342 100644 --- a/vtkm/cont/serial/internal/AtomicInterfaceExecutionSerial.h +++ b/vtkm/cont/serial/internal/AtomicInterfaceExecutionSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_AtomicInterfaceExecutionSerial_h #define vtk_m_cont_serial_internal_AtomicInterfaceExecutionSerial_h diff --git a/vtkm/cont/serial/internal/CMakeLists.txt b/vtkm/cont/serial/internal/CMakeLists.txt index 7cef6fc0..28995ac5 100644 --- a/vtkm/cont/serial/internal/CMakeLists.txt +++ b/vtkm/cont/serial/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.cxx b/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.cxx index e8099497..31c4945d 100644 --- a/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.cxx +++ b/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.h b/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.h index efddcff0..84a57d8c 100644 --- a/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.h +++ b/vtkm/cont/serial/internal/DeviceAdapterAlgorithmSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_DeviceAdapterAlgorithmSerial_h #define vtk_m_cont_serial_internal_DeviceAdapterAlgorithmSerial_h diff --git a/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.cxx b/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.cxx index 99fe3058..cdd5f9d9 100644 --- a/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.cxx +++ b/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.h b/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.h index ecf525a0..eb508551 100644 --- a/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.h +++ b/vtkm/cont/serial/internal/DeviceAdapterRuntimeDetectorSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_DeviceAdapterRuntimeDetector_h #define vtk_m_cont_serial_internal_DeviceAdapterRuntimeDetector_h diff --git a/vtkm/cont/serial/internal/DeviceAdapterTagSerial.h b/vtkm/cont/serial/internal/DeviceAdapterTagSerial.h index 7a7def7e..80d87be4 100644 --- a/vtkm/cont/serial/internal/DeviceAdapterTagSerial.h +++ b/vtkm/cont/serial/internal/DeviceAdapterTagSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_DeviceAdapterTagSerial_h #define vtk_m_cont_serial_internal_DeviceAdapterTagSerial_h diff --git a/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.cxx b/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.cxx index 5d226a94..bd9514aa 100644 --- a/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.cxx +++ b/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.h b/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.h index 16b7bb71..5f356e89 100644 --- a/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.h +++ b/vtkm/cont/serial/internal/ExecutionArrayInterfaceBasicSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_ExecutionArrayInterfaceBasicSerial_h #define vtk_m_cont_serial_internal_ExecutionArrayInterfaceBasicSerial_h diff --git a/vtkm/cont/serial/internal/VirtualObjectTransferSerial.h b/vtkm/cont/serial/internal/VirtualObjectTransferSerial.h index edb36179..4fd88fd3 100644 --- a/vtkm/cont/serial/internal/VirtualObjectTransferSerial.h +++ b/vtkm/cont/serial/internal/VirtualObjectTransferSerial.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_serial_internal_VirtualObjectTransferSerial_h #define vtk_m_cont_serial_internal_VirtualObjectTransferSerial_h diff --git a/vtkm/cont/serial/testing/CMakeLists.txt b/vtkm/cont/serial/testing/CMakeLists.txt index 2b3f693d..dba44940 100644 --- a/vtkm/cont/serial/testing/CMakeLists.txt +++ b/vtkm/cont/serial/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/cont/serial/testing/UnitTestSerialArrayHandle.cxx b/vtkm/cont/serial/testing/UnitTestSerialArrayHandle.cxx index 32c15d57..ce5fe69e 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialArrayHandle.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialArrayHandleFancy.cxx b/vtkm/cont/serial/testing/UnitTestSerialArrayHandleFancy.cxx index 8e41c7a5..4c1bc2ad 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialArrayHandleFancy.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialArrayHandleFancy.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialArrayHandleVirtualCoordinates.cxx b/vtkm/cont/serial/testing/UnitTestSerialArrayHandleVirtualCoordinates.cxx index af9f1e4f..9a538e36 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialArrayHandleVirtualCoordinates.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialArrayHandleVirtualCoordinates.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialBitField.cxx b/vtkm/cont/serial/testing/UnitTestSerialBitField.cxx index fe3f0f17..d47b8af4 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialBitField.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialBitField.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorRectilinearGrid.cxx b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorRectilinearGrid.cxx index dcc502ae..7fa5181d 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorRectilinearGrid.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorRectilinearGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformBins.cxx b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformBins.cxx index b7f3a860..4857f843 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformBins.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformBins.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformGrid.cxx b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformGrid.cxx index 407241fa..5e70e909 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformGrid.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialCellLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialColorTable.cxx b/vtkm/cont/serial/testing/UnitTestSerialColorTable.cxx index 7278142b..17b0e5a3 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialColorTable.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialColorTable.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialComputeRange.cxx b/vtkm/cont/serial/testing/UnitTestSerialComputeRange.cxx index 96cd398c..8b090770 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialComputeRange.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialComputeRange.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialDataSetExplicit.cxx b/vtkm/cont/serial/testing/UnitTestSerialDataSetExplicit.cxx index 48a379f5..fd8e2d1c 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialDataSetExplicit.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialDataSetExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialDataSetSingleType.cxx b/vtkm/cont/serial/testing/UnitTestSerialDataSetSingleType.cxx index 7f9f0216..b1e168a8 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialDataSetSingleType.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialDataSetSingleType.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialDeviceAdapter.cxx b/vtkm/cont/serial/testing/UnitTestSerialDeviceAdapter.cxx index c38b281d..39d661a9 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialDeviceAdapter.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialDeviceAdapter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialGeometry.cxx b/vtkm/cont/serial/testing/UnitTestSerialGeometry.cxx index dc015de6..4e07b3df 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialGeometry.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialGeometry.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialImplicitFunction.cxx b/vtkm/cont/serial/testing/UnitTestSerialImplicitFunction.cxx index dab23591..d350d1ab 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialImplicitFunction.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialImplicitFunction.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialPointLocatorUniformGrid.cxx b/vtkm/cont/serial/testing/UnitTestSerialPointLocatorUniformGrid.cxx index 5e74653c..18504d5d 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialPointLocatorUniformGrid.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialPointLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/serial/testing/UnitTestSerialVirtualObjectHandle.cxx b/vtkm/cont/serial/testing/UnitTestSerialVirtualObjectHandle.cxx index 9c9fb891..bfec4657 100644 --- a/vtkm/cont/serial/testing/UnitTestSerialVirtualObjectHandle.cxx +++ b/vtkm/cont/serial/testing/UnitTestSerialVirtualObjectHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/CMakeLists.txt b/vtkm/cont/tbb/CMakeLists.txt index 6ad70fdc..c79edd13 100644 --- a/vtkm/cont/tbb/CMakeLists.txt +++ b/vtkm/cont/tbb/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/tbb/DeviceAdapterTBB.h b/vtkm/cont/tbb/DeviceAdapterTBB.h index 6344c2f4..f870fe37 100644 --- a/vtkm/cont/tbb/DeviceAdapterTBB.h +++ b/vtkm/cont/tbb/DeviceAdapterTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_DeviceAdapterTBB_h #define vtk_m_cont_tbb_DeviceAdapterTBB_h diff --git a/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.cxx b/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.cxx index bb5320e1..95f49072 100644 --- a/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.cxx +++ b/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #define vtk_m_cont_tbb_internal_ArrayManagerExecutionTBB_cxx diff --git a/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.h b/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.h index 46add0ca..718bf257 100644 --- a/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.h +++ b/vtkm/cont/tbb/internal/ArrayManagerExecutionTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_ArrayManagerExecutionTBB_h #define vtk_m_cont_tbb_internal_ArrayManagerExecutionTBB_h diff --git a/vtkm/cont/tbb/internal/AtomicInterfaceExecutionTBB.h b/vtkm/cont/tbb/internal/AtomicInterfaceExecutionTBB.h index b1cf1ed8..8ecd7596 100644 --- a/vtkm/cont/tbb/internal/AtomicInterfaceExecutionTBB.h +++ b/vtkm/cont/tbb/internal/AtomicInterfaceExecutionTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_AtomicInterfaceExecutionTBB_h #define vtk_m_cont_tbb_internal_AtomicInterfaceExecutionTBB_h diff --git a/vtkm/cont/tbb/internal/CMakeLists.txt b/vtkm/cont/tbb/internal/CMakeLists.txt index b27d7cd3..32289294 100644 --- a/vtkm/cont/tbb/internal/CMakeLists.txt +++ b/vtkm/cont/tbb/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.cxx b/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.cxx index e2068ad3..0b32432a 100644 --- a/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.cxx +++ b/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.h b/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.h index 89a963f7..18c778a4 100644 --- a/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.h +++ b/vtkm/cont/tbb/internal/DeviceAdapterAlgorithmTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_DeviceAdapterAlgorithmTBB_h #define vtk_m_cont_tbb_internal_DeviceAdapterAlgorithmTBB_h diff --git a/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.cxx b/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.cxx index 1c7e979a..3422801e 100644 --- a/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.cxx +++ b/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include namespace vtkm diff --git a/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.h b/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.h index a68afbf8..58f05222 100644 --- a/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.h +++ b/vtkm/cont/tbb/internal/DeviceAdapterRuntimeDetectorTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_DeviceAdapterRuntimeDetector_h #define vtk_m_cont_tbb_internal_DeviceAdapterRuntimeDetector_h diff --git a/vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h b/vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h index cc4d004d..198b7f43 100644 --- a/vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h +++ b/vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_DeviceAdapterTagTBB_h #define vtk_m_cont_tbb_internal_DeviceAdapterTagTBB_h diff --git a/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.cxx b/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.cxx index 32208239..a1bd8934 100644 --- a/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.cxx +++ b/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.h b/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.h index 591f5597..f9a84732 100644 --- a/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.h +++ b/vtkm/cont/tbb/internal/ExecutionArrayInterfaceBasicTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_ExecutionArrayInterfaceBasicTBB_h #define vtk_m_cont_tbb_internal_ExecutionArrayInterfaceBasicTBB_h diff --git a/vtkm/cont/tbb/internal/FunctorsTBB.h b/vtkm/cont/tbb/internal/FunctorsTBB.h index 9d996ffe..46f60518 100644 --- a/vtkm/cont/tbb/internal/FunctorsTBB.h +++ b/vtkm/cont/tbb/internal/FunctorsTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_FunctorsTBB_h #define vtk_m_cont_tbb_internal_FunctorsTBB_h diff --git a/vtkm/cont/tbb/internal/ParallelSortTBB.cxx b/vtkm/cont/tbb/internal/ParallelSortTBB.cxx index 032ae2ba..3076b3a9 100644 --- a/vtkm/cont/tbb/internal/ParallelSortTBB.cxx +++ b/vtkm/cont/tbb/internal/ParallelSortTBB.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ // Copyright 2010, Takuya Akiba // All rights reserved. diff --git a/vtkm/cont/tbb/internal/ParallelSortTBB.h b/vtkm/cont/tbb/internal/ParallelSortTBB.h index e9dc1768..8a630235 100644 --- a/vtkm/cont/tbb/internal/ParallelSortTBB.h +++ b/vtkm/cont/tbb/internal/ParallelSortTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_ParallelSort_h diff --git a/vtkm/cont/tbb/internal/VirtualObjectTransferTBB.h b/vtkm/cont/tbb/internal/VirtualObjectTransferTBB.h index eccf3b54..a420e152 100644 --- a/vtkm/cont/tbb/internal/VirtualObjectTransferTBB.h +++ b/vtkm/cont/tbb/internal/VirtualObjectTransferTBB.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_tbb_internal_VirtualObjectTransferTBB_h #define vtk_m_cont_tbb_internal_VirtualObjectTransferTBB_h diff --git a/vtkm/cont/tbb/testing/CMakeLists.txt b/vtkm/cont/tbb/testing/CMakeLists.txt index f5b93d73..eb2c8f6d 100644 --- a/vtkm/cont/tbb/testing/CMakeLists.txt +++ b/vtkm/cont/tbb/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandle.cxx b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandle.cxx index 1ced9bd3..88a68aca 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandle.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleFancy.cxx b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleFancy.cxx index acec3c0b..f37c057e 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleFancy.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleFancy.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleVirtualCoordinates.cxx b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleVirtualCoordinates.cxx index 0766281c..6c4abb24 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleVirtualCoordinates.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBArrayHandleVirtualCoordinates.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBBitField.cxx b/vtkm/cont/tbb/testing/UnitTestTBBBitField.cxx index a6fe8740..8ef83903 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBBitField.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBBitField.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorRectilinearGrid.cxx b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorRectilinearGrid.cxx index 2b2c58ee..ad251ec3 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorRectilinearGrid.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorRectilinearGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformBins.cxx b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformBins.cxx index f4292b18..712972de 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformBins.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformBins.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformGrid.cxx b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformGrid.cxx index fc4a4e80..3062b9ea 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformGrid.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBCellLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBColorTable.cxx b/vtkm/cont/tbb/testing/UnitTestTBBColorTable.cxx index 8be98e8e..7609a594 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBColorTable.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBColorTable.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBComputeRange.cxx b/vtkm/cont/tbb/testing/UnitTestTBBComputeRange.cxx index ba408a19..9c83681b 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBComputeRange.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBComputeRange.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBDataSetExplicit.cxx b/vtkm/cont/tbb/testing/UnitTestTBBDataSetExplicit.cxx index 1b652c72..98484376 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBDataSetExplicit.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBDataSetExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBDataSetSingleType.cxx b/vtkm/cont/tbb/testing/UnitTestTBBDataSetSingleType.cxx index b2bcefff..eac328a3 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBDataSetSingleType.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBDataSetSingleType.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBDeviceAdapter.cxx b/vtkm/cont/tbb/testing/UnitTestTBBDeviceAdapter.cxx index 613bfda6..51c7cfff 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBDeviceAdapter.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBDeviceAdapter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBImplicitFunction.cxx b/vtkm/cont/tbb/testing/UnitTestTBBImplicitFunction.cxx index 0365f03a..7cf0a9eb 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBImplicitFunction.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBImplicitFunction.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBPointLocatorUniformGrid.cxx b/vtkm/cont/tbb/testing/UnitTestTBBPointLocatorUniformGrid.cxx index c444c687..7a11498c 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBPointLocatorUniformGrid.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBPointLocatorUniformGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/tbb/testing/UnitTestTBBVirtualObjectHandle.cxx b/vtkm/cont/tbb/testing/UnitTestTBBVirtualObjectHandle.cxx index d1bd8681..de455075 100644 --- a/vtkm/cont/tbb/testing/UnitTestTBBVirtualObjectHandle.cxx +++ b/vtkm/cont/tbb/testing/UnitTestTBBVirtualObjectHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/CMakeLists.txt b/vtkm/cont/testing/CMakeLists.txt index 655a25a4..dd29436d 100644 --- a/vtkm/cont/testing/CMakeLists.txt +++ b/vtkm/cont/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/cont/testing/ExplicitTestData.h b/vtkm/cont/testing/ExplicitTestData.h index 0352cf29..c00e8ea3 100644 --- a/vtkm/cont/testing/ExplicitTestData.h +++ b/vtkm/cont/testing/ExplicitTestData.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/MakeTestDataSet.h b/vtkm/cont/testing/MakeTestDataSet.h index 81bb6e86..f2e7b597 100644 --- a/vtkm/cont/testing/MakeTestDataSet.h +++ b/vtkm/cont/testing/MakeTestDataSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_MakeTestDataSet_h diff --git a/vtkm/cont/testing/Testing.h b/vtkm/cont/testing/Testing.h index 9fe8af51..66e21c3e 100644 --- a/vtkm/cont/testing/Testing.h +++ b/vtkm/cont/testing/Testing.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_Testing_h #define vtk_m_cont_testing_Testing_h diff --git a/vtkm/cont/testing/TestingArrayHandleVirtualCoordinates.h b/vtkm/cont/testing/TestingArrayHandleVirtualCoordinates.h index 8d8d7969..7c71c033 100644 --- a/vtkm/cont/testing/TestingArrayHandleVirtualCoordinates.h +++ b/vtkm/cont/testing/TestingArrayHandleVirtualCoordinates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingArrayHandleVirtualCoordinates_h #define vtk_m_cont_testing_TestingArrayHandleVirtualCoordinates_h diff --git a/vtkm/cont/testing/TestingArrayHandles.h b/vtkm/cont/testing/TestingArrayHandles.h index f0e0c260..315bc9ff 100644 --- a/vtkm/cont/testing/TestingArrayHandles.h +++ b/vtkm/cont/testing/TestingArrayHandles.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingArrayHandles_h #define vtk_m_cont_testing_TestingArrayHandles_h diff --git a/vtkm/cont/testing/TestingBitField.h b/vtkm/cont/testing/TestingBitField.h index 61f0df4c..ead8d290 100644 --- a/vtkm/cont/testing/TestingBitField.h +++ b/vtkm/cont/testing/TestingBitField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingBitFields_h #define vtk_m_cont_testing_TestingBitFields_h diff --git a/vtkm/cont/testing/TestingCellLocatorRectilinearGrid.h b/vtkm/cont/testing/TestingCellLocatorRectilinearGrid.h index 304620b9..86b6c3ef 100644 --- a/vtkm/cont/testing/TestingCellLocatorRectilinearGrid.h +++ b/vtkm/cont/testing/TestingCellLocatorRectilinearGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingCellLocatorRectilinearGrid_h #define vtk_m_cont_testing_TestingCellLocatorRectilinearGrid_h diff --git a/vtkm/cont/testing/TestingCellLocatorUniformBins.h b/vtkm/cont/testing/TestingCellLocatorUniformBins.h index 6eaa3685..281f8858 100644 --- a/vtkm/cont/testing/TestingCellLocatorUniformBins.h +++ b/vtkm/cont/testing/TestingCellLocatorUniformBins.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingCellLocatorUniformBins_h #define vtk_m_cont_testing_TestingCellLocatorUniformBins_h diff --git a/vtkm/cont/testing/TestingCellLocatorUniformGrid.h b/vtkm/cont/testing/TestingCellLocatorUniformGrid.h index 9b1e3f5d..c9f65ad1 100644 --- a/vtkm/cont/testing/TestingCellLocatorUniformGrid.h +++ b/vtkm/cont/testing/TestingCellLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingCellLocatorUniformGrid_h #define vtk_m_cont_testing_TestingCellLocatorUniformGrid_h diff --git a/vtkm/cont/testing/TestingColorTable.h b/vtkm/cont/testing/TestingColorTable.h index e20dd57e..1e6c726b 100644 --- a/vtkm/cont/testing/TestingColorTable.h +++ b/vtkm/cont/testing/TestingColorTable.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingColorTable_h #define vtk_m_cont_testing_TestingColorTable_h diff --git a/vtkm/cont/testing/TestingComputeRange.h b/vtkm/cont/testing/TestingComputeRange.h index d49b59f4..e66b8d4a 100644 --- a/vtkm/cont/testing/TestingComputeRange.h +++ b/vtkm/cont/testing/TestingComputeRange.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingComputeRange_h #define vtk_m_cont_testing_TestingComputeRange_h diff --git a/vtkm/cont/testing/TestingDataSetExplicit.h b/vtkm/cont/testing/TestingDataSetExplicit.h index c4edd034..db31698a 100644 --- a/vtkm/cont/testing/TestingDataSetExplicit.h +++ b/vtkm/cont/testing/TestingDataSetExplicit.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingDataSetExplicit_h diff --git a/vtkm/cont/testing/TestingDataSetSingleType.h b/vtkm/cont/testing/TestingDataSetSingleType.h index 04093811..842c8b6e 100644 --- a/vtkm/cont/testing/TestingDataSetSingleType.h +++ b/vtkm/cont/testing/TestingDataSetSingleType.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingDataSetSingleType_h diff --git a/vtkm/cont/testing/TestingDeviceAdapter.h b/vtkm/cont/testing/TestingDeviceAdapter.h index 17cedc4e..50173c73 100644 --- a/vtkm/cont/testing/TestingDeviceAdapter.h +++ b/vtkm/cont/testing/TestingDeviceAdapter.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingDeviceAdapter_h #define vtk_m_cont_testing_TestingDeviceAdapter_h diff --git a/vtkm/cont/testing/TestingFancyArrayHandles.h b/vtkm/cont/testing/TestingFancyArrayHandles.h index 80519eff..e3dbb72a 100644 --- a/vtkm/cont/testing/TestingFancyArrayHandles.h +++ b/vtkm/cont/testing/TestingFancyArrayHandles.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_cont_testing_TestingFancyArrayHandles_h #define vtk_m_cont_testing_TestingFancyArrayHandles_h diff --git a/vtkm/cont/testing/TestingImplicitFunction.h b/vtkm/cont/testing/TestingImplicitFunction.h index e5f3a617..1632d24c 100644 --- a/vtkm/cont/testing/TestingImplicitFunction.h +++ b/vtkm/cont/testing/TestingImplicitFunction.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingImplicitFunction_h #define vtk_m_cont_testing_TestingImplicitFunction_h diff --git a/vtkm/cont/testing/TestingPointLocatorUniformGrid.h b/vtkm/cont/testing/TestingPointLocatorUniformGrid.h index 89e73540..284a2ab1 100644 --- a/vtkm/cont/testing/TestingPointLocatorUniformGrid.h +++ b/vtkm/cont/testing/TestingPointLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingPointLocatorUniformGrid_h diff --git a/vtkm/cont/testing/TestingSerialization.h b/vtkm/cont/testing/TestingSerialization.h index 52caab9e..ed2f06db 100644 --- a/vtkm/cont/testing/TestingSerialization.h +++ b/vtkm/cont/testing/TestingSerialization.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingSerialization_h #define vtk_m_cont_testing_TestingSerialization_h diff --git a/vtkm/cont/testing/TestingVirtualObjectHandle.h b/vtkm/cont/testing/TestingVirtualObjectHandle.h index 38d9c5c0..7fd8ebc2 100644 --- a/vtkm/cont/testing/TestingVirtualObjectHandle.h +++ b/vtkm/cont/testing/TestingVirtualObjectHandle.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_testing_TestingVirtualObjectHandle_h #define vtk_m_cont_testing_TestingVirtualObjectHandle_h diff --git a/vtkm/cont/testing/UnitTestAlgorithm.cxx b/vtkm/cont/testing/UnitTestAlgorithm.cxx index b5659dd6..cb1f5747 100644 --- a/vtkm/cont/testing/UnitTestAlgorithm.cxx +++ b/vtkm/cont/testing/UnitTestAlgorithm.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayCopy.cxx b/vtkm/cont/testing/UnitTestArrayCopy.cxx index 336d5809..3ee73fcf 100644 --- a/vtkm/cont/testing/UnitTestArrayCopy.cxx +++ b/vtkm/cont/testing/UnitTestArrayCopy.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleCartesianProduct.cxx b/vtkm/cont/testing/UnitTestArrayHandleCartesianProduct.cxx index 93719ba4..aeac8976 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleCartesianProduct.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleCartesianProduct.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleCompositeVector.cxx b/vtkm/cont/testing/UnitTestArrayHandleCompositeVector.cxx index b01ac356..a08f9cf2 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleCompositeVector.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleCompositeVector.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleConcatenate.cxx b/vtkm/cont/testing/UnitTestArrayHandleConcatenate.cxx index 5a443856..a6f89385 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleConcatenate.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleConcatenate.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleCounting.cxx b/vtkm/cont/testing/UnitTestArrayHandleCounting.cxx index 4eb3883f..18bbed4a 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleCounting.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleCounting.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleDiscard.cxx b/vtkm/cont/testing/UnitTestArrayHandleDiscard.cxx index 6e0ce054..7ffd018e 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleDiscard.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleDiscard.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleExtractComponent.cxx b/vtkm/cont/testing/UnitTestArrayHandleExtractComponent.cxx index bbae76e9..c06149d0 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleExtractComponent.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleExtractComponent.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleImplicit.cxx b/vtkm/cont/testing/UnitTestArrayHandleImplicit.cxx index 5fad0a89..ab544f61 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleImplicit.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleImplicit.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleIndex.cxx b/vtkm/cont/testing/UnitTestArrayHandleIndex.cxx index 6aac04bc..e5771412 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleIndex.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleIndex.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandlePermutation.cxx b/vtkm/cont/testing/UnitTestArrayHandlePermutation.cxx index 51b2e396..4662c32f 100644 --- a/vtkm/cont/testing/UnitTestArrayHandlePermutation.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandlePermutation.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleReverse.cxx b/vtkm/cont/testing/UnitTestArrayHandleReverse.cxx index eb0ead2e..2d732233 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleReverse.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleReverse.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleSwizzle.cxx b/vtkm/cont/testing/UnitTestArrayHandleSwizzle.cxx index 588b6257..04dd4e42 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleSwizzle.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleSwizzle.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleTransform.cxx b/vtkm/cont/testing/UnitTestArrayHandleTransform.cxx index f880a74d..cb9234c9 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleTransform.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleTransform.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleUniformPointCoordinates.cxx b/vtkm/cont/testing/UnitTestArrayHandleUniformPointCoordinates.cxx index cdbd3676..4d407821 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleUniformPointCoordinates.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleUniformPointCoordinates.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayHandleVirtual.cxx b/vtkm/cont/testing/UnitTestArrayHandleVirtual.cxx index fd1f0bc7..a0ca39b5 100644 --- a/vtkm/cont/testing/UnitTestArrayHandleVirtual.cxx +++ b/vtkm/cont/testing/UnitTestArrayHandleVirtual.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestArrayPortalToIterators.cxx b/vtkm/cont/testing/UnitTestArrayPortalToIterators.cxx index e09aebaa..03d3d08a 100644 --- a/vtkm/cont/testing/UnitTestArrayPortalToIterators.cxx +++ b/vtkm/cont/testing/UnitTestArrayPortalToIterators.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestCellLocatorGeneral.cxx b/vtkm/cont/testing/UnitTestCellLocatorGeneral.cxx index 9fbd4749..d21be875 100644 --- a/vtkm/cont/testing/UnitTestCellLocatorGeneral.cxx +++ b/vtkm/cont/testing/UnitTestCellLocatorGeneral.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestCellSet.cxx b/vtkm/cont/testing/UnitTestCellSet.cxx index c9341768..87854666 100644 --- a/vtkm/cont/testing/UnitTestCellSet.cxx +++ b/vtkm/cont/testing/UnitTestCellSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestCellSetExplicit.cxx b/vtkm/cont/testing/UnitTestCellSetExplicit.cxx index f0688c62..6906d1bb 100644 --- a/vtkm/cont/testing/UnitTestCellSetExplicit.cxx +++ b/vtkm/cont/testing/UnitTestCellSetExplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestCellSetPermutation.cxx b/vtkm/cont/testing/UnitTestCellSetPermutation.cxx index 3805a356..d2892b29 100644 --- a/vtkm/cont/testing/UnitTestCellSetPermutation.cxx +++ b/vtkm/cont/testing/UnitTestCellSetPermutation.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestContTesting.cxx b/vtkm/cont/testing/UnitTestContTesting.cxx index 0ea2ccec..e7f69376 100644 --- a/vtkm/cont/testing/UnitTestContTesting.cxx +++ b/vtkm/cont/testing/UnitTestContTesting.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // This meta-test makes sure that the testing environment is properly reporting diff --git a/vtkm/cont/testing/UnitTestDataSetBuilderExplicit.cxx b/vtkm/cont/testing/UnitTestDataSetBuilderExplicit.cxx index b8036f6d..69eb86cc 100644 --- a/vtkm/cont/testing/UnitTestDataSetBuilderExplicit.cxx +++ b/vtkm/cont/testing/UnitTestDataSetBuilderExplicit.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestDataSetBuilderRectilinear.cxx b/vtkm/cont/testing/UnitTestDataSetBuilderRectilinear.cxx index 8cf6ef54..0c00b661 100644 --- a/vtkm/cont/testing/UnitTestDataSetBuilderRectilinear.cxx +++ b/vtkm/cont/testing/UnitTestDataSetBuilderRectilinear.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestDataSetBuilderUniform.cxx b/vtkm/cont/testing/UnitTestDataSetBuilderUniform.cxx index c76caf44..21b078e9 100644 --- a/vtkm/cont/testing/UnitTestDataSetBuilderUniform.cxx +++ b/vtkm/cont/testing/UnitTestDataSetBuilderUniform.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestDataSetPermutation.cxx b/vtkm/cont/testing/UnitTestDataSetPermutation.cxx index b163ad00..e3d9f304 100644 --- a/vtkm/cont/testing/UnitTestDataSetPermutation.cxx +++ b/vtkm/cont/testing/UnitTestDataSetPermutation.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestDataSetRectilinear.cxx b/vtkm/cont/testing/UnitTestDataSetRectilinear.cxx index 9090181a..38203fbd 100644 --- a/vtkm/cont/testing/UnitTestDataSetRectilinear.cxx +++ b/vtkm/cont/testing/UnitTestDataSetRectilinear.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestDataSetUniform.cxx b/vtkm/cont/testing/UnitTestDataSetUniform.cxx index dce77dd6..047c6d49 100644 --- a/vtkm/cont/testing/UnitTestDataSetUniform.cxx +++ b/vtkm/cont/testing/UnitTestDataSetUniform.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmDependency.cxx b/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmDependency.cxx index 56ae413a..777838c4 100644 --- a/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmDependency.cxx +++ b/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmDependency.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // This tests a previous problem where code templated on the device adapter and diff --git a/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmGeneral.cxx b/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmGeneral.cxx index 5d23f20b..7c452ae4 100644 --- a/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmGeneral.cxx +++ b/vtkm/cont/testing/UnitTestDeviceAdapterAlgorithmGeneral.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // This test makes sure that the algorithms specified in diff --git a/vtkm/cont/testing/UnitTestDynamicCellSet.cxx b/vtkm/cont/testing/UnitTestDynamicCellSet.cxx index 9e146f42..f6a52c5e 100644 --- a/vtkm/cont/testing/UnitTestDynamicCellSet.cxx +++ b/vtkm/cont/testing/UnitTestDynamicCellSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestFieldRangeCompute.cxx b/vtkm/cont/testing/UnitTestFieldRangeCompute.cxx index 91993ad7..439257a0 100644 --- a/vtkm/cont/testing/UnitTestFieldRangeCompute.cxx +++ b/vtkm/cont/testing/UnitTestFieldRangeCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestFieldRangeGlobalCompute.cxx b/vtkm/cont/testing/UnitTestFieldRangeGlobalCompute.cxx index 5a0b9f21..c2c63ee3 100644 --- a/vtkm/cont/testing/UnitTestFieldRangeGlobalCompute.cxx +++ b/vtkm/cont/testing/UnitTestFieldRangeGlobalCompute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestInitialize.cxx b/vtkm/cont/testing/UnitTestInitialize.cxx index 072b22e7..32553b42 100644 --- a/vtkm/cont/testing/UnitTestInitialize.cxx +++ b/vtkm/cont/testing/UnitTestInitialize.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestLogging.cxx b/vtkm/cont/testing/UnitTestLogging.cxx index 95839bb3..6c11fad5 100644 --- a/vtkm/cont/testing/UnitTestLogging.cxx +++ b/vtkm/cont/testing/UnitTestLogging.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestMoveConstructors.cxx b/vtkm/cont/testing/UnitTestMoveConstructors.cxx index 8e4a0fab..af3ef462 100644 --- a/vtkm/cont/testing/UnitTestMoveConstructors.cxx +++ b/vtkm/cont/testing/UnitTestMoveConstructors.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestMultiBlock.cxx b/vtkm/cont/testing/UnitTestMultiBlock.cxx index f7b52799..7115ac73 100644 --- a/vtkm/cont/testing/UnitTestMultiBlock.cxx +++ b/vtkm/cont/testing/UnitTestMultiBlock.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestRuntimeDeviceInformation.cxx b/vtkm/cont/testing/UnitTestRuntimeDeviceInformation.cxx index ff0c8bf5..a71babfe 100644 --- a/vtkm/cont/testing/UnitTestRuntimeDeviceInformation.cxx +++ b/vtkm/cont/testing/UnitTestRuntimeDeviceInformation.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestRuntimeDeviceNames.cxx b/vtkm/cont/testing/UnitTestRuntimeDeviceNames.cxx index febf2062..e8ba7e60 100644 --- a/vtkm/cont/testing/UnitTestRuntimeDeviceNames.cxx +++ b/vtkm/cont/testing/UnitTestRuntimeDeviceNames.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestSerializationArrayHandle.cxx b/vtkm/cont/testing/UnitTestSerializationArrayHandle.cxx index 1fede125..2981a5e9 100644 --- a/vtkm/cont/testing/UnitTestSerializationArrayHandle.cxx +++ b/vtkm/cont/testing/UnitTestSerializationArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestSerializationDataSet.cxx b/vtkm/cont/testing/UnitTestSerializationDataSet.cxx index aff10813..37995af8 100644 --- a/vtkm/cont/testing/UnitTestSerializationDataSet.cxx +++ b/vtkm/cont/testing/UnitTestSerializationDataSet.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestStorageBasic.cxx b/vtkm/cont/testing/UnitTestStorageBasic.cxx index 41e4400d..b84b3132 100644 --- a/vtkm/cont/testing/UnitTestStorageBasic.cxx +++ b/vtkm/cont/testing/UnitTestStorageBasic.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestStorageImplicit.cxx b/vtkm/cont/testing/UnitTestStorageImplicit.cxx index 67bba358..02e194f6 100644 --- a/vtkm/cont/testing/UnitTestStorageImplicit.cxx +++ b/vtkm/cont/testing/UnitTestStorageImplicit.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestStorageListTag.cxx b/vtkm/cont/testing/UnitTestStorageListTag.cxx index 4934a39c..98e9002c 100644 --- a/vtkm/cont/testing/UnitTestStorageListTag.cxx +++ b/vtkm/cont/testing/UnitTestStorageListTag.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestTimer.cxx b/vtkm/cont/testing/UnitTestTimer.cxx index b62e6c9d..ce6cdc65 100644 --- a/vtkm/cont/testing/UnitTestTimer.cxx +++ b/vtkm/cont/testing/UnitTestTimer.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/cont/testing/UnitTestTryExecute.cxx b/vtkm/cont/testing/UnitTestTryExecute.cxx index 9616ce42..f85d2d4d 100644 --- a/vtkm/cont/testing/UnitTestTryExecute.cxx +++ b/vtkm/cont/testing/UnitTestTryExecute.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/cont/testing/UnitTestVariantArrayHandle.cxx b/vtkm/cont/testing/UnitTestVariantArrayHandle.cxx index 31718e51..049c1f10 100644 --- a/vtkm/cont/testing/UnitTestVariantArrayHandle.cxx +++ b/vtkm/cont/testing/UnitTestVariantArrayHandle.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/AtomicArrayExecutionObject.h b/vtkm/exec/AtomicArrayExecutionObject.h index 8532d3ff..620234c8 100644 --- a/vtkm/exec/AtomicArrayExecutionObject.h +++ b/vtkm/exec/AtomicArrayExecutionObject.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_AtomicArrayExecutionObject_h #define vtk_m_exec_AtomicArrayExecutionObject_h diff --git a/vtkm/exec/BoundaryState.h b/vtkm/exec/BoundaryState.h index aa7a1a95..ec8034b7 100644 --- a/vtkm/exec/BoundaryState.h +++ b/vtkm/exec/BoundaryState.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_BoundaryState_h #define vtk_m_exec_BoundaryState_h diff --git a/vtkm/exec/CMakeLists.txt b/vtkm/exec/CMakeLists.txt index 7d3c79cb..210f9ed0 100644 --- a/vtkm/exec/CMakeLists.txt +++ b/vtkm/exec/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/CellDerivative.h b/vtkm/exec/CellDerivative.h index 0e7328fa..ba3a872f 100644 --- a/vtkm/exec/CellDerivative.h +++ b/vtkm/exec/CellDerivative.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_Derivative_h #define vtk_m_exec_Derivative_h diff --git a/vtkm/exec/CellEdge.h b/vtkm/exec/CellEdge.h index c37696b7..1fec8c97 100644 --- a/vtkm/exec/CellEdge.h +++ b/vtkm/exec/CellEdge.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_CellEdge_h #define vtk_m_exec_CellEdge_h diff --git a/vtkm/exec/CellFace.h b/vtkm/exec/CellFace.h index c63dada4..d5442e24 100644 --- a/vtkm/exec/CellFace.h +++ b/vtkm/exec/CellFace.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_CellFace_h #define vtk_m_exec_CellFace_h diff --git a/vtkm/exec/CellInside.h b/vtkm/exec/CellInside.h index 8fca4583..621315e2 100644 --- a/vtkm/exec/CellInside.h +++ b/vtkm/exec/CellInside.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_CellInside_h #define vtk_m_exec_CellInside_h diff --git a/vtkm/exec/CellInterpolate.h b/vtkm/exec/CellInterpolate.h index b3a41f31..1e6b0371 100644 --- a/vtkm/exec/CellInterpolate.h +++ b/vtkm/exec/CellInterpolate.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_Interpolate_h #define vtk_m_exec_Interpolate_h diff --git a/vtkm/exec/CellLocator.h b/vtkm/exec/CellLocator.h index bbf75771..aa91e793 100644 --- a/vtkm/exec/CellLocator.h +++ b/vtkm/exec/CellLocator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_CellLocator_h #define vtk_m_exec_CellLocator_h diff --git a/vtkm/exec/CellLocatorBoundingIntervalHierarchyExec.h b/vtkm/exec/CellLocatorBoundingIntervalHierarchyExec.h index 5976f149..68e03d49 100644 --- a/vtkm/exec/CellLocatorBoundingIntervalHierarchyExec.h +++ b/vtkm/exec/CellLocatorBoundingIntervalHierarchyExec.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_cont_CellLocatorBoundingIntervalHierarchyExec_h #define vtk_m_cont_CellLocatorBoundingIntervalHierarchyExec_h diff --git a/vtkm/exec/CellLocatorRectilinearGrid.h b/vtkm/exec/CellLocatorRectilinearGrid.h index cc131d23..26a30b06 100644 --- a/vtkm/exec/CellLocatorRectilinearGrid.h +++ b/vtkm/exec/CellLocatorRectilinearGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtkm_exec_celllocatorrectilineargrid_h #define vtkm_exec_celllocatorrectilineargrid_h diff --git a/vtkm/exec/CellLocatorUniformGrid.h b/vtkm/exec/CellLocatorUniformGrid.h index 51d4f152..4a845cf7 100644 --- a/vtkm/exec/CellLocatorUniformGrid.h +++ b/vtkm/exec/CellLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2019 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2019 UT-Battelle, LLC. -// Copyright 2019 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtkm_exec_celllocatoruniformgrid_h #define vtkm_exec_celllocatoruniformgrid_h diff --git a/vtkm/exec/CellMeasure.h b/vtkm/exec/CellMeasure.h index bee234fa..8807e9c3 100644 --- a/vtkm/exec/CellMeasure.h +++ b/vtkm/exec/CellMeasure.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_CellMeasure_h #define vtk_m_exec_CellMeasure_h diff --git a/vtkm/exec/ColorTable.h b/vtkm/exec/ColorTable.h index f09bb60b..2f74b028 100644 --- a/vtkm/exec/ColorTable.h +++ b/vtkm/exec/ColorTable.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_exec_ColorTable_h #define vtk_m_exec_ColorTable_h diff --git a/vtkm/exec/ColorTable.hxx b/vtkm/exec/ColorTable.hxx index 799207f7..9ca43475 100644 --- a/vtkm/exec/ColorTable.hxx +++ b/vtkm/exec/ColorTable.hxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_exec_ColorTable_hxx #define vtk_m_exec_ColorTable_hxx diff --git a/vtkm/exec/ConnectivityExplicit.h b/vtkm/exec/ConnectivityExplicit.h index 699409df..325fd0e7 100644 --- a/vtkm/exec/ConnectivityExplicit.h +++ b/vtkm/exec/ConnectivityExplicit.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_ConnectivityExplicit_h #define vtk_m_exec_ConnectivityExplicit_h diff --git a/vtkm/exec/ConnectivityPermuted.h b/vtkm/exec/ConnectivityPermuted.h index de7ee23e..e62f616e 100644 --- a/vtkm/exec/ConnectivityPermuted.h +++ b/vtkm/exec/ConnectivityPermuted.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_ConnectivityPermuted_h diff --git a/vtkm/exec/ConnectivityStructured.h b/vtkm/exec/ConnectivityStructured.h index edbc7c3a..5942cfe1 100644 --- a/vtkm/exec/ConnectivityStructured.h +++ b/vtkm/exec/ConnectivityStructured.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_ConnectivityStructured_h diff --git a/vtkm/exec/ExecutionWholeArray.h b/vtkm/exec/ExecutionWholeArray.h index b6fee2e6..8d262f59 100644 --- a/vtkm/exec/ExecutionWholeArray.h +++ b/vtkm/exec/ExecutionWholeArray.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_ExecutionWholeArray_h #define vtk_m_exec_ExecutionWholeArray_h diff --git a/vtkm/exec/FieldNeighborhood.h b/vtkm/exec/FieldNeighborhood.h index 5ba09b5a..b424a520 100644 --- a/vtkm/exec/FieldNeighborhood.h +++ b/vtkm/exec/FieldNeighborhood.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_FieldNeighborhood_h #define vtk_m_exec_FieldNeighborhood_h diff --git a/vtkm/exec/FunctorBase.h b/vtkm/exec/FunctorBase.h index 1d52c9c4..1b0dd07e 100644 --- a/vtkm/exec/FunctorBase.h +++ b/vtkm/exec/FunctorBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_FunctorBase_h #define vtk_m_exec_FunctorBase_h diff --git a/vtkm/exec/Jacobian.h b/vtkm/exec/Jacobian.h index e1816774..d64aad78 100644 --- a/vtkm/exec/Jacobian.h +++ b/vtkm/exec/Jacobian.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_Jacobian_h #define vtk_m_exec_Jacobian_h diff --git a/vtkm/exec/ParametricCoordinates.h b/vtkm/exec/ParametricCoordinates.h index 618abcb4..c9e6bbe6 100644 --- a/vtkm/exec/ParametricCoordinates.h +++ b/vtkm/exec/ParametricCoordinates.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_ParametricCoordinates_h #define vtk_m_exec_ParametricCoordinates_h diff --git a/vtkm/exec/PointLocator.h b/vtkm/exec/PointLocator.h index 0edc2565..db74cf61 100644 --- a/vtkm/exec/PointLocator.h +++ b/vtkm/exec/PointLocator.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_PointLocator_h #define vtk_m_exec_PointLocator_h diff --git a/vtkm/exec/PointLocatorUniformGrid.h b/vtkm/exec/PointLocatorUniformGrid.h index d74b6ab7..13633b5d 100644 --- a/vtkm/exec/PointLocatorUniformGrid.h +++ b/vtkm/exec/PointLocatorUniformGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_PointLocatorUniformGrid_h #define vtk_m_exec_PointLocatorUniformGrid_h diff --git a/vtkm/exec/TaskBase.h b/vtkm/exec/TaskBase.h index 00af9819..18bd9733 100644 --- a/vtkm/exec/TaskBase.h +++ b/vtkm/exec/TaskBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_TaskBase_h #define vtk_m_exec_TaskBase_h diff --git a/vtkm/exec/arg/AspectTagDefault.h b/vtkm/exec/arg/AspectTagDefault.h index d6fdd161..cccdd7f8 100644 --- a/vtkm/exec/arg/AspectTagDefault.h +++ b/vtkm/exec/arg/AspectTagDefault.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_AspectTagDefault_h #define vtk_m_exec_arg_AspectTagDefault_h diff --git a/vtkm/exec/arg/BasicArg.h b/vtkm/exec/arg/BasicArg.h index 69fce92e..325889b7 100644 --- a/vtkm/exec/arg/BasicArg.h +++ b/vtkm/exec/arg/BasicArg.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_BasicArg_h #define vtk_m_exec_arg_BasicArg_h diff --git a/vtkm/exec/arg/Boundary.h b/vtkm/exec/arg/Boundary.h index 4200976e..df3612a3 100644 --- a/vtkm/exec/arg/Boundary.h +++ b/vtkm/exec/arg/Boundary.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_OnBoundary_h #define vtk_m_exec_arg_OnBoundary_h diff --git a/vtkm/exec/arg/CMakeLists.txt b/vtkm/exec/arg/CMakeLists.txt index a5669073..a2847449 100644 --- a/vtkm/exec/arg/CMakeLists.txt +++ b/vtkm/exec/arg/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/arg/CellShape.h b/vtkm/exec/arg/CellShape.h index 55485264..a5660283 100644 --- a/vtkm/exec/arg/CellShape.h +++ b/vtkm/exec/arg/CellShape.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_CellShape_h #define vtk_m_exec_arg_CellShape_h diff --git a/vtkm/exec/arg/ExecutionSignatureTagBase.h b/vtkm/exec/arg/ExecutionSignatureTagBase.h index a48b9f1e..49dbb5a4 100644 --- a/vtkm/exec/arg/ExecutionSignatureTagBase.h +++ b/vtkm/exec/arg/ExecutionSignatureTagBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ExecutionSignatureTagBase_h #define vtk_m_exec_arg_ExecutionSignatureTagBase_h diff --git a/vtkm/exec/arg/Fetch.h b/vtkm/exec/arg/Fetch.h index 753ab721..9fbfcde3 100644 --- a/vtkm/exec/arg/Fetch.h +++ b/vtkm/exec/arg/Fetch.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_Fetch_h #define vtk_m_exec_arg_Fetch_h diff --git a/vtkm/exec/arg/FetchTagArrayDirectIn.h b/vtkm/exec/arg/FetchTagArrayDirectIn.h index 54bc25be..851e8d89 100644 --- a/vtkm/exec/arg/FetchTagArrayDirectIn.h +++ b/vtkm/exec/arg/FetchTagArrayDirectIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagArrayDirectIn_h #define vtk_m_exec_arg_FetchTagArrayDirectIn_h diff --git a/vtkm/exec/arg/FetchTagArrayDirectInOut.h b/vtkm/exec/arg/FetchTagArrayDirectInOut.h index bd2f4ba3..b6129007 100644 --- a/vtkm/exec/arg/FetchTagArrayDirectInOut.h +++ b/vtkm/exec/arg/FetchTagArrayDirectInOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagArrayDirectInOut_h #define vtk_m_exec_arg_FetchTagArrayDirectInOut_h diff --git a/vtkm/exec/arg/FetchTagArrayDirectOut.h b/vtkm/exec/arg/FetchTagArrayDirectOut.h index 7ef78dbe..e0603ebb 100644 --- a/vtkm/exec/arg/FetchTagArrayDirectOut.h +++ b/vtkm/exec/arg/FetchTagArrayDirectOut.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagArrayDirectOut_h #define vtk_m_exec_arg_FetchTagArrayDirectOut_h diff --git a/vtkm/exec/arg/FetchTagArrayNeighborhoodIn.h b/vtkm/exec/arg/FetchTagArrayNeighborhoodIn.h index 078a7645..86ee7f02 100644 --- a/vtkm/exec/arg/FetchTagArrayNeighborhoodIn.h +++ b/vtkm/exec/arg/FetchTagArrayNeighborhoodIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagArrayNeighborhoodIn_h #define vtk_m_exec_arg_FetchTagArrayNeighborhoodIn_h diff --git a/vtkm/exec/arg/FetchTagArrayTopologyMapIn.h b/vtkm/exec/arg/FetchTagArrayTopologyMapIn.h index 5c08e355..46e820ae 100644 --- a/vtkm/exec/arg/FetchTagArrayTopologyMapIn.h +++ b/vtkm/exec/arg/FetchTagArrayTopologyMapIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagArrayTopologyMapIn_h #define vtk_m_exec_arg_FetchTagArrayTopologyMapIn_h diff --git a/vtkm/exec/arg/FetchTagCellSetIn.h b/vtkm/exec/arg/FetchTagCellSetIn.h index 60659c62..05b1a3af 100644 --- a/vtkm/exec/arg/FetchTagCellSetIn.h +++ b/vtkm/exec/arg/FetchTagCellSetIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagCellSetIn_h #define vtk_m_exec_arg_FetchTagCellSetIn_h diff --git a/vtkm/exec/arg/FetchTagExecObject.h b/vtkm/exec/arg/FetchTagExecObject.h index 8028cee0..6945354c 100644 --- a/vtkm/exec/arg/FetchTagExecObject.h +++ b/vtkm/exec/arg/FetchTagExecObject.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagExecObject_h #define vtk_m_exec_arg_FetchTagExecObject_h diff --git a/vtkm/exec/arg/FetchTagKeysIn.h b/vtkm/exec/arg/FetchTagKeysIn.h index 0388f9f6..0f107639 100644 --- a/vtkm/exec/arg/FetchTagKeysIn.h +++ b/vtkm/exec/arg/FetchTagKeysIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagKeysIn_h #define vtk_m_exec_arg_FetchTagKeysIn_h diff --git a/vtkm/exec/arg/FetchTagWholeCellSetIn.h b/vtkm/exec/arg/FetchTagWholeCellSetIn.h index 3279af43..b57a0065 100644 --- a/vtkm/exec/arg/FetchTagWholeCellSetIn.h +++ b/vtkm/exec/arg/FetchTagWholeCellSetIn.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FetchTagWholeCellSetIn_h #define vtk_m_exec_arg_FetchTagWholeCellSetIn_h diff --git a/vtkm/exec/arg/FromCount.h b/vtkm/exec/arg/FromCount.h index de358cbd..95cdebf8 100644 --- a/vtkm/exec/arg/FromCount.h +++ b/vtkm/exec/arg/FromCount.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FromCount_h #define vtk_m_exec_arg_FromCount_h diff --git a/vtkm/exec/arg/FromIndices.h b/vtkm/exec/arg/FromIndices.h index ee158879..c02ed988 100644 --- a/vtkm/exec/arg/FromIndices.h +++ b/vtkm/exec/arg/FromIndices.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_FromIndices_h #define vtk_m_exec_arg_FromIndices_h diff --git a/vtkm/exec/arg/InputIndex.h b/vtkm/exec/arg/InputIndex.h index c4593d66..ffa2de99 100644 --- a/vtkm/exec/arg/InputIndex.h +++ b/vtkm/exec/arg/InputIndex.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_InputIndex_h #define vtk_m_exec_arg_InputIndex_h diff --git a/vtkm/exec/arg/OutputIndex.h b/vtkm/exec/arg/OutputIndex.h index 87c57c87..665ba00a 100644 --- a/vtkm/exec/arg/OutputIndex.h +++ b/vtkm/exec/arg/OutputIndex.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_OutputIndex_h #define vtk_m_exec_arg_OutputIndex_h diff --git a/vtkm/exec/arg/ThreadIndices.h b/vtkm/exec/arg/ThreadIndices.h index 647da560..e000d3d3 100644 --- a/vtkm/exec/arg/ThreadIndices.h +++ b/vtkm/exec/arg/ThreadIndices.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ThreadIndices_h #define vtk_m_exec_arg_ThreadIndices_h diff --git a/vtkm/exec/arg/ThreadIndicesBasic.h b/vtkm/exec/arg/ThreadIndicesBasic.h index 0a6375f7..79ee1b30 100644 --- a/vtkm/exec/arg/ThreadIndicesBasic.h +++ b/vtkm/exec/arg/ThreadIndicesBasic.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ThreadIndicesBasic_h #define vtk_m_exec_arg_ThreadIndicesBasic_h diff --git a/vtkm/exec/arg/ThreadIndicesPointNeighborhood.h b/vtkm/exec/arg/ThreadIndicesPointNeighborhood.h index 58a6bbfd..063b7ac4 100644 --- a/vtkm/exec/arg/ThreadIndicesPointNeighborhood.h +++ b/vtkm/exec/arg/ThreadIndicesPointNeighborhood.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ThreadIndicesPointNeighborhood_h #define vtk_m_exec_arg_ThreadIndicesPointNeighborhood_h diff --git a/vtkm/exec/arg/ThreadIndicesReduceByKey.h b/vtkm/exec/arg/ThreadIndicesReduceByKey.h index b10139de..2be9c8e7 100644 --- a/vtkm/exec/arg/ThreadIndicesReduceByKey.h +++ b/vtkm/exec/arg/ThreadIndicesReduceByKey.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ThreadIndicesReduceByKey_h #define vtk_m_exec_arg_ThreadIndicesReduceByKey_h diff --git a/vtkm/exec/arg/ThreadIndicesTopologyMap.h b/vtkm/exec/arg/ThreadIndicesTopologyMap.h index ff478265..8e046611 100644 --- a/vtkm/exec/arg/ThreadIndicesTopologyMap.h +++ b/vtkm/exec/arg/ThreadIndicesTopologyMap.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ThreadIndicesTopologyMap_h #define vtk_m_exec_arg_ThreadIndicesTopologyMap_h diff --git a/vtkm/exec/arg/ValueCount.h b/vtkm/exec/arg/ValueCount.h index 4afb7c3e..9caf6860 100644 --- a/vtkm/exec/arg/ValueCount.h +++ b/vtkm/exec/arg/ValueCount.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_ValueCount_h #define vtk_m_exec_arg_ValueCount_h diff --git a/vtkm/exec/arg/VisitIndex.h b/vtkm/exec/arg/VisitIndex.h index cff7c7e0..1d055713 100644 --- a/vtkm/exec/arg/VisitIndex.h +++ b/vtkm/exec/arg/VisitIndex.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_VisitIndex_h #define vtk_m_exec_arg_VisitIndex_h diff --git a/vtkm/exec/arg/WorkIndex.h b/vtkm/exec/arg/WorkIndex.h index c5620dda..864a105a 100644 --- a/vtkm/exec/arg/WorkIndex.h +++ b/vtkm/exec/arg/WorkIndex.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_WorkIndex_h #define vtk_m_exec_arg_WorkIndex_h diff --git a/vtkm/exec/arg/testing/CMakeLists.txt b/vtkm/exec/arg/testing/CMakeLists.txt index d1ec465f..ad417a2e 100644 --- a/vtkm/exec/arg/testing/CMakeLists.txt +++ b/vtkm/exec/arg/testing/CMakeLists.txt @@ -1,21 +1,11 @@ -#============================================================================ +##============================================================================ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers ThreadIndicesTesting.h diff --git a/vtkm/exec/arg/testing/ThreadIndicesTesting.h b/vtkm/exec/arg/testing/ThreadIndicesTesting.h index b5abad5a..3da233bc 100644 --- a/vtkm/exec/arg/testing/ThreadIndicesTesting.h +++ b/vtkm/exec/arg/testing/ThreadIndicesTesting.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_arg_testing_ThreadIndicesTesting_h #define vtk_m_exec_arg_testing_ThreadIndicesTesting_h diff --git a/vtkm/exec/arg/testing/UnitTestExecutionSignatureTag.cxx b/vtkm/exec/arg/testing/UnitTestExecutionSignatureTag.cxx index 43318cd0..784bc3b7 100644 --- a/vtkm/exec/arg/testing/UnitTestExecutionSignatureTag.cxx +++ b/vtkm/exec/arg/testing/UnitTestExecutionSignatureTag.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectIn.cxx b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectIn.cxx index b2ba4c36..2bed5a70 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectIn.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectIn.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectInOut.cxx b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectInOut.cxx index adf787b1..53b664ab 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectInOut.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectInOut.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectOut.cxx b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectOut.cxx index e7ebc668..f714ea75 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchArrayDirectOut.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchArrayDirectOut.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchArrayNeighborhoodIn.cxx b/vtkm/exec/arg/testing/UnitTestFetchArrayNeighborhoodIn.cxx index 0f850ed7..433049de 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchArrayNeighborhoodIn.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchArrayNeighborhoodIn.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchArrayTopologyMapIn.cxx b/vtkm/exec/arg/testing/UnitTestFetchArrayTopologyMapIn.cxx index be15fa03..441bf4e0 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchArrayTopologyMapIn.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchArrayTopologyMapIn.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchExecObject.cxx b/vtkm/exec/arg/testing/UnitTestFetchExecObject.cxx index 4c1e98a6..651224ea 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchExecObject.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchExecObject.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/arg/testing/UnitTestFetchWorkIndex.cxx b/vtkm/exec/arg/testing/UnitTestFetchWorkIndex.cxx index 1eec4012..9df7f180 100644 --- a/vtkm/exec/arg/testing/UnitTestFetchWorkIndex.cxx +++ b/vtkm/exec/arg/testing/UnitTestFetchWorkIndex.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/cuda/CMakeLists.txt b/vtkm/exec/cuda/CMakeLists.txt index d62192c6..9f98ed10 100644 --- a/vtkm/exec/cuda/CMakeLists.txt +++ b/vtkm/exec/cuda/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/vtkm/exec/cuda/internal/ArrayPortalFromThrust.h b/vtkm/exec/cuda/internal/ArrayPortalFromThrust.h index 328b151e..e25707d2 100644 --- a/vtkm/exec/cuda/internal/ArrayPortalFromThrust.h +++ b/vtkm/exec/cuda/internal/ArrayPortalFromThrust.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_ArrayPortalFromThrust_h #define vtk_m_exec_cuda_internal_ArrayPortalFromThrust_h diff --git a/vtkm/exec/cuda/internal/CMakeLists.txt b/vtkm/exec/cuda/internal/CMakeLists.txt index 0de9e42e..98b2f0dd 100644 --- a/vtkm/exec/cuda/internal/CMakeLists.txt +++ b/vtkm/exec/cuda/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/cuda/internal/ExecutionPolicy.h b/vtkm/exec/cuda/internal/ExecutionPolicy.h index 81f4fe7b..8e5a5356 100644 --- a/vtkm/exec/cuda/internal/ExecutionPolicy.h +++ b/vtkm/exec/cuda/internal/ExecutionPolicy.h @@ -1,22 +1,11 @@ - //============================================================================ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_ExecutionPolicy_h #define vtk_m_exec_cuda_internal_ExecutionPolicy_h diff --git a/vtkm/exec/cuda/internal/IteratorFromArrayPortal.h b/vtkm/exec/cuda/internal/IteratorFromArrayPortal.h index 589731ac..015af38d 100644 --- a/vtkm/exec/cuda/internal/IteratorFromArrayPortal.h +++ b/vtkm/exec/cuda/internal/IteratorFromArrayPortal.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_IteratorFromArrayPortal_h #define vtk_m_exec_cuda_internal_IteratorFromArrayPortal_h diff --git a/vtkm/exec/cuda/internal/TaskStrided.h b/vtkm/exec/cuda/internal/TaskStrided.h index f2375f5c..40c436c4 100644 --- a/vtkm/exec/cuda/internal/TaskStrided.h +++ b/vtkm/exec/cuda/internal/TaskStrided.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_TaskStrided_h #define vtk_m_exec_cuda_internal_TaskStrided_h diff --git a/vtkm/exec/cuda/internal/ThrustPatches.h b/vtkm/exec/cuda/internal/ThrustPatches.h index 114a3ec5..d533a9a9 100644 --- a/vtkm/exec/cuda/internal/ThrustPatches.h +++ b/vtkm/exec/cuda/internal/ThrustPatches.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_ThrustPatches_h #define vtk_m_exec_cuda_internal_ThrustPatches_h diff --git a/vtkm/exec/cuda/internal/WrappedOperators.h b/vtkm/exec/cuda/internal/WrappedOperators.h index 5f78f592..d4c274bc 100644 --- a/vtkm/exec/cuda/internal/WrappedOperators.h +++ b/vtkm/exec/cuda/internal/WrappedOperators.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_cuda_internal_WrappedOperators_h #define vtk_m_exec_cuda_internal_WrappedOperators_h diff --git a/vtkm/exec/cuda/internal/testing/CMakeLists.txt b/vtkm/exec/cuda/internal/testing/CMakeLists.txt index 84be197b..b0d0a69e 100644 --- a/vtkm/exec/cuda/internal/testing/CMakeLists.txt +++ b/vtkm/exec/cuda/internal/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(unit_tests UnitTestTextureMemorySupport.cu diff --git a/vtkm/exec/cuda/internal/testing/UnitTestTaskStrided.cu b/vtkm/exec/cuda/internal/testing/UnitTestTaskStrided.cu index 30a9a327..50ce753c 100644 --- a/vtkm/exec/cuda/internal/testing/UnitTestTaskStrided.cu +++ b/vtkm/exec/cuda/internal/testing/UnitTestTaskStrided.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/cuda/internal/testing/UnitTestTextureMemorySupport.cu b/vtkm/exec/cuda/internal/testing/UnitTestTextureMemorySupport.cu index deeab2c8..d32b7eb6 100644 --- a/vtkm/exec/cuda/internal/testing/UnitTestTextureMemorySupport.cu +++ b/vtkm/exec/cuda/internal/testing/UnitTestTextureMemorySupport.cu @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/internal/CMakeLists.txt b/vtkm/exec/internal/CMakeLists.txt index 7f12ae24..541ebe55 100644 --- a/vtkm/exec/internal/CMakeLists.txt +++ b/vtkm/exec/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/internal/ErrorMessageBuffer.h b/vtkm/exec/internal/ErrorMessageBuffer.h index d920ea6a..62cfeec3 100644 --- a/vtkm/exec/internal/ErrorMessageBuffer.h +++ b/vtkm/exec/internal/ErrorMessageBuffer.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_internal_ErrorMessageBuffer_h #define vtk_m_exec_internal_ErrorMessageBuffer_h diff --git a/vtkm/exec/internal/FastVec.h b/vtkm/exec/internal/FastVec.h index 7519ab78..1efbdbdc 100644 --- a/vtkm/exec/internal/FastVec.h +++ b/vtkm/exec/internal/FastVec.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_internal_FastVec_h #define vtk_m_exec_internal_FastVec_h diff --git a/vtkm/exec/internal/ReduceByKeyLookup.h b/vtkm/exec/internal/ReduceByKeyLookup.h index 16b6548c..0e687bc3 100644 --- a/vtkm/exec/internal/ReduceByKeyLookup.h +++ b/vtkm/exec/internal/ReduceByKeyLookup.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_internal_ReduceByKeyLookup_h #define vtk_m_exec_internal_ReduceByKeyLookup_h diff --git a/vtkm/exec/internal/TaskSingular.h b/vtkm/exec/internal/TaskSingular.h index 3b5cf10d..8e4cfecc 100644 --- a/vtkm/exec/internal/TaskSingular.h +++ b/vtkm/exec/internal/TaskSingular.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_internal_TaskSingular_h #define vtk_m_exec_internal_TaskSingular_h diff --git a/vtkm/exec/internal/TwoLevelUniformGridExecutionObject.h b/vtkm/exec/internal/TwoLevelUniformGridExecutionObject.h index 175d95bb..86319a84 100644 --- a/vtkm/exec/internal/TwoLevelUniformGridExecutionObject.h +++ b/vtkm/exec/internal/TwoLevelUniformGridExecutionObject.h @@ -1,24 +1,11 @@ -// -// Created by Matthew Letter on 6/8/18. -// //============================================================================ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_TwoLevelUniformGridExecutonObject_h #define vtk_m_exec_TwoLevelUniformGridExecutonObject_h diff --git a/vtkm/exec/internal/WorkletInvokeFunctorDetail.h b/vtkm/exec/internal/WorkletInvokeFunctorDetail.h index 976b1883..25a07fb7 100644 --- a/vtkm/exec/internal/WorkletInvokeFunctorDetail.h +++ b/vtkm/exec/internal/WorkletInvokeFunctorDetail.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // **** DO NOT EDIT THIS FILE!!! **** // This file is automatically generated by WorkletInvokeFunctorDetail.h.in diff --git a/vtkm/exec/internal/WorkletInvokeFunctorDetail.h.in b/vtkm/exec/internal/WorkletInvokeFunctorDetail.h.in index 0950a29f..72039295 100644 --- a/vtkm/exec/internal/WorkletInvokeFunctorDetail.h.in +++ b/vtkm/exec/internal/WorkletInvokeFunctorDetail.h.in @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ $# This file uses the pyexpander macro processing utility to build the $# FunctionInterface facilities that use a variable number of arguments. diff --git a/vtkm/exec/internal/testing/CMakeLists.txt b/vtkm/exec/internal/testing/CMakeLists.txt index b9149245..79d5f3b2 100644 --- a/vtkm/exec/internal/testing/CMakeLists.txt +++ b/vtkm/exec/internal/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(headers TestingTaskTiling.h diff --git a/vtkm/exec/internal/testing/TestingTaskTiling.h b/vtkm/exec/internal/testing/TestingTaskTiling.h index c2f122c8..97a5ad3c 100644 --- a/vtkm/exec/internal/testing/TestingTaskTiling.h +++ b/vtkm/exec/internal/testing/TestingTaskTiling.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/internal/testing/UnitTestErrorMessageBuffer.cxx b/vtkm/exec/internal/testing/UnitTestErrorMessageBuffer.cxx index 45fe0d01..0b5bd642 100644 --- a/vtkm/exec/internal/testing/UnitTestErrorMessageBuffer.cxx +++ b/vtkm/exec/internal/testing/UnitTestErrorMessageBuffer.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/internal/testing/UnitTestTaskSingular.cxx b/vtkm/exec/internal/testing/UnitTestTaskSingular.cxx index a03a2110..7a13ce58 100644 --- a/vtkm/exec/internal/testing/UnitTestTaskSingular.cxx +++ b/vtkm/exec/internal/testing/UnitTestTaskSingular.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/internal/testing/UnitTestWorkletInvokeFunctor.cxx b/vtkm/exec/internal/testing/UnitTestWorkletInvokeFunctor.cxx index c8a12e86..9113aee4 100644 --- a/vtkm/exec/internal/testing/UnitTestWorkletInvokeFunctor.cxx +++ b/vtkm/exec/internal/testing/UnitTestWorkletInvokeFunctor.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/openmp/CMakeLists.txt b/vtkm/exec/openmp/CMakeLists.txt index e842feb7..9f98ed10 100644 --- a/vtkm/exec/openmp/CMakeLists.txt +++ b/vtkm/exec/openmp/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/vtkm/exec/openmp/internal/CMakeLists.txt b/vtkm/exec/openmp/internal/CMakeLists.txt index 05b67812..ebe27bea 100644 --- a/vtkm/exec/openmp/internal/CMakeLists.txt +++ b/vtkm/exec/openmp/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/openmp/internal/TaskTilingOpenMP.h b/vtkm/exec/openmp/internal/TaskTilingOpenMP.h index f350a5bf..c7e1ca7e 100644 --- a/vtkm/exec/openmp/internal/TaskTilingOpenMP.h +++ b/vtkm/exec/openmp/internal/TaskTilingOpenMP.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_openmp_internal_TaskTilingOpenMP_h #define vtk_m_exec_openmp_internal_TaskTilingOpenMP_h diff --git a/vtkm/exec/openmp/internal/testing/CMakeLists.txt b/vtkm/exec/openmp/internal/testing/CMakeLists.txt index bfec3d67..7fe75354 100644 --- a/vtkm/exec/openmp/internal/testing/CMakeLists.txt +++ b/vtkm/exec/openmp/internal/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2018 UT-Battelle, LLC. -## Copyright 2018 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(unit_tests UnitTestTaskTilingOpenMP.cxx diff --git a/vtkm/exec/openmp/internal/testing/UnitTestTaskTilingOpenMP.cxx b/vtkm/exec/openmp/internal/testing/UnitTestTaskTilingOpenMP.cxx index c9b12e74..ad768f22 100644 --- a/vtkm/exec/openmp/internal/testing/UnitTestTaskTilingOpenMP.cxx +++ b/vtkm/exec/openmp/internal/testing/UnitTestTaskTilingOpenMP.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include #include diff --git a/vtkm/exec/serial/CMakeLists.txt b/vtkm/exec/serial/CMakeLists.txt index d62192c6..9f98ed10 100644 --- a/vtkm/exec/serial/CMakeLists.txt +++ b/vtkm/exec/serial/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/vtkm/exec/serial/internal/CMakeLists.txt b/vtkm/exec/serial/internal/CMakeLists.txt index 9cf11a58..b132287f 100644 --- a/vtkm/exec/serial/internal/CMakeLists.txt +++ b/vtkm/exec/serial/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/serial/internal/TaskTiling.h b/vtkm/exec/serial/internal/TaskTiling.h index 5b865b3e..925e8cd0 100644 --- a/vtkm/exec/serial/internal/TaskTiling.h +++ b/vtkm/exec/serial/internal/TaskTiling.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_serial_internal_TaskTiling_h diff --git a/vtkm/exec/serial/internal/testing/CMakeLists.txt b/vtkm/exec/serial/internal/testing/CMakeLists.txt index cdca5b82..c1a70112 100644 --- a/vtkm/exec/serial/internal/testing/CMakeLists.txt +++ b/vtkm/exec/serial/internal/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(unit_tests UnitTestTaskTilingSerial.cxx diff --git a/vtkm/exec/serial/internal/testing/UnitTestTaskTilingSerial.cxx b/vtkm/exec/serial/internal/testing/UnitTestTaskTilingSerial.cxx index 831b28a2..931929ed 100644 --- a/vtkm/exec/serial/internal/testing/UnitTestTaskTilingSerial.cxx +++ b/vtkm/exec/serial/internal/testing/UnitTestTaskTilingSerial.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/tbb/CMakeLists.txt b/vtkm/exec/tbb/CMakeLists.txt index d62192c6..9f98ed10 100644 --- a/vtkm/exec/tbb/CMakeLists.txt +++ b/vtkm/exec/tbb/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ #----------------------------------------------------------------------------- diff --git a/vtkm/exec/tbb/internal/CMakeLists.txt b/vtkm/exec/tbb/internal/CMakeLists.txt index 66105f5c..f8530973 100644 --- a/vtkm/exec/tbb/internal/CMakeLists.txt +++ b/vtkm/exec/tbb/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/exec/tbb/internal/TaskTiling.h b/vtkm/exec/tbb/internal/TaskTiling.h index 7beee283..33ec1dac 100644 --- a/vtkm/exec/tbb/internal/TaskTiling.h +++ b/vtkm/exec/tbb/internal/TaskTiling.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_exec_tbb_internal_TaskTiling_h #define vtk_m_exec_tbb_internal_TaskTiling_h diff --git a/vtkm/exec/tbb/internal/testing/CMakeLists.txt b/vtkm/exec/tbb/internal/testing/CMakeLists.txt index df507fc0..a0d4b303 100644 --- a/vtkm/exec/tbb/internal/testing/CMakeLists.txt +++ b/vtkm/exec/tbb/internal/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(unit_tests UnitTestTaskTilingTBB.cxx diff --git a/vtkm/exec/tbb/internal/testing/UnitTestTaskTilingTBB.cxx b/vtkm/exec/tbb/internal/testing/UnitTestTaskTilingTBB.cxx index edb4e182..b519acbc 100644 --- a/vtkm/exec/tbb/internal/testing/UnitTestTaskTilingTBB.cxx +++ b/vtkm/exec/tbb/internal/testing/UnitTestTaskTilingTBB.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/testing/CMakeLists.txt b/vtkm/exec/testing/CMakeLists.txt index 721178c0..f5337e74 100644 --- a/vtkm/exec/testing/CMakeLists.txt +++ b/vtkm/exec/testing/CMakeLists.txt @@ -1,5 +1,4 @@ -##============================================================================= -## +##============================================================================ ## Copyright (c) Kitware, Inc. ## All rights reserved. ## See LICENSE.txt for details. @@ -7,18 +6,7 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. -## -##============================================================================= +##============================================================================ set(unit_tests UnitTestCellDerivative.cxx diff --git a/vtkm/exec/testing/UnitTestCellDerivative.cxx b/vtkm/exec/testing/UnitTestCellDerivative.cxx index ff200263..e38fe473 100644 --- a/vtkm/exec/testing/UnitTestCellDerivative.cxx +++ b/vtkm/exec/testing/UnitTestCellDerivative.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/testing/UnitTestCellEdgeFace.cxx b/vtkm/exec/testing/UnitTestCellEdgeFace.cxx index 73ef0561..29a2e346 100644 --- a/vtkm/exec/testing/UnitTestCellEdgeFace.cxx +++ b/vtkm/exec/testing/UnitTestCellEdgeFace.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/testing/UnitTestCellInterpolate.cxx b/vtkm/exec/testing/UnitTestCellInterpolate.cxx index 3766c71b..a0eee782 100644 --- a/vtkm/exec/testing/UnitTestCellInterpolate.cxx +++ b/vtkm/exec/testing/UnitTestCellInterpolate.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/exec/testing/UnitTestParametricCoordinates.cxx b/vtkm/exec/testing/UnitTestParametricCoordinates.cxx index 3b58d40f..6952c7d6 100644 --- a/vtkm/exec/testing/UnitTestParametricCoordinates.cxx +++ b/vtkm/exec/testing/UnitTestParametricCoordinates.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2015 UT-Battelle, LLC. -// Copyright 2015 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/CMakeLists.txt b/vtkm/filter/CMakeLists.txt index b4af9570..39a3ce79 100644 --- a/vtkm/filter/CMakeLists.txt +++ b/vtkm/filter/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/filter/CellAverage.h b/vtkm/filter/CellAverage.h index b9e328a6..4780d005 100644 --- a/vtkm/filter/CellAverage.h +++ b/vtkm/filter/CellAverage.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CellAverage_h diff --git a/vtkm/filter/CellAverage.hxx b/vtkm/filter/CellAverage.hxx index 534573f6..5900e91f 100644 --- a/vtkm/filter/CellAverage.hxx +++ b/vtkm/filter/CellAverage.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/CellMeasures.h b/vtkm/filter/CellMeasures.h index 0bf161b7..99ec725d 100644 --- a/vtkm/filter/CellMeasures.h +++ b/vtkm/filter/CellMeasures.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CellMeasures_h diff --git a/vtkm/filter/CellMeasures.hxx b/vtkm/filter/CellMeasures.hxx index 171ae8cc..03ad8568 100644 --- a/vtkm/filter/CellMeasures.hxx +++ b/vtkm/filter/CellMeasures.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/CellSetConnectivity.h b/vtkm/filter/CellSetConnectivity.h index fefebe33..9a531438 100644 --- a/vtkm/filter/CellSetConnectivity.h +++ b/vtkm/filter/CellSetConnectivity.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtkm_m_filter_CellSetConnectivity_h #define vtkm_m_filter_CellSetConnectivity_h diff --git a/vtkm/filter/CellSetConnectivity.hxx b/vtkm/filter/CellSetConnectivity.hxx index 46c71b4c..ba0fdca7 100644 --- a/vtkm/filter/CellSetConnectivity.hxx +++ b/vtkm/filter/CellSetConnectivity.hxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtkm_m_filter_CellSetConnectivity_hxx #define vtkm_m_filter_CellSetConnectivity_hxx diff --git a/vtkm/filter/CleanGrid.h b/vtkm/filter/CleanGrid.h index b758e1d0..b029942b 100644 --- a/vtkm/filter/CleanGrid.h +++ b/vtkm/filter/CleanGrid.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CleanGrid_h #define vtk_m_filter_CleanGrid_h diff --git a/vtkm/filter/CleanGrid.hxx b/vtkm/filter/CleanGrid.hxx index 75697b61..5cc20b51 100644 --- a/vtkm/filter/CleanGrid.hxx +++ b/vtkm/filter/CleanGrid.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CleanGrid_hxx diff --git a/vtkm/filter/ClipWithField.h b/vtkm/filter/ClipWithField.h index 43cd5f55..136810ea 100644 --- a/vtkm/filter/ClipWithField.h +++ b/vtkm/filter/ClipWithField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ClipWithField_h diff --git a/vtkm/filter/ClipWithField.hxx b/vtkm/filter/ClipWithField.hxx index 757779f0..47dfdbf2 100644 --- a/vtkm/filter/ClipWithField.hxx +++ b/vtkm/filter/ClipWithField.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ClipWithImplicitFunction.h b/vtkm/filter/ClipWithImplicitFunction.h index 7c23936c..9d9114c0 100644 --- a/vtkm/filter/ClipWithImplicitFunction.h +++ b/vtkm/filter/ClipWithImplicitFunction.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ClipWithImplicitFunction_h diff --git a/vtkm/filter/ClipWithImplicitFunction.hxx b/vtkm/filter/ClipWithImplicitFunction.hxx index 62d49075..e9f68d60 100644 --- a/vtkm/filter/ClipWithImplicitFunction.hxx +++ b/vtkm/filter/ClipWithImplicitFunction.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ContourTreeUniform.h b/vtkm/filter/ContourTreeUniform.h index 233ad07b..31da0a08 100644 --- a/vtkm/filter/ContourTreeUniform.h +++ b/vtkm/filter/ContourTreeUniform.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2016, Los Alamos National Security, LLC // All rights reserved. diff --git a/vtkm/filter/ContourTreeUniform.hxx b/vtkm/filter/ContourTreeUniform.hxx index 6ed2aa90..220e6831 100644 --- a/vtkm/filter/ContourTreeUniform.hxx +++ b/vtkm/filter/ContourTreeUniform.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2016, Los Alamos National Security, LLC // All rights reserved. diff --git a/vtkm/filter/ContourTreeUniformAugmented.h b/vtkm/filter/ContourTreeUniformAugmented.h index e5c195f5..bff794a5 100644 --- a/vtkm/filter/ContourTreeUniformAugmented.h +++ b/vtkm/filter/ContourTreeUniformAugmented.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2018, The Regents of the University of California, through // Lawrence Berkeley National Laboratory (subject to receipt of any required approvals diff --git a/vtkm/filter/ContourTreeUniformAugmented.hxx b/vtkm/filter/ContourTreeUniformAugmented.hxx index 6cd8c144..88bcdb11 100644 --- a/vtkm/filter/ContourTreeUniformAugmented.hxx +++ b/vtkm/filter/ContourTreeUniformAugmented.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ // Copyright (c) 2018, The Regents of the University of California, through // Lawrence Berkeley National Laboratory (subject to receipt of any required approvals diff --git a/vtkm/filter/CoordinateSystemTransform.h b/vtkm/filter/CoordinateSystemTransform.h index 00172914..9044b86d 100644 --- a/vtkm/filter/CoordinateSystemTransform.h +++ b/vtkm/filter/CoordinateSystemTransform.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CoordianteSystemTransform_h diff --git a/vtkm/filter/CoordinateSystemTransform.hxx b/vtkm/filter/CoordinateSystemTransform.hxx index 8b59e648..f9dbf78c 100644 --- a/vtkm/filter/CoordinateSystemTransform.hxx +++ b/vtkm/filter/CoordinateSystemTransform.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/CrossProduct.h b/vtkm/filter/CrossProduct.h index 2c4ad504..3910f02f 100644 --- a/vtkm/filter/CrossProduct.h +++ b/vtkm/filter/CrossProduct.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CrossProduct_h diff --git a/vtkm/filter/CrossProduct.hxx b/vtkm/filter/CrossProduct.hxx index bb0f6661..6c6341c5 100644 --- a/vtkm/filter/CrossProduct.hxx +++ b/vtkm/filter/CrossProduct.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/DotProduct.h b/vtkm/filter/DotProduct.h index 58a4d4e5..2d254b7c 100644 --- a/vtkm/filter/DotProduct.h +++ b/vtkm/filter/DotProduct.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_DotProduct_h diff --git a/vtkm/filter/DotProduct.hxx b/vtkm/filter/DotProduct.hxx index 7d8e162a..790fd0d8 100644 --- a/vtkm/filter/DotProduct.hxx +++ b/vtkm/filter/DotProduct.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Entropy.h b/vtkm/filter/Entropy.h index baf42e3b..a149a55d 100644 --- a/vtkm/filter/Entropy.h +++ b/vtkm/filter/Entropy.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Entropy_h diff --git a/vtkm/filter/Entropy.hxx b/vtkm/filter/Entropy.hxx index 6cd0b47f..c7787b4d 100644 --- a/vtkm/filter/Entropy.hxx +++ b/vtkm/filter/Entropy.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ExternalFaces.h b/vtkm/filter/ExternalFaces.h index 2a9db5ae..50a9b092 100644 --- a/vtkm/filter/ExternalFaces.h +++ b/vtkm/filter/ExternalFaces.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ExternalFaces_h diff --git a/vtkm/filter/ExternalFaces.hxx b/vtkm/filter/ExternalFaces.hxx index 568a4326..92e00fcf 100644 --- a/vtkm/filter/ExternalFaces.hxx +++ b/vtkm/filter/ExternalFaces.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace vtkm diff --git a/vtkm/filter/ExtractGeometry.h b/vtkm/filter/ExtractGeometry.h index 11738669..dfd4413a 100644 --- a/vtkm/filter/ExtractGeometry.h +++ b/vtkm/filter/ExtractGeometry.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ExtractGeometry_h diff --git a/vtkm/filter/ExtractGeometry.hxx b/vtkm/filter/ExtractGeometry.hxx index 6eb6223a..f4843317 100644 --- a/vtkm/filter/ExtractGeometry.hxx +++ b/vtkm/filter/ExtractGeometry.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ExtractPoints.h b/vtkm/filter/ExtractPoints.h index 477eefba..6f038806 100644 --- a/vtkm/filter/ExtractPoints.h +++ b/vtkm/filter/ExtractPoints.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ExtractPoints_h diff --git a/vtkm/filter/ExtractPoints.hxx b/vtkm/filter/ExtractPoints.hxx index 82058efe..09af2601 100644 --- a/vtkm/filter/ExtractPoints.hxx +++ b/vtkm/filter/ExtractPoints.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ExtractStructured.h b/vtkm/filter/ExtractStructured.h index 199e6202..286f9b4f 100644 --- a/vtkm/filter/ExtractStructured.h +++ b/vtkm/filter/ExtractStructured.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ExtractStructured_h diff --git a/vtkm/filter/ExtractStructured.hxx b/vtkm/filter/ExtractStructured.hxx index 85d0475d..77bd52f4 100644 --- a/vtkm/filter/ExtractStructured.hxx +++ b/vtkm/filter/ExtractStructured.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/FieldMetadata.h b/vtkm/filter/FieldMetadata.h index febf0c09..8ffbfb68 100644 --- a/vtkm/filter/FieldMetadata.h +++ b/vtkm/filter/FieldMetadata.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_FieldMetadata_h diff --git a/vtkm/filter/FieldSelection.h b/vtkm/filter/FieldSelection.h index fcd8d47b..31f9a34c 100644 --- a/vtkm/filter/FieldSelection.h +++ b/vtkm/filter/FieldSelection.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_FieldSelection_h #define vtk_m_filter_FieldSelection_h diff --git a/vtkm/filter/FieldToColors.h b/vtkm/filter/FieldToColors.h index 2fd0920f..d8bdc574 100644 --- a/vtkm/filter/FieldToColors.h +++ b/vtkm/filter/FieldToColors.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_FieldToColors_h diff --git a/vtkm/filter/FieldToColors.hxx b/vtkm/filter/FieldToColors.hxx index 259fd141..0abcb099 100644 --- a/vtkm/filter/FieldToColors.hxx +++ b/vtkm/filter/FieldToColors.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Field_to_Colors_hxx diff --git a/vtkm/filter/Filter.h b/vtkm/filter/Filter.h index 86766994..39f454fd 100644 --- a/vtkm/filter/Filter.h +++ b/vtkm/filter/Filter.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Filter_h #define vtk_m_filter_Filter_h diff --git a/vtkm/filter/Filter.hxx b/vtkm/filter/Filter.hxx index c0731427..1eeda4fc 100644 --- a/vtkm/filter/Filter.hxx +++ b/vtkm/filter/Filter.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/FilterCell.h b/vtkm/filter/FilterCell.h index 1eb6cd34..0c701fdf 100644 --- a/vtkm/filter/FilterCell.h +++ b/vtkm/filter/FilterCell.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_CellFilter_h diff --git a/vtkm/filter/FilterCell.hxx b/vtkm/filter/FilterCell.hxx index b947ce18..5b5187a1 100644 --- a/vtkm/filter/FilterCell.hxx +++ b/vtkm/filter/FilterCell.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace vtkm diff --git a/vtkm/filter/FilterDataSet.h b/vtkm/filter/FilterDataSet.h index 6a0ffb8c..97549d67 100644 --- a/vtkm/filter/FilterDataSet.h +++ b/vtkm/filter/FilterDataSet.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_DataSetFilter_h diff --git a/vtkm/filter/FilterDataSet.hxx b/vtkm/filter/FilterDataSet.hxx index 0d2165cd..4d4dcb9d 100644 --- a/vtkm/filter/FilterDataSet.hxx +++ b/vtkm/filter/FilterDataSet.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/FilterDataSetWithField.h b/vtkm/filter/FilterDataSetWithField.h index 580ab7e9..c4ef4d37 100644 --- a/vtkm/filter/FilterDataSetWithField.h +++ b/vtkm/filter/FilterDataSetWithField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_DataSetWithFieldFilter_h diff --git a/vtkm/filter/FilterDataSetWithField.hxx b/vtkm/filter/FilterDataSetWithField.hxx index 8e6c211d..84fc5b16 100644 --- a/vtkm/filter/FilterDataSetWithField.hxx +++ b/vtkm/filter/FilterDataSetWithField.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/FilterField.h b/vtkm/filter/FilterField.h index 5be47ec3..cb3b1231 100644 --- a/vtkm/filter/FilterField.h +++ b/vtkm/filter/FilterField.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_FieldFilter_h diff --git a/vtkm/filter/FilterField.hxx b/vtkm/filter/FilterField.hxx index 1556d58f..5cd32179 100644 --- a/vtkm/filter/FilterField.hxx +++ b/vtkm/filter/FilterField.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/FilterTraits.h b/vtkm/filter/FilterTraits.h index b57e27f5..7a0cb863 100644 --- a/vtkm/filter/FilterTraits.h +++ b/vtkm/filter/FilterTraits.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_FilterTraits_h diff --git a/vtkm/filter/GhostCellClassify.h b/vtkm/filter/GhostCellClassify.h index 7df980f2..57e4b8ba 100644 --- a/vtkm/filter/GhostCellClassify.h +++ b/vtkm/filter/GhostCellClassify.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_GhostCellClassify_h #define vtk_m_filter_GhostCellClassify_h diff --git a/vtkm/filter/GhostCellClassify.hxx b/vtkm/filter/GhostCellClassify.hxx index 39db0600..d23d5406 100644 --- a/vtkm/filter/GhostCellClassify.hxx +++ b/vtkm/filter/GhostCellClassify.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/GhostCellRemove.h b/vtkm/filter/GhostCellRemove.h index ad1c59db..3d6a0b43 100644 --- a/vtkm/filter/GhostCellRemove.h +++ b/vtkm/filter/GhostCellRemove.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_GhostCellRemove_h diff --git a/vtkm/filter/GhostCellRemove.hxx b/vtkm/filter/GhostCellRemove.hxx index 8ea86538..ec3bd770 100644 --- a/vtkm/filter/GhostCellRemove.hxx +++ b/vtkm/filter/GhostCellRemove.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Gradient.h b/vtkm/filter/Gradient.h index 5add2c30..990cd722 100644 --- a/vtkm/filter/Gradient.h +++ b/vtkm/filter/Gradient.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Gradient_h diff --git a/vtkm/filter/Gradient.hxx b/vtkm/filter/Gradient.hxx index 48543d4e..38decbc3 100644 --- a/vtkm/filter/Gradient.hxx +++ b/vtkm/filter/Gradient.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Histogram.h b/vtkm/filter/Histogram.h index 526b2a04..7cdf74d7 100644 --- a/vtkm/filter/Histogram.h +++ b/vtkm/filter/Histogram.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Histogram_h diff --git a/vtkm/filter/Histogram.hxx b/vtkm/filter/Histogram.hxx index f255ceb0..c11dbd35 100644 --- a/vtkm/filter/Histogram.hxx +++ b/vtkm/filter/Histogram.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ImageConnectivity.h b/vtkm/filter/ImageConnectivity.h index d044a347..3d8cb5df 100644 --- a/vtkm/filter/ImageConnectivity.h +++ b/vtkm/filter/ImageConnectivity.h @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #ifndef vtk_m_filter_ImageConnectivity_h #define vtk_m_filter_ImageConnectivity_h diff --git a/vtkm/filter/ImageConnectivity.hxx b/vtkm/filter/ImageConnectivity.hxx index f3ec660e..0d05461a 100644 --- a/vtkm/filter/ImageConnectivity.hxx +++ b/vtkm/filter/ImageConnectivity.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ImageConnectivity_hxx diff --git a/vtkm/filter/Lagrangian.h b/vtkm/filter/Lagrangian.h index 3c06d517..be025655 100644 --- a/vtkm/filter/Lagrangian.h +++ b/vtkm/filter/Lagrangian.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Lagrangian_h diff --git a/vtkm/filter/Lagrangian.hxx b/vtkm/filter/Lagrangian.hxx index 33317edc..257b2f7e 100644 --- a/vtkm/filter/Lagrangian.hxx +++ b/vtkm/filter/Lagrangian.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/MarchingCubes.h b/vtkm/filter/MarchingCubes.h index 7dc60bf8..894e65e5 100644 --- a/vtkm/filter/MarchingCubes.h +++ b/vtkm/filter/MarchingCubes.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_MarchingCubes_h diff --git a/vtkm/filter/MarchingCubes.hxx b/vtkm/filter/MarchingCubes.hxx index 9f7da490..86e78d3f 100644 --- a/vtkm/filter/MarchingCubes.hxx +++ b/vtkm/filter/MarchingCubes.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Mask.h b/vtkm/filter/Mask.h index b59caac2..1b319e94 100644 --- a/vtkm/filter/Mask.h +++ b/vtkm/filter/Mask.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Mask_h diff --git a/vtkm/filter/Mask.hxx b/vtkm/filter/Mask.hxx index e5e0cf56..2f443dd2 100644 --- a/vtkm/filter/Mask.hxx +++ b/vtkm/filter/Mask.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace diff --git a/vtkm/filter/MaskPoints.h b/vtkm/filter/MaskPoints.h index d571f269..a58e609b 100644 --- a/vtkm/filter/MaskPoints.h +++ b/vtkm/filter/MaskPoints.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_MaskPoints_h diff --git a/vtkm/filter/MaskPoints.hxx b/vtkm/filter/MaskPoints.hxx index 9f5b29b0..f08b317c 100644 --- a/vtkm/filter/MaskPoints.hxx +++ b/vtkm/filter/MaskPoints.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace diff --git a/vtkm/filter/NDEntropy.h b/vtkm/filter/NDEntropy.h index 009acb94..d8a32b64 100644 --- a/vtkm/filter/NDEntropy.h +++ b/vtkm/filter/NDEntropy.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_NDEntropy_h #define vtk_m_filter_NDEntropy_h diff --git a/vtkm/filter/NDEntropy.hxx b/vtkm/filter/NDEntropy.hxx index f7d04de0..e9307abb 100644 --- a/vtkm/filter/NDEntropy.hxx +++ b/vtkm/filter/NDEntropy.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/NDHistogram.h b/vtkm/filter/NDHistogram.h index 9beb8ef8..a716c49a 100644 --- a/vtkm/filter/NDHistogram.h +++ b/vtkm/filter/NDHistogram.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_NDHistogram_h #define vtk_m_filter_NDHistogram_h diff --git a/vtkm/filter/NDHistogram.hxx b/vtkm/filter/NDHistogram.hxx index 094abd5b..3dc6e8c5 100644 --- a/vtkm/filter/NDHistogram.hxx +++ b/vtkm/filter/NDHistogram.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/OscillatorSource.h b/vtkm/filter/OscillatorSource.h index 660d253e..cb7ef71c 100644 --- a/vtkm/filter/OscillatorSource.h +++ b/vtkm/filter/OscillatorSource.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_OscillatorSource_h #define vtk_m_filter_OscillatorSource_h diff --git a/vtkm/filter/OscillatorSource.hxx b/vtkm/filter/OscillatorSource.hxx index 17006652..9e54de9f 100644 --- a/vtkm/filter/OscillatorSource.hxx +++ b/vtkm/filter/OscillatorSource.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Pathline.h b/vtkm/filter/Pathline.h index 4159f0c8..9c02f873 100644 --- a/vtkm/filter/Pathline.h +++ b/vtkm/filter/Pathline.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Pathline_h diff --git a/vtkm/filter/Pathline.hxx b/vtkm/filter/Pathline.hxx index d7f77dab..a439ae1b 100644 --- a/vtkm/filter/Pathline.hxx +++ b/vtkm/filter/Pathline.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/PointAverage.h b/vtkm/filter/PointAverage.h index becd48f7..5148b5fd 100644 --- a/vtkm/filter/PointAverage.h +++ b/vtkm/filter/PointAverage.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_PointAverage_h diff --git a/vtkm/filter/PointAverage.hxx b/vtkm/filter/PointAverage.hxx index 0a79d338..1b0fb9df 100644 --- a/vtkm/filter/PointAverage.hxx +++ b/vtkm/filter/PointAverage.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/PointElevation.h b/vtkm/filter/PointElevation.h index 65b8236f..2d2a331a 100644 --- a/vtkm/filter/PointElevation.h +++ b/vtkm/filter/PointElevation.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_PointElevation_h diff --git a/vtkm/filter/PointElevation.hxx b/vtkm/filter/PointElevation.hxx index 49f881d1..3cef5e03 100644 --- a/vtkm/filter/PointElevation.hxx +++ b/vtkm/filter/PointElevation.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/PointTransform.h b/vtkm/filter/PointTransform.h index aab2db00..246a98d2 100644 --- a/vtkm/filter/PointTransform.h +++ b/vtkm/filter/PointTransform.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_PointTransform_h diff --git a/vtkm/filter/PointTransform.hxx b/vtkm/filter/PointTransform.hxx index c23c9249..38ca72d9 100644 --- a/vtkm/filter/PointTransform.hxx +++ b/vtkm/filter/PointTransform.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/PolicyBase.h b/vtkm/filter/PolicyBase.h index 0d3d1360..c77f3f9c 100644 --- a/vtkm/filter/PolicyBase.h +++ b/vtkm/filter/PolicyBase.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_PolicyBase_h diff --git a/vtkm/filter/PolicyDefault.h b/vtkm/filter/PolicyDefault.h index 6b062fbf..3a0b42cc 100644 --- a/vtkm/filter/PolicyDefault.h +++ b/vtkm/filter/PolicyDefault.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_PolicyDefault_h diff --git a/vtkm/filter/Probe.h b/vtkm/filter/Probe.h index 42327431..224277f7 100644 --- a/vtkm/filter/Probe.h +++ b/vtkm/filter/Probe.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Probe_h #define vtk_m_filter_Probe_h diff --git a/vtkm/filter/Probe.hxx b/vtkm/filter/Probe.hxx index 6c663ecd..d27d80bb 100644 --- a/vtkm/filter/Probe.hxx +++ b/vtkm/filter/Probe.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Probe_hxx #define vtk_m_filter_Probe_hxx diff --git a/vtkm/filter/SplitSharpEdges.h b/vtkm/filter/SplitSharpEdges.h index f982ab43..476e0d09 100644 --- a/vtkm/filter/SplitSharpEdges.h +++ b/vtkm/filter/SplitSharpEdges.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_SplitSharpEdges_h diff --git a/vtkm/filter/SplitSharpEdges.hxx b/vtkm/filter/SplitSharpEdges.hxx index f5f44404..7dfd1a91 100644 --- a/vtkm/filter/SplitSharpEdges.hxx +++ b/vtkm/filter/SplitSharpEdges.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Streamline.h b/vtkm/filter/Streamline.h index 306428d9..a7b6d221 100644 --- a/vtkm/filter/Streamline.h +++ b/vtkm/filter/Streamline.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Streamline_h diff --git a/vtkm/filter/Streamline.hxx b/vtkm/filter/Streamline.hxx index 2ed817d4..b40de10f 100644 --- a/vtkm/filter/Streamline.hxx +++ b/vtkm/filter/Streamline.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/SurfaceNormals.h b/vtkm/filter/SurfaceNormals.h index 7ea63b22..82e62aee 100644 --- a/vtkm/filter/SurfaceNormals.h +++ b/vtkm/filter/SurfaceNormals.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_SurfaceNormals_h #define vtk_m_filter_SurfaceNormals_h diff --git a/vtkm/filter/SurfaceNormals.hxx b/vtkm/filter/SurfaceNormals.hxx index 2339e8d7..16697f60 100644 --- a/vtkm/filter/SurfaceNormals.hxx +++ b/vtkm/filter/SurfaceNormals.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Tetrahedralize.h b/vtkm/filter/Tetrahedralize.h index a6b10340..37d18c19 100644 --- a/vtkm/filter/Tetrahedralize.h +++ b/vtkm/filter/Tetrahedralize.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Tetrahedralize_h diff --git a/vtkm/filter/Tetrahedralize.hxx b/vtkm/filter/Tetrahedralize.hxx index 739650b1..fec98ab8 100644 --- a/vtkm/filter/Tetrahedralize.hxx +++ b/vtkm/filter/Tetrahedralize.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Threshold.h b/vtkm/filter/Threshold.h index 048e9277..c1835dd7 100644 --- a/vtkm/filter/Threshold.h +++ b/vtkm/filter/Threshold.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Threshold_h diff --git a/vtkm/filter/Threshold.hxx b/vtkm/filter/Threshold.hxx index ef83b2c2..febc617b 100644 --- a/vtkm/filter/Threshold.hxx +++ b/vtkm/filter/Threshold.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ThresholdPoints.h b/vtkm/filter/ThresholdPoints.h index f17cffab..feb3dc61 100644 --- a/vtkm/filter/ThresholdPoints.h +++ b/vtkm/filter/ThresholdPoints.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ThresholdPoints_h diff --git a/vtkm/filter/ThresholdPoints.hxx b/vtkm/filter/ThresholdPoints.hxx index a6051df5..a663b9fa 100644 --- a/vtkm/filter/ThresholdPoints.hxx +++ b/vtkm/filter/ThresholdPoints.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/Triangulate.h b/vtkm/filter/Triangulate.h index 2950ff93..50ff62dd 100644 --- a/vtkm/filter/Triangulate.h +++ b/vtkm/filter/Triangulate.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_Triangulate_h diff --git a/vtkm/filter/Triangulate.hxx b/vtkm/filter/Triangulate.hxx index 29b2b653..d8788042 100644 --- a/vtkm/filter/Triangulate.hxx +++ b/vtkm/filter/Triangulate.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/VectorMagnitude.h b/vtkm/filter/VectorMagnitude.h index a7ef32f4..cad936a9 100644 --- a/vtkm/filter/VectorMagnitude.h +++ b/vtkm/filter/VectorMagnitude.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_VectorMagnitude_h diff --git a/vtkm/filter/VectorMagnitude.hxx b/vtkm/filter/VectorMagnitude.hxx index ae8807c0..fdae3ebb 100644 --- a/vtkm/filter/VectorMagnitude.hxx +++ b/vtkm/filter/VectorMagnitude.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/VertexClustering.h b/vtkm/filter/VertexClustering.h index e303d98f..6b35fb6c 100644 --- a/vtkm/filter/VertexClustering.h +++ b/vtkm/filter/VertexClustering.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_VertexClustering_h diff --git a/vtkm/filter/VertexClustering.hxx b/vtkm/filter/VertexClustering.hxx index c370eb47..1c401c04 100644 --- a/vtkm/filter/VertexClustering.hxx +++ b/vtkm/filter/VertexClustering.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ namespace vtkm diff --git a/vtkm/filter/WarpScalar.h b/vtkm/filter/WarpScalar.h index 9fc43ca2..a1746986 100644 --- a/vtkm/filter/WarpScalar.h +++ b/vtkm/filter/WarpScalar.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_WarpScalar_h diff --git a/vtkm/filter/WarpScalar.hxx b/vtkm/filter/WarpScalar.hxx index 22412ce0..80b48e73 100644 --- a/vtkm/filter/WarpScalar.hxx +++ b/vtkm/filter/WarpScalar.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/WarpVector.h b/vtkm/filter/WarpVector.h index b4caa9e5..ca1a38ec 100644 --- a/vtkm/filter/WarpVector.h +++ b/vtkm/filter/WarpVector.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_WarpVector_h diff --git a/vtkm/filter/WarpVector.hxx b/vtkm/filter/WarpVector.hxx index 5f4e6433..2b34de9e 100644 --- a/vtkm/filter/WarpVector.hxx +++ b/vtkm/filter/WarpVector.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPCompressor1D.h b/vtkm/filter/ZFPCompressor1D.h index 316618f8..38a2fd9c 100644 --- a/vtkm/filter/ZFPCompressor1D.h +++ b/vtkm/filter/ZFPCompressor1D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPCompressor1D_h diff --git a/vtkm/filter/ZFPCompressor1D.hxx b/vtkm/filter/ZFPCompressor1D.hxx index 90bcb202..524e2c88 100644 --- a/vtkm/filter/ZFPCompressor1D.hxx +++ b/vtkm/filter/ZFPCompressor1D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPCompressor2D.h b/vtkm/filter/ZFPCompressor2D.h index b6c47711..c5932919 100644 --- a/vtkm/filter/ZFPCompressor2D.h +++ b/vtkm/filter/ZFPCompressor2D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPCompressor2D_h diff --git a/vtkm/filter/ZFPCompressor2D.hxx b/vtkm/filter/ZFPCompressor2D.hxx index 030d8195..118f0e03 100644 --- a/vtkm/filter/ZFPCompressor2D.hxx +++ b/vtkm/filter/ZFPCompressor2D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPCompressor3D.h b/vtkm/filter/ZFPCompressor3D.h index ab02d221..22777b02 100644 --- a/vtkm/filter/ZFPCompressor3D.h +++ b/vtkm/filter/ZFPCompressor3D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPCompressor3D_h diff --git a/vtkm/filter/ZFPCompressor3D.hxx b/vtkm/filter/ZFPCompressor3D.hxx index 072ebe42..f632aab9 100644 --- a/vtkm/filter/ZFPCompressor3D.hxx +++ b/vtkm/filter/ZFPCompressor3D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPDecompressor1D.h b/vtkm/filter/ZFPDecompressor1D.h index e16cb47c..3e30716d 100644 --- a/vtkm/filter/ZFPDecompressor1D.h +++ b/vtkm/filter/ZFPDecompressor1D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPDecompressor1D_h diff --git a/vtkm/filter/ZFPDecompressor1D.hxx b/vtkm/filter/ZFPDecompressor1D.hxx index aaecad96..1f10e593 100644 --- a/vtkm/filter/ZFPDecompressor1D.hxx +++ b/vtkm/filter/ZFPDecompressor1D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPDecompressor2D.h b/vtkm/filter/ZFPDecompressor2D.h index 2db68624..671aeb1e 100644 --- a/vtkm/filter/ZFPDecompressor2D.h +++ b/vtkm/filter/ZFPDecompressor2D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPDecompressor2D_h diff --git a/vtkm/filter/ZFPDecompressor2D.hxx b/vtkm/filter/ZFPDecompressor2D.hxx index f295da22..8d934c03 100644 --- a/vtkm/filter/ZFPDecompressor2D.hxx +++ b/vtkm/filter/ZFPDecompressor2D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/ZFPDecompressor3D.h b/vtkm/filter/ZFPDecompressor3D.h index 0cc86483..3267df2e 100644 --- a/vtkm/filter/ZFPDecompressor3D.h +++ b/vtkm/filter/ZFPDecompressor3D.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_ZFPDecompressor3D_h diff --git a/vtkm/filter/ZFPDecompressor3D.hxx b/vtkm/filter/ZFPDecompressor3D.hxx index 28065dfd..363889b7 100644 --- a/vtkm/filter/ZFPDecompressor3D.hxx +++ b/vtkm/filter/ZFPDecompressor3D.hxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/internal/CMakeLists.txt b/vtkm/filter/internal/CMakeLists.txt index 90a86c38..857465e8 100644 --- a/vtkm/filter/internal/CMakeLists.txt +++ b/vtkm/filter/internal/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(headers diff --git a/vtkm/filter/internal/CreateResult.h b/vtkm/filter/internal/CreateResult.h index e1481af9..ca6f83ff 100644 --- a/vtkm/filter/internal/CreateResult.h +++ b/vtkm/filter/internal/CreateResult.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_internal_CreateResult_h #define vtk_m_filter_internal_CreateResult_h diff --git a/vtkm/filter/internal/ResolveFieldTypeAndExecute.h b/vtkm/filter/internal/ResolveFieldTypeAndExecute.h index 3d74d214..2aee447c 100644 --- a/vtkm/filter/internal/ResolveFieldTypeAndExecute.h +++ b/vtkm/filter/internal/ResolveFieldTypeAndExecute.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_internal_ResolveFieldTypeAndExecute_h #define vtk_m_filter_internal_ResolveFieldTypeAndExecute_h diff --git a/vtkm/filter/internal/ResolveFieldTypeAndMap.h b/vtkm/filter/internal/ResolveFieldTypeAndMap.h index 8e14238e..3c051a56 100644 --- a/vtkm/filter/internal/ResolveFieldTypeAndMap.h +++ b/vtkm/filter/internal/ResolveFieldTypeAndMap.h @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #ifndef vtk_m_filter_internal_ResolveFieldTypeAndMap_h #define vtk_m_filter_internal_ResolveFieldTypeAndMap_h diff --git a/vtkm/filter/testing/CMakeLists.txt b/vtkm/filter/testing/CMakeLists.txt index add57136..31008f5a 100644 --- a/vtkm/filter/testing/CMakeLists.txt +++ b/vtkm/filter/testing/CMakeLists.txt @@ -2,20 +2,10 @@ ## 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. -## -## Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -## Copyright 2014 UT-Battelle, LLC. -## Copyright 2014 Los Alamos National Security. -## -## Under the terms of Contract DE-NA0003525 with NTESS, -## the U.S. Government retains certain rights in this software. -## -## Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -## Laboratory (LANL), the U.S. Government retains certain rights in -## this software. ##============================================================================ set(unit_tests diff --git a/vtkm/filter/testing/UnitTestCellAverageFilter.cxx b/vtkm/filter/testing/UnitTestCellAverageFilter.cxx index e944479c..a96166a5 100644 --- a/vtkm/filter/testing/UnitTestCellAverageFilter.cxx +++ b/vtkm/filter/testing/UnitTestCellAverageFilter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/testing/UnitTestCellMeasuresFilter.cxx b/vtkm/filter/testing/UnitTestCellMeasuresFilter.cxx index 4ec53669..b87af77a 100644 --- a/vtkm/filter/testing/UnitTestCellMeasuresFilter.cxx +++ b/vtkm/filter/testing/UnitTestCellMeasuresFilter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2017 UT-Battelle, LLC. -// Copyright 2017 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/testing/UnitTestCellSetConnectivityFilter.cxx b/vtkm/filter/testing/UnitTestCellSetConnectivityFilter.cxx index 6d563fec..18f1720c 100644 --- a/vtkm/filter/testing/UnitTestCellSetConnectivityFilter.cxx +++ b/vtkm/filter/testing/UnitTestCellSetConnectivityFilter.cxx @@ -1,5 +1,4 @@ -//============================================================================= -// +//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. @@ -7,18 +6,7 @@ // 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. -// -// Copyright 2018 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2018 UT-Battelle, LLC. -// Copyright 2018 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. -// -//============================================================================= +//============================================================================ #include #include diff --git a/vtkm/filter/testing/UnitTestCleanGrid.cxx b/vtkm/filter/testing/UnitTestCleanGrid.cxx index ea8f0334..ca62d83b 100644 --- a/vtkm/filter/testing/UnitTestCleanGrid.cxx +++ b/vtkm/filter/testing/UnitTestCleanGrid.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2016 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2016 UT-Battelle, LLC. -// Copyright 2016 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/testing/UnitTestClipWithFieldFilter.cxx b/vtkm/filter/testing/UnitTestClipWithFieldFilter.cxx index 0289e67d..ab389f60 100644 --- a/vtkm/filter/testing/UnitTestClipWithFieldFilter.cxx +++ b/vtkm/filter/testing/UnitTestClipWithFieldFilter.cxx @@ -2,20 +2,10 @@ // 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. -// -// Copyright 2014 National Technology & Engineering Solutions of Sandia, LLC (NTESS). -// Copyright 2014 UT-Battelle, LLC. -// Copyright 2014 Los Alamos National Security. -// -// Under the terms of Contract DE-NA0003525 with NTESS, -// the U.S. Government retains certain rights in this software. -// -// Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National -// Laboratory (LANL), the U.S. Government retains certain rights in -// this software. //============================================================================ #include diff --git a/vtkm/filter/testing/UnitTestClipWithImplicitFunctionFilter.cxx b/vtkm/filter/testing/UnitTestClipWithImplicitFunctionFilter.cxx index aae11ed3..8485f1d6 100644 --- a/vtkm/filter/testing/UnitTestClipWithImplicitFunctionFilter.cxx +++ b/vtkm/filter/testing/UnitTestClipWithImplicitFunctionFilter.cxx @@ -2,20 +2,10 @@ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. +// // This software is distributed WITHOUT ANY WARRANTY; without even