From 71db6331f8dd0d5abbeee92977af01293be4f427 Mon Sep 17 00:00:00 2001
From: Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl>
Date: Mon, 28 Nov 2016 15:54:07 +0100
Subject: Update headers (website+2016)

---
 matlab/algorithms/DART/DARTalgorithm.m                  |  6 +++---
 matlab/algorithms/DART/IterativeTomography.m            | 10 ++++++++++
 matlab/algorithms/DART/IterativeTomography3D.m          | 10 ++++++++++
 matlab/algorithms/DART/Kernels.m                        |  6 +++---
 matlab/algorithms/DART/MaskingDefault.m                 |  6 +++---
 matlab/algorithms/DART/MaskingGPU.m                     |  6 +++---
 matlab/algorithms/DART/OutputDefault.m                  |  6 +++---
 matlab/algorithms/DART/SegmentationDefault.m            |  6 +++---
 matlab/algorithms/DART/SmoothingDefault.m               |  6 +++---
 matlab/algorithms/DART/SmoothingGPU.m                   |  6 +++---
 matlab/algorithms/DART/StatisticsDefault.m              |  6 +++---
 matlab/algorithms/DART/examples/example1.m              |  6 +++---
 matlab/algorithms/DART/examples/example2.m              |  6 +++---
 matlab/algorithms/DART/examples/example3.m              |  6 +++---
 matlab/algorithms/DART/tools/DARToptimizer.m            |  6 +++---
 matlab/algorithms/DART/tools/DARToptimizerBoneStudy.m   |  6 +++---
 matlab/algorithms/DART/tools/ProjDiffOptimFunc.m        |  6 +++---
 matlab/algorithms/DART/tools/dart_create_base_phantom.m |  6 +++---
 matlab/algorithms/DART/tools/dart_scheduler.m           |  6 +++---
 matlab/algorithms/DART/tools/rNMPOptimFunc.m            |  6 +++---
 20 files changed, 74 insertions(+), 54 deletions(-)

(limited to 'matlab/algorithms/DART')

diff --git a/matlab/algorithms/DART/DARTalgorithm.m b/matlab/algorithms/DART/DARTalgorithm.m
index fc707dd..34beeee 100644
--- a/matlab/algorithms/DART/DARTalgorithm.m
+++ b/matlab/algorithms/DART/DARTalgorithm.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef DARTalgorithm < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/IterativeTomography.m b/matlab/algorithms/DART/IterativeTomography.m
index 3875e6b..e94dd36 100644
--- a/matlab/algorithms/DART/IterativeTomography.m
+++ b/matlab/algorithms/DART/IterativeTomography.m
@@ -1,3 +1,13 @@
+%--------------------------------------------------------------------------
+% This file is part of the ASTRA Toolbox
+%
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
+% License: Open Source under GPLv3
+% Contact: astra@uantwerpen.be
+% Website: http://www.astra-toolbox.com/
+%--------------------------------------------------------------------------
+
 classdef IterativeTomography < matlab.mixin.Copyable
 
 	% Algorithm class for 2D Iterative Tomography.
diff --git a/matlab/algorithms/DART/IterativeTomography3D.m b/matlab/algorithms/DART/IterativeTomography3D.m
index 29b963f..4a0b33a 100644
--- a/matlab/algorithms/DART/IterativeTomography3D.m
+++ b/matlab/algorithms/DART/IterativeTomography3D.m
@@ -1,3 +1,13 @@
+%--------------------------------------------------------------------------
+% This file is part of the ASTRA Toolbox
+%
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
+% License: Open Source under GPLv3
+% Contact: astra@uantwerpen.be
+% Website: http://www.astra-toolbox.com/
+%--------------------------------------------------------------------------
+
 classdef IterativeTomography3D < matlab.mixin.Copyable
 
 	% Algorithm class for 3D Iterative Tomography.
diff --git a/matlab/algorithms/DART/Kernels.m b/matlab/algorithms/DART/Kernels.m
index 558f611..02200f7 100644
--- a/matlab/algorithms/DART/Kernels.m
+++ b/matlab/algorithms/DART/Kernels.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef Kernels
diff --git a/matlab/algorithms/DART/MaskingDefault.m b/matlab/algorithms/DART/MaskingDefault.m
index f91a6f5..cca143e 100644
--- a/matlab/algorithms/DART/MaskingDefault.m
+++ b/matlab/algorithms/DART/MaskingDefault.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef MaskingDefault < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/MaskingGPU.m b/matlab/algorithms/DART/MaskingGPU.m
index 7d31aa8..32859a2 100644
--- a/matlab/algorithms/DART/MaskingGPU.m
+++ b/matlab/algorithms/DART/MaskingGPU.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef MaskingGPU < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/OutputDefault.m b/matlab/algorithms/DART/OutputDefault.m
index 33e908b..cb9979c 100644
--- a/matlab/algorithms/DART/OutputDefault.m
+++ b/matlab/algorithms/DART/OutputDefault.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef OutputDefault < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/SegmentationDefault.m b/matlab/algorithms/DART/SegmentationDefault.m
index 98265c0..4c808d3 100644
--- a/matlab/algorithms/DART/SegmentationDefault.m
+++ b/matlab/algorithms/DART/SegmentationDefault.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef SegmentationDefault < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/SmoothingDefault.m b/matlab/algorithms/DART/SmoothingDefault.m
index 1974fa1..9d1ea9e 100644
--- a/matlab/algorithms/DART/SmoothingDefault.m
+++ b/matlab/algorithms/DART/SmoothingDefault.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef SmoothingDefault < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/SmoothingGPU.m b/matlab/algorithms/DART/SmoothingGPU.m
index 1249e19..7041f19 100644
--- a/matlab/algorithms/DART/SmoothingGPU.m
+++ b/matlab/algorithms/DART/SmoothingGPU.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef SmoothingGPU < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/StatisticsDefault.m b/matlab/algorithms/DART/StatisticsDefault.m
index 9d33256..02e877b 100644
--- a/matlab/algorithms/DART/StatisticsDefault.m
+++ b/matlab/algorithms/DART/StatisticsDefault.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef StatisticsDefault < matlab.mixin.Copyable
diff --git a/matlab/algorithms/DART/examples/example1.m b/matlab/algorithms/DART/examples/example1.m
index cb02e0f..6c86473 100644
--- a/matlab/algorithms/DART/examples/example1.m
+++ b/matlab/algorithms/DART/examples/example1.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 addpath('../');
diff --git a/matlab/algorithms/DART/examples/example2.m b/matlab/algorithms/DART/examples/example2.m
index 89660a5..85774e5 100644
--- a/matlab/algorithms/DART/examples/example2.m
+++ b/matlab/algorithms/DART/examples/example2.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 addpath('../');
diff --git a/matlab/algorithms/DART/examples/example3.m b/matlab/algorithms/DART/examples/example3.m
index cc80b0f..647ad2d 100644
--- a/matlab/algorithms/DART/examples/example3.m
+++ b/matlab/algorithms/DART/examples/example3.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 addpath('../');
diff --git a/matlab/algorithms/DART/tools/DARToptimizer.m b/matlab/algorithms/DART/tools/DARToptimizer.m
index 7aeabbe..424ff22 100644
--- a/matlab/algorithms/DART/tools/DARToptimizer.m
+++ b/matlab/algorithms/DART/tools/DARToptimizer.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef DARToptimizer < handle
diff --git a/matlab/algorithms/DART/tools/DARToptimizerBoneStudy.m b/matlab/algorithms/DART/tools/DARToptimizerBoneStudy.m
index 5bcf6e9..c641f87 100644
--- a/matlab/algorithms/DART/tools/DARToptimizerBoneStudy.m
+++ b/matlab/algorithms/DART/tools/DARToptimizerBoneStudy.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef DARToptimizerBoneStudy < handle
diff --git a/matlab/algorithms/DART/tools/ProjDiffOptimFunc.m b/matlab/algorithms/DART/tools/ProjDiffOptimFunc.m
index 64f3091..72b328f 100644
--- a/matlab/algorithms/DART/tools/ProjDiffOptimFunc.m
+++ b/matlab/algorithms/DART/tools/ProjDiffOptimFunc.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef ProjDiffOptimFunc < handle
diff --git a/matlab/algorithms/DART/tools/dart_create_base_phantom.m b/matlab/algorithms/DART/tools/dart_create_base_phantom.m
index 4c7061e..acd4048 100644
--- a/matlab/algorithms/DART/tools/dart_create_base_phantom.m
+++ b/matlab/algorithms/DART/tools/dart_create_base_phantom.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 function base = dart_create_base_phantom(Im, angle_count, angle_range, gpu_core)
diff --git a/matlab/algorithms/DART/tools/dart_scheduler.m b/matlab/algorithms/DART/tools/dart_scheduler.m
index 007fcaa..4749fb1 100644
--- a/matlab/algorithms/DART/tools/dart_scheduler.m
+++ b/matlab/algorithms/DART/tools/dart_scheduler.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 function dart_scheduler(D_tmpl, iterations, settings)
diff --git a/matlab/algorithms/DART/tools/rNMPOptimFunc.m b/matlab/algorithms/DART/tools/rNMPOptimFunc.m
index 7649d7f..5eb92bf 100644
--- a/matlab/algorithms/DART/tools/rNMPOptimFunc.m
+++ b/matlab/algorithms/DART/tools/rNMPOptimFunc.m
@@ -1,11 +1,11 @@
 %--------------------------------------------------------------------------
 % This file is part of the ASTRA Toolbox
 %
-% Copyright: 2010-2014, iMinds-Vision Lab, University of Antwerp
-%                 2014, CWI, Amsterdam
+% Copyright: 2010-2016, iMinds-Vision Lab, University of Antwerp
+%            2014-2016, CWI, Amsterdam
 % License: Open Source under GPLv3
 % Contact: astra@uantwerpen.be
-% Website: http://sf.net/projects/astra-toolbox
+% Website: http://www.astra-toolbox.com/
 %--------------------------------------------------------------------------
 
 classdef rNMPOptimFunc < handle
-- 
cgit v1.2.3