From ab78790ae73c6de74ca8db8038e23428bd897bc8 Mon Sep 17 00:00:00 2001 From: Daljit Singh Date: Wed, 29 Nov 2023 08:36:15 +0000 Subject: [PATCH 01/12] Fix memory leak in FFT1D --- core/math/fft.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/core/math/fft.h b/core/math/fft.h index 1dc83c9ca8..7b91a869a8 100644 --- a/core/math/fft.h +++ b/core/math/fft.h @@ -41,6 +41,20 @@ class FFT1D { _plan = fftw_plan_dft_1d(other._data.size(), p, p, direction, FFTW_MEASURE); } + FFT1D &operator=(const FFT1D &other) { + fftw_destroy_plan(_plan); + _data.resize(other._data.size()); + direction = other.direction; + fftw_complex *p = reinterpret_cast(&(_data[0])); + _plan = fftw_plan_dft_1d(other._data.size(), p, p, direction, FFTW_MEASURE); + return *this; + } + + ~FFT1D() { fftw_destroy_plan(_plan); } + + FFT1D(FFT1D &&other) = delete; + FFT1D &operator=(FFT1D &&other) = delete; + const size_t size() const { return _data.size(); } const cdouble &operator[](size_t n) const { return _data[n]; } From 0d270844a6b7c9153b510662ab71e0d9005d1dd9 Mon Sep 17 00:00:00 2001 From: Daljit Singh Date: Tue, 28 Nov 2023 23:49:45 +0000 Subject: [PATCH 02/12] Fix memory leak in sh2peaks The precomputer instance in Processor was allocated as a raw pointer and thus never freed. --- cmd/sh2peaks.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/sh2peaks.cpp b/cmd/sh2peaks.cpp index ed28267904..5ccd286811 100644 --- a/cmd/sh2peaks.cpp +++ b/cmd/sh2peaks.cpp @@ -157,7 +157,7 @@ class Processor { threshold(threshold), peaks_out(npeaks), ipeaks_vox(ipeaks_data), - precomputer(use_precomputer ? new Math::SH::PrecomputedAL(lmax) : nullptr) {} + precomputer(use_precomputer ? std::make_shared>(lmax) : nullptr) {} bool operator()(const Item &item) { @@ -175,7 +175,7 @@ class Processor { for (size_t i = 0; i < size_t(dirs.rows()); i++) { Direction p(dirs(i, 0), dirs(i, 1)); - p.a = Math::SH::get_peak(item.data, lmax, p.v, precomputer); + p.a = Math::SH::get_peak(item.data, lmax, p.v, precomputer.get()); if (std::isfinite(p.a)) { for (size_t j = 0; j < all_peaks.size(); j++) { if (abs(p.v.dot(all_peaks[j].v)) > DOT_THRESHOLD) { @@ -249,7 +249,7 @@ class Processor { value_type threshold; vector peaks_out; Image ipeaks_vox; - Math::SH::PrecomputedAL *precomputer; + std::shared_ptr> precomputer; bool check_input(const Item &item) { if (ipeaks_vox.valid()) { From 5b43adef6cb5b74537e44525eeddbdae2f686a7c Mon Sep 17 00:00:00 2001 From: J-Donald Tournier Date: Wed, 29 Nov 2023 11:29:59 +0000 Subject: [PATCH 03/12] Update fft.h following suggestions from clang-tidy --- core/math/fft.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/math/fft.h b/core/math/fft.h index 7b91a869a8..55077641e3 100644 --- a/core/math/fft.h +++ b/core/math/fft.h @@ -32,21 +32,21 @@ namespace Math { class FFT1D { public: FFT1D(size_t N, int direction) : _data(N), direction(direction) { - fftw_complex *p = reinterpret_cast(&(_data[0])); - _plan = fftw_plan_dft_1d(N, p, p, direction, FFTW_MEASURE); + fftw_complex *p = reinterpret_cast(_data.data()); + _plan = fftw_plan_dft_1d(static_cast(N), p, p, direction, FFTW_MEASURE); } FFT1D(const FFT1D &other) : _data(other._data.size()), direction(other.direction) { - fftw_complex *p = reinterpret_cast(&(_data[0])); - _plan = fftw_plan_dft_1d(other._data.size(), p, p, direction, FFTW_MEASURE); + fftw_complex *p = reinterpret_cast(_data.data()); + _plan = fftw_plan_dft_1d(static_cast(_data.size()), p, p, direction, FFTW_MEASURE); } FFT1D &operator=(const FFT1D &other) { fftw_destroy_plan(_plan); _data.resize(other._data.size()); direction = other.direction; - fftw_complex *p = reinterpret_cast(&(_data[0])); - _plan = fftw_plan_dft_1d(other._data.size(), p, p, direction, FFTW_MEASURE); + fftw_complex *p = reinterpret_cast(_data.data()); + _plan = fftw_plan_dft_1d(static_cast(_data.size()), p, p, direction, FFTW_MEASURE); return *this; } From b6dd5d000ebd79a88e1cdf67500325169c79f996 Mon Sep 17 00:00:00 2001 From: MRtrixBot Date: Thu, 11 Jan 2024 13:11:20 +1100 Subject: [PATCH 04/12] Update copyright to 2024 on dev --- check_syntax | 2 +- clang-format-all | 2 +- cmd/5tt2gmwmi.cpp | 2 +- cmd/5tt2vis.cpp | 2 +- cmd/5ttcheck.cpp | 2 +- cmd/5ttedit.cpp | 2 +- cmd/afdconnectivity.cpp | 2 +- cmd/amp2response.cpp | 2 +- cmd/amp2sh.cpp | 2 +- cmd/connectome2tck.cpp | 2 +- cmd/connectomeedit.cpp | 2 +- cmd/connectomestats.cpp | 2 +- cmd/dcmedit.cpp | 2 +- cmd/dcminfo.cpp | 2 +- cmd/dirflip.cpp | 2 +- cmd/dirgen.cpp | 2 +- cmd/dirmerge.cpp | 2 +- cmd/dirorder.cpp | 2 +- cmd/dirsplit.cpp | 2 +- cmd/dirstat.cpp | 2 +- cmd/dwi2adc.cpp | 2 +- cmd/dwi2fod.cpp | 2 +- cmd/dwi2tensor.cpp | 2 +- cmd/dwidenoise.cpp | 2 +- cmd/dwiextract.cpp | 2 +- cmd/fixel2peaks.cpp | 2 +- cmd/fixel2sh.cpp | 2 +- cmd/fixel2tsf.cpp | 2 +- cmd/fixel2voxel.cpp | 2 +- cmd/fixelcfestats.cpp | 2 +- cmd/fixelconnectivity.cpp | 2 +- cmd/fixelconvert.cpp | 2 +- cmd/fixelcorrespondence.cpp | 2 +- cmd/fixelcrop.cpp | 2 +- cmd/fixelfilter.cpp | 2 +- cmd/fixelreorient.cpp | 2 +- cmd/fod2dec.cpp | 2 +- cmd/fod2fixel.cpp | 2 +- cmd/label2colour.cpp | 2 +- cmd/label2mesh.cpp | 2 +- cmd/labelconvert.cpp | 2 +- cmd/labelstats.cpp | 2 +- cmd/maskdump.cpp | 2 +- cmd/maskfilter.cpp | 2 +- cmd/mesh2voxel.cpp | 2 +- cmd/meshconvert.cpp | 2 +- cmd/meshfilter.cpp | 2 +- cmd/mraverageheader.cpp | 2 +- cmd/mrcalc.cpp | 2 +- cmd/mrcat.cpp | 2 +- cmd/mrcentroid.cpp | 2 +- cmd/mrcheckerboardmask.cpp | 2 +- cmd/mrclusterstats.cpp | 2 +- cmd/mrcolour.cpp | 2 +- cmd/mrconvert.cpp | 2 +- cmd/mrdegibbs.cpp | 2 +- cmd/mrdump.cpp | 2 +- cmd/mredit.cpp | 2 +- cmd/mrfilter.cpp | 2 +- cmd/mrgrid.cpp | 2 +- cmd/mrhistmatch.cpp | 2 +- cmd/mrhistogram.cpp | 2 +- cmd/mrinfo.cpp | 2 +- cmd/mrmath.cpp | 2 +- cmd/mrmetric.cpp | 2 +- cmd/mrregister.cpp | 2 +- cmd/mrstats.cpp | 2 +- cmd/mrthreshold.cpp | 2 +- cmd/mrtransform.cpp | 2 +- cmd/mrview.cpp | 2 +- cmd/mtnormalise.cpp | 2 +- cmd/peaks2amp.cpp | 2 +- cmd/peaks2fixel.cpp | 2 +- cmd/sh2amp.cpp | 2 +- cmd/sh2peaks.cpp | 2 +- cmd/sh2power.cpp | 2 +- cmd/sh2response.cpp | 2 +- cmd/shbasis.cpp | 2 +- cmd/shconv.cpp | 2 +- cmd/shview.cpp | 2 +- cmd/tck2connectome.cpp | 2 +- cmd/tck2fixel.cpp | 2 +- cmd/tckconvert.cpp | 2 +- cmd/tckdfc.cpp | 2 +- cmd/tckedit.cpp | 2 +- cmd/tckgen.cpp | 2 +- cmd/tckglobal.cpp | 2 +- cmd/tckinfo.cpp | 2 +- cmd/tckmap.cpp | 2 +- cmd/tckresample.cpp | 2 +- cmd/tcksample.cpp | 2 +- cmd/tcksift.cpp | 2 +- cmd/tcksift2.cpp | 2 +- cmd/tckstats.cpp | 2 +- cmd/tcktransform.cpp | 2 +- cmd/tensor2metric.cpp | 2 +- cmd/transformcalc.cpp | 2 +- cmd/transformcompose.cpp | 2 +- cmd/transformconvert.cpp | 2 +- cmd/tsfdivide.cpp | 2 +- cmd/tsfinfo.cpp | 2 +- cmd/tsfmult.cpp | 2 +- cmd/tsfsmooth.cpp | 2 +- cmd/tsfthreshold.cpp | 2 +- cmd/tsfvalidate.cpp | 2 +- cmd/vectorstats.cpp | 2 +- cmd/voxel2fixel.cpp | 2 +- cmd/voxel2mesh.cpp | 2 +- cmd/warp2metric.cpp | 2 +- cmd/warpconvert.cpp | 2 +- cmd/warpcorrect.cpp | 2 +- cmd/warpinit.cpp | 2 +- cmd/warpinvert.cpp | 2 +- core/adapter/base.h | 2 +- core/adapter/extract.h | 2 +- core/adapter/gaussian1D.h | 2 +- core/adapter/gradient1D.h | 2 +- core/adapter/gradient3D.h | 2 +- core/adapter/jacobian.h | 2 +- core/adapter/median.h | 2 +- core/adapter/neighbourhood3D.h | 2 +- core/adapter/normalise3D.h | 2 +- core/adapter/permute_axes.h | 2 +- core/adapter/regrid.h | 2 +- core/adapter/replicate.h | 2 +- core/adapter/reslice.cpp | 2 +- core/adapter/reslice.h | 2 +- core/adapter/subset.h | 2 +- core/adapter/warp.h | 2 +- core/algo/copy.h | 2 +- core/algo/histogram.cpp | 2 +- core/algo/histogram.h | 2 +- core/algo/iterator.h | 2 +- core/algo/loop.h | 2 +- core/algo/min_max.h | 2 +- core/algo/neighbourhooditerator.h | 2 +- core/algo/random_loop.h | 2 +- core/algo/random_threaded_loop.h | 2 +- core/algo/stochastic_threaded_loop.h | 2 +- core/algo/threaded_copy.h | 2 +- core/algo/threaded_loop.h | 2 +- core/app.cpp | 4 ++-- core/app.h | 2 +- core/apply.h | 2 +- core/axes.cpp | 2 +- core/axes.h | 2 +- core/cmdline_option.h | 2 +- core/command.h | 2 +- core/datatype.cpp | 2 +- core/datatype.h | 2 +- core/debug.h | 2 +- core/dwi/gradient.cpp | 2 +- core/dwi/gradient.h | 2 +- core/dwi/shells.cpp | 2 +- core/dwi/shells.h | 2 +- core/eigen_plugins/array.h | 2 +- core/eigen_plugins/dense_base.h | 2 +- core/eigen_plugins/matrix.h | 2 +- core/exception.cpp | 2 +- core/exception.h | 2 +- core/fetch_store.cpp | 2 +- core/fetch_store.h | 2 +- core/file/config.cpp | 2 +- core/file/config.h | 2 +- core/file/copy.h | 2 +- core/file/dicom/csa_entry.h | 2 +- core/file/dicom/definitions.h | 2 +- core/file/dicom/dict.cpp | 2 +- core/file/dicom/element.cpp | 2 +- core/file/dicom/element.h | 2 +- core/file/dicom/image.cpp | 2 +- core/file/dicom/image.h | 2 +- core/file/dicom/mapper.cpp | 2 +- core/file/dicom/mapper.h | 2 +- core/file/dicom/patient.cpp | 2 +- core/file/dicom/patient.h | 2 +- core/file/dicom/quick_scan.cpp | 2 +- core/file/dicom/quick_scan.h | 2 +- core/file/dicom/select_cmdline.cpp | 2 +- core/file/dicom/series.cpp | 2 +- core/file/dicom/series.h | 2 +- core/file/dicom/study.cpp | 2 +- core/file/dicom/study.h | 2 +- core/file/dicom/tree.cpp | 2 +- core/file/dicom/tree.h | 2 +- core/file/entry.h | 2 +- core/file/gz.h | 2 +- core/file/json_utils.cpp | 2 +- core/file/json_utils.h | 2 +- core/file/key_value.cpp | 2 +- core/file/key_value.h | 2 +- core/file/matrix.h | 2 +- core/file/mgh.cpp | 2 +- core/file/mgh.h | 2 +- core/file/mmap.cpp | 2 +- core/file/mmap.h | 2 +- core/file/name_parser.cpp | 2 +- core/file/name_parser.h | 2 +- core/file/nifti2.h | 2 +- core/file/nifti_utils.cpp | 2 +- core/file/nifti_utils.h | 2 +- core/file/npy.cpp | 2 +- core/file/npy.h | 2 +- core/file/ofstream.cpp | 2 +- core/file/ofstream.h | 2 +- core/file/path.h | 2 +- core/file/png.cpp | 2 +- core/file/png.h | 2 +- core/file/pyconfig.h | 2 +- core/file/utils.h | 2 +- core/filter/base.h | 2 +- core/filter/connected_components.cpp | 2 +- core/filter/connected_components.h | 2 +- core/filter/dilate.h | 2 +- core/filter/erode.h | 2 +- core/filter/fill.h | 2 +- core/filter/gradient.h | 2 +- core/filter/mask_clean.h | 2 +- core/filter/median.h | 2 +- core/filter/normalise.h | 2 +- core/filter/optimal_threshold.h | 2 +- core/filter/resize.h | 2 +- core/filter/reslice.h | 2 +- core/filter/smooth.h | 2 +- core/filter/warp.h | 2 +- core/filter/zclean.h | 2 +- core/fixel/fixel.cpp | 2 +- core/fixel/fixel.h | 2 +- core/fixel/helpers.h | 2 +- core/fixel/legacy/fixel_metric.h | 2 +- core/fixel/legacy/image.h | 2 +- core/fixel/legacy/keys.h | 2 +- core/fixel/loop.h | 2 +- core/formats/dicom.cpp | 2 +- core/formats/list.cpp | 2 +- core/formats/list.h | 2 +- core/formats/mgh.cpp | 2 +- core/formats/mgz.cpp | 2 +- core/formats/mri.cpp | 2 +- core/formats/mrtrix.cpp | 2 +- core/formats/mrtrix_gz.cpp | 2 +- core/formats/mrtrix_sparse_legacy.cpp | 2 +- core/formats/mrtrix_utils.cpp | 2 +- core/formats/mrtrix_utils.h | 2 +- core/formats/nifti1.cpp | 2 +- core/formats/nifti1_gz.cpp | 2 +- core/formats/nifti2.cpp | 2 +- core/formats/nifti2_gz.cpp | 2 +- core/formats/par.cpp | 2 +- core/formats/pipe.cpp | 2 +- core/formats/png.cpp | 2 +- core/formats/ram.cpp | 2 +- core/formats/xds.cpp | 2 +- core/half.h | 2 +- core/header.cpp | 2 +- core/header.h | 2 +- core/image.h | 2 +- core/image_diff.h | 2 +- core/image_helpers.h | 2 +- core/image_io/base.cpp | 2 +- core/image_io/base.h | 2 +- core/image_io/default.cpp | 2 +- core/image_io/default.h | 2 +- core/image_io/gz.cpp | 2 +- core/image_io/gz.h | 2 +- core/image_io/mosaic.cpp | 2 +- core/image_io/mosaic.h | 2 +- core/image_io/pipe.cpp | 2 +- core/image_io/pipe.h | 2 +- core/image_io/png.cpp | 2 +- core/image_io/png.h | 2 +- core/image_io/ram.cpp | 2 +- core/image_io/ram.h | 2 +- core/image_io/scratch.cpp | 2 +- core/image_io/scratch.h | 2 +- core/image_io/sparse.cpp | 2 +- core/image_io/sparse.h | 2 +- core/image_io/variable_scaling.cpp | 2 +- core/image_io/variable_scaling.h | 2 +- core/interp/base.h | 2 +- core/interp/cubic.h | 2 +- core/interp/linear.h | 2 +- core/interp/masked.h | 2 +- core/interp/nearest.h | 2 +- core/interp/sinc.h | 2 +- core/math/SH.cpp | 2 +- core/math/SH.h | 2 +- core/math/Sn_scale_estimator.h | 2 +- core/math/ZSH.h | 2 +- core/math/average_space.cpp | 2 +- core/math/average_space.h | 2 +- core/math/bessel.cpp | 2 +- core/math/bessel.h | 2 +- core/math/betainc.cpp | 2 +- core/math/betainc.h | 2 +- core/math/cauchy.h | 2 +- core/math/chebyshev.h | 2 +- core/math/check_gradient.h | 2 +- core/math/condition_number.h | 2 +- core/math/constrained_least_squares.h | 2 +- core/math/cubic_spline.h | 2 +- core/math/erfinv.cpp | 2 +- core/math/erfinv.h | 2 +- core/math/factorial.h | 2 +- core/math/fft.h | 2 +- core/math/gaussian.h | 2 +- core/math/golden_section_search.h | 2 +- core/math/gradient_descent.h | 2 +- core/math/gradient_descent_bb.h | 2 +- core/math/hermite.h | 2 +- core/math/least_squares.h | 2 +- core/math/legendre.h | 2 +- core/math/math.h | 2 +- core/math/median.h | 2 +- core/math/polynomial.h | 2 +- core/math/quadratic_line_search.h | 2 +- core/math/rician.h | 2 +- core/math/rng.h | 2 +- core/math/sech.h | 2 +- core/math/sinc.h | 2 +- core/math/sphere.h | 2 +- core/math/stats/fwe.cpp | 2 +- core/math/stats/fwe.h | 2 +- core/math/stats/glm.cpp | 2 +- core/math/stats/glm.h | 2 +- core/math/stats/import.cpp | 2 +- core/math/stats/import.h | 2 +- core/math/stats/shuffle.cpp | 2 +- core/math/stats/shuffle.h | 2 +- core/math/stats/typedefs.h | 2 +- core/math/welch_satterthwaite.h | 2 +- core/math/zstatistic.cpp | 2 +- core/math/zstatistic.h | 2 +- core/memory.h | 2 +- core/misc/bitset.cpp | 2 +- core/misc/bitset.h | 2 +- core/misc/voxel2vector.h | 2 +- core/mrtrix.cpp | 2 +- core/mrtrix.h | 2 +- core/ordered_thread_queue.h | 2 +- core/phase_encoding.cpp | 2 +- core/phase_encoding.h | 2 +- core/progressbar.cpp | 2 +- core/progressbar.h | 2 +- core/raw.h | 2 +- core/signal_handler.cpp | 2 +- core/signal_handler.h | 2 +- core/signals.h | 2 +- core/stats.cpp | 2 +- core/stats.h | 2 +- core/stride.cpp | 2 +- core/stride.h | 2 +- core/thread.cpp | 2 +- core/thread.h | 2 +- core/thread_queue.h | 2 +- core/timer.h | 2 +- core/transform.h | 2 +- core/types.h | 2 +- docs/format_config_options | 2 +- docs/format_environment_variables | 2 +- docs/generate_user_docs.sh | 2 +- docs/reference/commands/5tt2gmwmi.rst | 2 +- docs/reference/commands/5tt2vis.rst | 2 +- docs/reference/commands/5ttcheck.rst | 2 +- docs/reference/commands/5ttedit.rst | 2 +- docs/reference/commands/5ttgen.rst | 10 ++++---- docs/reference/commands/afdconnectivity.rst | 2 +- docs/reference/commands/amp2response.rst | 2 +- docs/reference/commands/amp2sh.rst | 2 +- docs/reference/commands/connectome2tck.rst | 2 +- docs/reference/commands/connectomeedit.rst | 2 +- docs/reference/commands/connectomestats.rst | 2 +- docs/reference/commands/dcmedit.rst | 2 +- docs/reference/commands/dcminfo.rst | 2 +- docs/reference/commands/dirflip.rst | 2 +- docs/reference/commands/dirgen.rst | 2 +- docs/reference/commands/dirmerge.rst | 2 +- docs/reference/commands/dirorder.rst | 2 +- docs/reference/commands/dirsplit.rst | 2 +- docs/reference/commands/dirstat.rst | 2 +- docs/reference/commands/dwi2adc.rst | 2 +- docs/reference/commands/dwi2fod.rst | 2 +- docs/reference/commands/dwi2mask.rst | 24 +++++++++---------- docs/reference/commands/dwi2response.rst | 14 +++++------ docs/reference/commands/dwi2tensor.rst | 2 +- docs/reference/commands/dwibiascorrect.rst | 8 +++---- docs/reference/commands/dwibiasnormmask.rst | 2 +- docs/reference/commands/dwicat.rst | 2 +- docs/reference/commands/dwiextract.rst | 2 +- docs/reference/commands/dwifslpreproc.rst | 2 +- docs/reference/commands/dwigradcheck.rst | 2 +- docs/reference/commands/dwinormalise.rst | 8 +++---- docs/reference/commands/dwishellmath.rst | 2 +- docs/reference/commands/fixel2peaks.rst | 2 +- docs/reference/commands/fixel2sh.rst | 2 +- docs/reference/commands/fixel2tsf.rst | 2 +- docs/reference/commands/fixel2voxel.rst | 2 +- docs/reference/commands/fixelcfestats.rst | 2 +- docs/reference/commands/fixelconnectivity.rst | 2 +- docs/reference/commands/fixelconvert.rst | 2 +- .../commands/fixelcorrespondence.rst | 2 +- docs/reference/commands/fixelcrop.rst | 2 +- docs/reference/commands/fixelfilter.rst | 2 +- docs/reference/commands/fixelreorient.rst | 2 +- docs/reference/commands/fod2fixel.rst | 2 +- docs/reference/commands/for_each.rst | 2 +- docs/reference/commands/label2colour.rst | 2 +- docs/reference/commands/label2mesh.rst | 2 +- docs/reference/commands/labelconvert.rst | 2 +- docs/reference/commands/labelsgmfix.rst | 2 +- docs/reference/commands/labelstats.rst | 2 +- docs/reference/commands/mask2glass.rst | 2 +- docs/reference/commands/maskdump.rst | 2 +- docs/reference/commands/maskfilter.rst | 2 +- docs/reference/commands/mesh2voxel.rst | 2 +- docs/reference/commands/meshconvert.rst | 2 +- docs/reference/commands/meshfilter.rst | 2 +- docs/reference/commands/mraverageheader.rst | 2 +- docs/reference/commands/mrcalc.rst | 2 +- docs/reference/commands/mrcat.rst | 2 +- docs/reference/commands/mrcentroid.rst | 2 +- .../reference/commands/mrcheckerboardmask.rst | 2 +- docs/reference/commands/mrclusterstats.rst | 2 +- docs/reference/commands/mrcolour.rst | 2 +- docs/reference/commands/mrconvert.rst | 2 +- docs/reference/commands/mrdegibbs.rst | 2 +- docs/reference/commands/mrdump.rst | 2 +- docs/reference/commands/mredit.rst | 2 +- docs/reference/commands/mrfilter.rst | 2 +- docs/reference/commands/mrgrid.rst | 2 +- docs/reference/commands/mrhistmatch.rst | 2 +- docs/reference/commands/mrhistogram.rst | 2 +- docs/reference/commands/mrinfo.rst | 2 +- docs/reference/commands/mrmath.rst | 2 +- docs/reference/commands/mrmetric.rst | 2 +- docs/reference/commands/mrregister.rst | 2 +- docs/reference/commands/mrstats.rst | 2 +- docs/reference/commands/mrthreshold.rst | 2 +- docs/reference/commands/mrtransform.rst | 2 +- docs/reference/commands/mrtrix_cleanup.rst | 2 +- docs/reference/commands/mrview.rst | 2 +- docs/reference/commands/mtnormalise.rst | 2 +- docs/reference/commands/peaks2amp.rst | 2 +- docs/reference/commands/peaks2fixel.rst | 2 +- .../commands/population_template.rst | 2 +- docs/reference/commands/responsemean.rst | 2 +- docs/reference/commands/sh2amp.rst | 2 +- docs/reference/commands/sh2peaks.rst | 2 +- docs/reference/commands/sh2power.rst | 2 +- docs/reference/commands/sh2response.rst | 2 +- docs/reference/commands/shbasis.rst | 2 +- docs/reference/commands/shconv.rst | 2 +- docs/reference/commands/shview.rst | 2 +- docs/reference/commands/tck2connectome.rst | 2 +- docs/reference/commands/tck2fixel.rst | 2 +- docs/reference/commands/tckconvert.rst | 2 +- docs/reference/commands/tckdfc.rst | 2 +- docs/reference/commands/tckedit.rst | 2 +- docs/reference/commands/tckgen.rst | 2 +- docs/reference/commands/tckinfo.rst | 2 +- docs/reference/commands/tckmap.rst | 2 +- docs/reference/commands/tckresample.rst | 2 +- docs/reference/commands/tcksample.rst | 2 +- docs/reference/commands/tcksift.rst | 2 +- docs/reference/commands/tcksift2.rst | 2 +- docs/reference/commands/tckstats.rst | 2 +- docs/reference/commands/tcktransform.rst | 2 +- docs/reference/commands/tensor2metric.rst | 2 +- docs/reference/commands/transformcalc.rst | 2 +- docs/reference/commands/transformcompose.rst | 2 +- docs/reference/commands/transformconvert.rst | 2 +- docs/reference/commands/tsfdivide.rst | 2 +- docs/reference/commands/tsfinfo.rst | 2 +- docs/reference/commands/tsfmult.rst | 2 +- docs/reference/commands/tsfsmooth.rst | 2 +- docs/reference/commands/tsfthreshold.rst | 2 +- docs/reference/commands/tsfvalidate.rst | 2 +- docs/reference/commands/vectorstats.rst | 2 +- docs/reference/commands/voxel2fixel.rst | 2 +- docs/reference/commands/voxel2mesh.rst | 2 +- docs/reference/commands/warp2metric.rst | 2 +- docs/reference/commands/warpconvert.rst | 2 +- docs/reference/commands/warpcorrect.rst | 2 +- docs/reference/commands/warpinit.rst | 2 +- docs/reference/commands/warpinvert.rst | 2 +- doxygen | 2 +- generate_bash_completion.py | 2 +- install_mime_types.sh | 2 +- matlab/private/add_field.m | 2 +- matlab/read_mrtrix.m | 2 +- matlab/read_mrtrix_tracks.m | 2 +- matlab/read_mrtrix_tsf.m | 2 +- matlab/write_mrtrix.m | 2 +- matlab/write_mrtrix_tracks.m | 2 +- matlab/write_mrtrix_tsf.m | 2 +- mrview.desktop | 2 +- python/lib/mrtrix3/_5ttgen/freesurfer.py | 2 +- python/lib/mrtrix3/_5ttgen/fsl.py | 2 +- python/lib/mrtrix3/_5ttgen/gif.py | 2 +- python/lib/mrtrix3/_5ttgen/hsvs.py | 2 +- python/lib/mrtrix3/__init__.py | 2 +- python/lib/mrtrix3/algorithm.py | 2 +- python/lib/mrtrix3/app.py | 4 ++-- python/lib/mrtrix3/dwi2mask/3dautomask.py | 2 +- python/lib/mrtrix3/dwi2mask/ants.py | 2 +- python/lib/mrtrix3/dwi2mask/b02template.py | 2 +- python/lib/mrtrix3/dwi2mask/consensus.py | 2 +- python/lib/mrtrix3/dwi2mask/fslbet.py | 2 +- python/lib/mrtrix3/dwi2mask/hdbet.py | 2 +- python/lib/mrtrix3/dwi2mask/legacy.py | 2 +- python/lib/mrtrix3/dwi2mask/mean.py | 2 +- python/lib/mrtrix3/dwi2mask/mtnorm.py | 2 +- python/lib/mrtrix3/dwi2mask/synthstrip.py | 2 +- python/lib/mrtrix3/dwi2mask/trace.py | 2 +- python/lib/mrtrix3/dwi2response/dhollander.py | 2 +- python/lib/mrtrix3/dwi2response/fa.py | 2 +- python/lib/mrtrix3/dwi2response/manual.py | 2 +- python/lib/mrtrix3/dwi2response/msmt_5tt.py | 2 +- python/lib/mrtrix3/dwi2response/tax.py | 2 +- python/lib/mrtrix3/dwi2response/tournier.py | 2 +- python/lib/mrtrix3/dwibiascorrect/ants.py | 2 +- python/lib/mrtrix3/dwibiascorrect/fsl.py | 2 +- python/lib/mrtrix3/dwibiascorrect/mtnorm.py | 2 +- python/lib/mrtrix3/dwinormalise/group.py | 2 +- python/lib/mrtrix3/dwinormalise/manual.py | 2 +- python/lib/mrtrix3/dwinormalise/mtnorm.py | 2 +- python/lib/mrtrix3/fsl.py | 2 +- python/lib/mrtrix3/image.py | 2 +- python/lib/mrtrix3/matrix.py | 2 +- python/lib/mrtrix3/path.py | 2 +- python/lib/mrtrix3/phaseencoding.py | 2 +- python/lib/mrtrix3/run.py | 2 +- python/lib/mrtrix3/sh.py | 2 +- python/lib/mrtrix3/utils.py | 2 +- run_pylint | 2 +- set_path | 2 +- share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt | 2 +- .../_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt | 2 +- share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt | 2 +- share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt | 2 +- share/mrtrix3/labelconvert/aal.txt | 2 +- share/mrtrix3/labelconvert/aal2.txt | 2 +- .../labelconvert/fs2lobes_cinginc_convert.txt | 2 +- .../labelconvert/fs2lobes_cinginc_labels.txt | 2 +- .../labelconvert/fs2lobes_cingsep_convert.txt | 2 +- .../labelconvert/fs2lobes_cingsep_labels.txt | 2 +- share/mrtrix3/labelconvert/fs_a2009s.txt | 2 +- share/mrtrix3/labelconvert/fs_default.txt | 2 +- .../mrtrix3/labelconvert/hcpmmp1_ordered.txt | 2 +- .../mrtrix3/labelconvert/hcpmmp1_original.txt | 2 +- share/mrtrix3/labelconvert/lpba40.txt | 2 +- share/mrtrix3/labelsgmfix/FreeSurferSGM.txt | 2 +- src/colourmap.cpp | 2 +- src/colourmap.h | 2 +- src/connectome/connectome.cpp | 2 +- src/connectome/connectome.h | 2 +- src/connectome/enhance.cpp | 2 +- src/connectome/enhance.h | 2 +- src/connectome/lut.cpp | 2 +- src/connectome/lut.h | 2 +- src/connectome/mat2vec.h | 2 +- src/degibbs/unring1d.h | 2 +- src/degibbs/unring2d.h | 2 +- src/degibbs/unring3d.h | 2 +- src/dwi/bootstrap.h | 2 +- src/dwi/directions/file.cpp | 2 +- src/dwi/directions/file.h | 2 +- src/dwi/directions/mask.cpp | 2 +- src/dwi/directions/mask.h | 2 +- src/dwi/directions/predefined.cpp | 2 +- src/dwi/directions/predefined.h | 2 +- src/dwi/directions/set.cpp | 2 +- src/dwi/directions/set.h | 2 +- src/dwi/fixel_map.h | 2 +- src/dwi/fmls.cpp | 2 +- src/dwi/fmls.h | 2 +- src/dwi/noise_estimator.h | 2 +- src/dwi/sdeconv/csd.cpp | 2 +- src/dwi/sdeconv/csd.h | 2 +- src/dwi/sdeconv/msmt_csd.cpp | 2 +- src/dwi/sdeconv/msmt_csd.h | 2 +- src/dwi/tensor.h | 2 +- src/dwi/tractography/ACT/act.cpp | 2 +- src/dwi/tractography/ACT/act.h | 2 +- src/dwi/tractography/ACT/gmwmi.cpp | 2 +- src/dwi/tractography/ACT/gmwmi.h | 2 +- src/dwi/tractography/ACT/method.h | 2 +- src/dwi/tractography/ACT/shared.h | 2 +- src/dwi/tractography/ACT/tissues.h | 2 +- src/dwi/tractography/GT/energy.h | 2 +- src/dwi/tractography/GT/externalenergy.cpp | 2 +- src/dwi/tractography/GT/externalenergy.h | 2 +- src/dwi/tractography/GT/gt.cpp | 2 +- src/dwi/tractography/GT/gt.h | 2 +- src/dwi/tractography/GT/internalenergy.cpp | 2 +- src/dwi/tractography/GT/internalenergy.h | 2 +- src/dwi/tractography/GT/mhsampler.cpp | 2 +- src/dwi/tractography/GT/mhsampler.h | 2 +- src/dwi/tractography/GT/particle.cpp | 2 +- src/dwi/tractography/GT/particle.h | 2 +- src/dwi/tractography/GT/particlegrid.cpp | 2 +- src/dwi/tractography/GT/particlegrid.h | 2 +- src/dwi/tractography/GT/particlepool.h | 2 +- src/dwi/tractography/GT/spatiallock.h | 2 +- src/dwi/tractography/SIFT/fixel.h | 2 +- src/dwi/tractography/SIFT/gradient_sort.cpp | 2 +- src/dwi/tractography/SIFT/gradient_sort.h | 2 +- src/dwi/tractography/SIFT/model.h | 2 +- src/dwi/tractography/SIFT/model_base.h | 2 +- src/dwi/tractography/SIFT/output.h | 2 +- src/dwi/tractography/SIFT/proc_mask.cpp | 2 +- src/dwi/tractography/SIFT/proc_mask.h | 2 +- src/dwi/tractography/SIFT/sift.cpp | 2 +- src/dwi/tractography/SIFT/sift.h | 2 +- src/dwi/tractography/SIFT/sifter.cpp | 2 +- src/dwi/tractography/SIFT/sifter.h | 2 +- .../tractography/SIFT/track_contribution.cpp | 2 +- .../tractography/SIFT/track_contribution.h | 2 +- .../tractography/SIFT/track_index_range.cpp | 2 +- src/dwi/tractography/SIFT/track_index_range.h | 2 +- src/dwi/tractography/SIFT/types.h | 2 +- .../tractography/SIFT2/coeff_optimiser.cpp | 2 +- src/dwi/tractography/SIFT2/coeff_optimiser.h | 2 +- src/dwi/tractography/SIFT2/fixel.h | 2 +- src/dwi/tractography/SIFT2/fixel_updater.cpp | 2 +- src/dwi/tractography/SIFT2/fixel_updater.h | 2 +- src/dwi/tractography/SIFT2/line_search.cpp | 2 +- src/dwi/tractography/SIFT2/line_search.h | 2 +- src/dwi/tractography/SIFT2/reg_calculator.cpp | 2 +- src/dwi/tractography/SIFT2/reg_calculator.h | 2 +- src/dwi/tractography/SIFT2/regularisation.h | 2 +- .../tractography/SIFT2/streamline_stats.cpp | 2 +- src/dwi/tractography/SIFT2/streamline_stats.h | 2 +- src/dwi/tractography/SIFT2/tckfactor.cpp | 2 +- src/dwi/tractography/SIFT2/tckfactor.h | 2 +- src/dwi/tractography/algorithms/calibrator.h | 2 +- src/dwi/tractography/algorithms/fact.h | 2 +- src/dwi/tractography/algorithms/iFOD1.cpp | 2 +- src/dwi/tractography/algorithms/iFOD1.h | 2 +- src/dwi/tractography/algorithms/iFOD2.cpp | 2 +- src/dwi/tractography/algorithms/iFOD2.h | 2 +- src/dwi/tractography/algorithms/nulldist.h | 2 +- src/dwi/tractography/algorithms/sd_stream.h | 2 +- src/dwi/tractography/algorithms/seedtest.h | 2 +- src/dwi/tractography/algorithms/tensor_det.h | 2 +- src/dwi/tractography/algorithms/tensor_prob.h | 2 +- .../tractography/connectome/connectome.cpp | 2 +- src/dwi/tractography/connectome/connectome.h | 2 +- src/dwi/tractography/connectome/exemplar.cpp | 2 +- src/dwi/tractography/connectome/exemplar.h | 2 +- src/dwi/tractography/connectome/extract.cpp | 2 +- src/dwi/tractography/connectome/extract.h | 2 +- .../tractography/connectome/mapped_track.h | 2 +- src/dwi/tractography/connectome/mapper.h | 2 +- src/dwi/tractography/connectome/matrix.cpp | 2 +- src/dwi/tractography/connectome/matrix.h | 2 +- src/dwi/tractography/connectome/metric.h | 2 +- src/dwi/tractography/connectome/streamline.h | 2 +- src/dwi/tractography/connectome/tck2nodes.cpp | 2 +- src/dwi/tractography/connectome/tck2nodes.h | 2 +- src/dwi/tractography/editing/editing.cpp | 2 +- src/dwi/tractography/editing/editing.h | 2 +- src/dwi/tractography/editing/loader.h | 2 +- src/dwi/tractography/editing/receiver.cpp | 2 +- src/dwi/tractography/editing/receiver.h | 2 +- src/dwi/tractography/editing/worker.cpp | 2 +- src/dwi/tractography/editing/worker.h | 2 +- src/dwi/tractography/file.h | 2 +- src/dwi/tractography/file_base.cpp | 2 +- src/dwi/tractography/file_base.h | 2 +- .../mapping/buffer_scratch_dump.h | 2 +- src/dwi/tractography/mapping/fixel_td_map.cpp | 2 +- src/dwi/tractography/mapping/fixel_td_map.h | 2 +- .../tractography/mapping/gaussian/mapper.cpp | 2 +- .../tractography/mapping/gaussian/mapper.h | 2 +- src/dwi/tractography/mapping/gaussian/voxel.h | 2 +- src/dwi/tractography/mapping/loader.h | 2 +- src/dwi/tractography/mapping/mapper.cpp | 2 +- src/dwi/tractography/mapping/mapper.h | 2 +- .../tractography/mapping/mapper_plugins.cpp | 2 +- src/dwi/tractography/mapping/mapper_plugins.h | 2 +- src/dwi/tractography/mapping/mapping.cpp | 2 +- src/dwi/tractography/mapping/mapping.h | 2 +- src/dwi/tractography/mapping/twi_stats.cpp | 2 +- src/dwi/tractography/mapping/twi_stats.h | 2 +- src/dwi/tractography/mapping/voxel.cpp | 2 +- src/dwi/tractography/mapping/voxel.h | 2 +- src/dwi/tractography/mapping/writer.cpp | 2 +- src/dwi/tractography/mapping/writer.h | 2 +- src/dwi/tractography/properties.cpp | 2 +- src/dwi/tractography/properties.h | 2 +- src/dwi/tractography/resampling/arc.cpp | 2 +- src/dwi/tractography/resampling/arc.h | 2 +- .../tractography/resampling/downsampler.cpp | 2 +- src/dwi/tractography/resampling/downsampler.h | 2 +- src/dwi/tractography/resampling/endpoints.cpp | 2 +- src/dwi/tractography/resampling/endpoints.h | 2 +- .../resampling/fixed_num_points.cpp | 2 +- .../resampling/fixed_num_points.h | 2 +- .../resampling/fixed_step_size.cpp | 2 +- .../tractography/resampling/fixed_step_size.h | 2 +- .../tractography/resampling/resampling.cpp | 2 +- src/dwi/tractography/resampling/resampling.h | 2 +- src/dwi/tractography/resampling/upsampler.cpp | 2 +- src/dwi/tractography/resampling/upsampler.h | 2 +- src/dwi/tractography/rng.cpp | 2 +- src/dwi/tractography/rng.h | 2 +- src/dwi/tractography/roi.cpp | 2 +- src/dwi/tractography/roi.h | 2 +- src/dwi/tractography/scalar_file.h | 2 +- src/dwi/tractography/seeding/base.h | 2 +- src/dwi/tractography/seeding/basic.cpp | 2 +- src/dwi/tractography/seeding/basic.h | 2 +- src/dwi/tractography/seeding/dynamic.cpp | 2 +- src/dwi/tractography/seeding/dynamic.h | 2 +- src/dwi/tractography/seeding/gmwmi.cpp | 2 +- src/dwi/tractography/seeding/gmwmi.h | 2 +- src/dwi/tractography/seeding/list.cpp | 2 +- src/dwi/tractography/seeding/list.h | 2 +- src/dwi/tractography/seeding/seeding.cpp | 2 +- src/dwi/tractography/seeding/seeding.h | 2 +- src/dwi/tractography/streamline.h | 2 +- src/dwi/tractography/tracking/early_exit.cpp | 2 +- src/dwi/tractography/tracking/early_exit.h | 2 +- src/dwi/tractography/tracking/exec.h | 2 +- .../tractography/tracking/generated_track.h | 2 +- src/dwi/tractography/tracking/method.cpp | 2 +- src/dwi/tractography/tracking/method.h | 2 +- src/dwi/tractography/tracking/shared.cpp | 2 +- src/dwi/tractography/tracking/shared.h | 2 +- .../tractography/tracking/tractography.cpp | 2 +- src/dwi/tractography/tracking/tractography.h | 2 +- src/dwi/tractography/tracking/types.h | 2 +- .../tractography/tracking/write_kernel.cpp | 2 +- src/dwi/tractography/tracking/write_kernel.h | 2 +- src/dwi/tractography/weights.cpp | 2 +- src/dwi/tractography/weights.h | 2 +- src/exec_version.h | 2 +- src/fixel/filter/base.h | 2 +- src/fixel/filter/connect.cpp | 2 +- src/fixel/filter/connect.h | 2 +- src/fixel/filter/smooth.cpp | 2 +- src/fixel/filter/smooth.h | 2 +- src/fixel/index_remapper.cpp | 2 +- src/fixel/index_remapper.h | 2 +- src/fixel/matrix.cpp | 2 +- src/fixel/matrix.h | 2 +- src/gui/color_button.cpp | 2 +- src/gui/color_button.h | 2 +- src/gui/crosshair.cpp | 2 +- src/gui/crosshair.h | 2 +- src/gui/cursor.cpp | 2 +- src/gui/cursor.h | 2 +- src/gui/dialog/dialog.cpp | 2 +- src/gui/dialog/dialog.h | 2 +- src/gui/dialog/dicom.cpp | 2 +- src/gui/dialog/dicom.h | 2 +- src/gui/dialog/file.cpp | 2 +- src/gui/dialog/file.h | 2 +- src/gui/dialog/image_properties.cpp | 2 +- src/gui/dialog/image_properties.h | 2 +- src/gui/dialog/list.cpp | 2 +- src/gui/dialog/list.h | 2 +- src/gui/dialog/opengl.cpp | 2 +- src/gui/dialog/opengl.h | 2 +- src/gui/dialog/progress.cpp | 2 +- src/gui/dialog/progress.h | 2 +- src/gui/dialog/report_exception.cpp | 2 +- src/gui/dialog/report_exception.h | 2 +- src/gui/dwi/render_frame.cpp | 2 +- src/gui/dwi/render_frame.h | 2 +- src/gui/dwi/renderer.cpp | 2 +- src/gui/dwi/renderer.h | 2 +- src/gui/gui.cpp | 2 +- src/gui/gui.h | 2 +- src/gui/lighting_dock.cpp | 2 +- src/gui/lighting_dock.h | 2 +- src/gui/mrview/adjust_button.cpp | 2 +- src/gui/mrview/adjust_button.h | 2 +- src/gui/mrview/colourbars.cpp | 2 +- src/gui/mrview/colourbars.h | 2 +- src/gui/mrview/colourmap_button.cpp | 2 +- src/gui/mrview/colourmap_button.h | 2 +- src/gui/mrview/combo_box_error.cpp | 2 +- src/gui/mrview/combo_box_error.h | 2 +- src/gui/mrview/displayable.cpp | 2 +- src/gui/mrview/displayable.h | 2 +- src/gui/mrview/gui_image.cpp | 2 +- src/gui/mrview/gui_image.h | 2 +- src/gui/mrview/icons.h | 2 +- src/gui/mrview/mode/base.cpp | 2 +- src/gui/mrview/mode/base.h | 2 +- src/gui/mrview/mode/lightbox.cpp | 2 +- src/gui/mrview/mode/lightbox.h | 2 +- src/gui/mrview/mode/lightbox_gui.h | 2 +- src/gui/mrview/mode/list.h | 2 +- src/gui/mrview/mode/ortho.cpp | 2 +- src/gui/mrview/mode/ortho.h | 2 +- src/gui/mrview/mode/slice.cpp | 2 +- src/gui/mrview/mode/slice.h | 2 +- src/gui/mrview/mode/volume.cpp | 2 +- src/gui/mrview/mode/volume.h | 2 +- src/gui/mrview/spin_box.h | 2 +- src/gui/mrview/sync/client.cpp | 2 +- src/gui/mrview/sync/client.h | 2 +- src/gui/mrview/sync/enums.h | 2 +- .../mrview/sync/interprocesscommunicator.cpp | 2 +- .../mrview/sync/interprocesscommunicator.h | 2 +- src/gui/mrview/sync/localsocketreader.cpp | 2 +- src/gui/mrview/sync/localsocketreader.h | 2 +- src/gui/mrview/sync/processlock.cpp | 2 +- src/gui/mrview/sync/processlock.h | 2 +- src/gui/mrview/sync/syncmanager.cpp | 2 +- src/gui/mrview/sync/syncmanager.h | 2 +- src/gui/mrview/tool/base.cpp | 2 +- src/gui/mrview/tool/base.h | 2 +- .../tool/connectome/colourmap_observers.cpp | 2 +- .../tool/connectome/colourmap_observers.h | 2 +- src/gui/mrview/tool/connectome/connectome.cpp | 2 +- src/gui/mrview/tool/connectome/connectome.h | 2 +- src/gui/mrview/tool/connectome/edge.cpp | 2 +- src/gui/mrview/tool/connectome/edge.h | 2 +- .../tool/connectome/file_data_vector.cpp | 2 +- .../mrview/tool/connectome/file_data_vector.h | 2 +- .../mrview/tool/connectome/matrix_list.cpp | 2 +- src/gui/mrview/tool/connectome/matrix_list.h | 2 +- src/gui/mrview/tool/connectome/node.cpp | 2 +- src/gui/mrview/tool/connectome/node.h | 2 +- src/gui/mrview/tool/connectome/node_list.cpp | 2 +- src/gui/mrview/tool/connectome/node_list.h | 2 +- .../mrview/tool/connectome/node_overlay.cpp | 2 +- src/gui/mrview/tool/connectome/node_overlay.h | 2 +- src/gui/mrview/tool/connectome/selection.cpp | 2 +- src/gui/mrview/tool/connectome/selection.h | 2 +- src/gui/mrview/tool/connectome/shaders.cpp | 2 +- src/gui/mrview/tool/connectome/shaders.h | 2 +- src/gui/mrview/tool/connectome/types.h | 2 +- src/gui/mrview/tool/fixel/base_fixel.cpp | 2 +- src/gui/mrview/tool/fixel/base_fixel.h | 2 +- src/gui/mrview/tool/fixel/directory.cpp | 2 +- src/gui/mrview/tool/fixel/directory.h | 2 +- src/gui/mrview/tool/fixel/fixel.cpp | 2 +- src/gui/mrview/tool/fixel/fixel.h | 2 +- src/gui/mrview/tool/fixel/image4D.cpp | 2 +- src/gui/mrview/tool/fixel/image4D.h | 2 +- src/gui/mrview/tool/fixel/legacy.cpp | 2 +- src/gui/mrview/tool/fixel/legacy.h | 2 +- src/gui/mrview/tool/fixel/vector_structs.h | 2 +- src/gui/mrview/tool/list.h | 2 +- src/gui/mrview/tool/list_model_base.h | 2 +- src/gui/mrview/tool/odf/item.cpp | 2 +- src/gui/mrview/tool/odf/item.h | 2 +- src/gui/mrview/tool/odf/model.cpp | 2 +- src/gui/mrview/tool/odf/model.h | 2 +- src/gui/mrview/tool/odf/odf.cpp | 2 +- src/gui/mrview/tool/odf/odf.h | 2 +- src/gui/mrview/tool/odf/preview.cpp | 2 +- src/gui/mrview/tool/odf/preview.h | 2 +- src/gui/mrview/tool/odf/type.h | 2 +- src/gui/mrview/tool/overlay.cpp | 2 +- src/gui/mrview/tool/overlay.h | 2 +- src/gui/mrview/tool/roi_editor/item.cpp | 2 +- src/gui/mrview/tool/roi_editor/item.h | 2 +- src/gui/mrview/tool/roi_editor/model.cpp | 2 +- src/gui/mrview/tool/roi_editor/model.h | 2 +- src/gui/mrview/tool/roi_editor/roi.cpp | 2 +- src/gui/mrview/tool/roi_editor/roi.h | 2 +- src/gui/mrview/tool/roi_editor/undoentry.cpp | 2 +- src/gui/mrview/tool/roi_editor/undoentry.h | 2 +- src/gui/mrview/tool/screen_capture.cpp | 2 +- src/gui/mrview/tool/screen_capture.h | 2 +- .../tool/tractography/track_scalar_file.cpp | 2 +- .../tool/tractography/track_scalar_file.h | 2 +- .../mrview/tool/tractography/tractogram.cpp | 2 +- src/gui/mrview/tool/tractography/tractogram.h | 2 +- .../tool/tractography/tractogram_enums.h | 2 +- .../mrview/tool/tractography/tractography.cpp | 2 +- .../mrview/tool/tractography/tractography.h | 2 +- src/gui/mrview/tool/transform.cpp | 2 +- src/gui/mrview/tool/transform.h | 2 +- src/gui/mrview/tool/view.cpp | 2 +- src/gui/mrview/tool/view.h | 2 +- src/gui/mrview/volume.cpp | 2 +- src/gui/mrview/volume.h | 2 +- src/gui/mrview/window.cpp | 2 +- src/gui/mrview/window.h | 2 +- src/gui/opengl/font.cpp | 2 +- src/gui/opengl/font.h | 2 +- src/gui/opengl/gl.cpp | 2 +- src/gui/opengl/gl.h | 2 +- src/gui/opengl/gl_core_3_3.cpp | 2 +- src/gui/opengl/gl_core_3_3.h | 2 +- src/gui/opengl/lighting.cpp | 2 +- src/gui/opengl/lighting.h | 2 +- src/gui/opengl/shader.cpp | 2 +- src/gui/opengl/shader.h | 2 +- src/gui/opengl/transformation.h | 2 +- src/gui/projection.cpp | 2 +- src/gui/projection.h | 2 +- src/gui/shapes/cube.cpp | 2 +- src/gui/shapes/cube.h | 2 +- src/gui/shapes/cylinder.cpp | 2 +- src/gui/shapes/cylinder.h | 2 +- src/gui/shapes/halfsphere.cpp | 2 +- src/gui/shapes/halfsphere.h | 2 +- src/gui/shapes/sphere.cpp | 2 +- src/gui/shapes/sphere.h | 2 +- src/gui/shview/icons.h | 2 +- src/gui/shview/render_window.cpp | 2 +- src/gui/shview/render_window.h | 2 +- src/min_mem_array.h | 2 +- src/registration/linear.cpp | 2 +- src/registration/linear.h | 2 +- src/registration/metric/cc_helper.h | 2 +- src/registration/metric/cross_correlation.h | 2 +- src/registration/metric/demons.h | 2 +- src/registration/metric/demons4D.h | 2 +- src/registration/metric/demons_cc.h | 2 +- src/registration/metric/difference_robust.h | 2 +- src/registration/metric/evaluate.h | 2 +- src/registration/metric/linear_base.h | 2 +- .../metric/local_cross_correlation.h | 2 +- src/registration/metric/mean_squared.h | 2 +- src/registration/metric/params.h | 2 +- src/registration/metric/robust_estimators.h | 2 +- src/registration/metric/thread_kernel.h | 2 +- src/registration/multi_contrast.cpp | 2 +- src/registration/multi_contrast.h | 2 +- src/registration/multi_resolution_lmax.h | 2 +- src/registration/nonlinear.cpp | 2 +- src/registration/nonlinear.h | 2 +- src/registration/shared.h | 2 +- src/registration/transform/affine.cpp | 2 +- src/registration/transform/affine.h | 2 +- src/registration/transform/base.h | 2 +- .../transform/convergence_check.cpp | 2 +- .../transform/convergence_check.h | 2 +- src/registration/transform/initialiser.cpp | 2 +- src/registration/transform/initialiser.h | 2 +- .../transform/initialiser_helpers.cpp | 2 +- .../transform/initialiser_helpers.h | 2 +- src/registration/transform/reorient.h | 2 +- src/registration/transform/rigid.cpp | 2 +- src/registration/transform/rigid.h | 2 +- src/registration/transform/search.h | 2 +- src/registration/warp/compose.h | 2 +- src/registration/warp/convert.h | 2 +- src/registration/warp/helpers.h | 2 +- src/registration/warp/invert.h | 2 +- src/stats/cfe.cpp | 2 +- src/stats/cfe.h | 2 +- src/stats/cluster.cpp | 2 +- src/stats/cluster.h | 2 +- src/stats/enhance.h | 2 +- src/stats/permtest.cpp | 2 +- src/stats/permtest.h | 2 +- src/stats/tfce.cpp | 2 +- src/stats/tfce.h | 2 +- src/surface/algo/image2mesh.h | 2 +- src/surface/algo/mesh2image.cpp | 2 +- src/surface/algo/mesh2image.h | 2 +- src/surface/filter/base.cpp | 2 +- src/surface/filter/base.h | 2 +- src/surface/filter/smooth.cpp | 2 +- src/surface/filter/smooth.h | 2 +- src/surface/filter/vertex_transform.cpp | 2 +- src/surface/filter/vertex_transform.h | 2 +- src/surface/freesurfer.cpp | 2 +- src/surface/freesurfer.h | 2 +- src/surface/mesh.cpp | 2 +- src/surface/mesh.h | 2 +- src/surface/mesh_multi.cpp | 2 +- src/surface/mesh_multi.h | 2 +- src/surface/polygon.cpp | 2 +- src/surface/polygon.h | 2 +- src/surface/scalar.cpp | 2 +- src/surface/scalar.h | 2 +- src/surface/types.h | 2 +- src/surface/utils.h | 2 +- src/wrap_r.h | 2 +- testing/lib/diff_images.h | 2 +- testing/tools/testing_diff_dir.cpp | 2 +- testing/tools/testing_diff_fixel.cpp | 2 +- testing/tools/testing_diff_fixel_old.cpp | 2 +- testing/tools/testing_diff_header.cpp | 2 +- testing/tools/testing_diff_image.cpp | 2 +- testing/tools/testing_diff_matrix.cpp | 2 +- testing/tools/testing_diff_mesh.cpp | 2 +- testing/tools/testing_diff_peaks.cpp | 2 +- testing/tools/testing_diff_tck.cpp | 2 +- testing/tools/testing_diff_tsf.cpp | 2 +- testing/tools/testing_gen_data.cpp | 2 +- testing/tools/testing_unit_tests_npyread.cpp | 2 +- testing/tools/testing_unit_tests_npywrite.cpp | 2 +- testing/unit_tests/bitset.cpp | 2 +- testing/unit_tests/erfinv.cpp | 2 +- testing/unit_tests/icls.cpp | 2 +- testing/unit_tests/ordered_include.cpp | 2 +- testing/unit_tests/ordered_queue.cpp | 2 +- testing/unit_tests/parse_ints.cpp | 2 +- testing/unit_tests/sh_precomputer.cpp | 2 +- testing/unit_tests/shuffle.cpp | 2 +- testing/unit_tests/to.cpp | 2 +- update_copyright | 2 +- update_dev_doc | 2 +- 1005 files changed, 1034 insertions(+), 1034 deletions(-) diff --git a/check_syntax b/check_syntax index c85d937123..b3e466d552 100755 --- a/check_syntax +++ b/check_syntax @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/clang-format-all b/clang-format-all index 2d6231b278..62be97164c 100755 --- a/clang-format-all +++ b/clang-format-all @@ -1,6 +1,6 @@ #!/usr/env/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5tt2gmwmi.cpp b/cmd/5tt2gmwmi.cpp index b486ec385d..f096fc9a3f 100644 --- a/cmd/5tt2gmwmi.cpp +++ b/cmd/5tt2gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5tt2vis.cpp b/cmd/5tt2vis.cpp index 0e43c5c4e4..c3ae2ebba0 100644 --- a/cmd/5tt2vis.cpp +++ b/cmd/5tt2vis.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5ttcheck.cpp b/cmd/5ttcheck.cpp index ae7d7c44a6..dc1e8ed9eb 100644 --- a/cmd/5ttcheck.cpp +++ b/cmd/5ttcheck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/5ttedit.cpp b/cmd/5ttedit.cpp index 0b757fd308..15f31852ec 100644 --- a/cmd/5ttedit.cpp +++ b/cmd/5ttedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/afdconnectivity.cpp b/cmd/afdconnectivity.cpp index 0c36c7ac24..1af66e22a8 100644 --- a/cmd/afdconnectivity.cpp +++ b/cmd/afdconnectivity.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/amp2response.cpp b/cmd/amp2response.cpp index 54a1cf4810..03b1dab897 100644 --- a/cmd/amp2response.cpp +++ b/cmd/amp2response.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/amp2sh.cpp b/cmd/amp2sh.cpp index 0c7f37634c..2a2cb0de05 100644 --- a/cmd/amp2sh.cpp +++ b/cmd/amp2sh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectome2tck.cpp b/cmd/connectome2tck.cpp index c3ebee7b10..9ff1b0255b 100644 --- a/cmd/connectome2tck.cpp +++ b/cmd/connectome2tck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectomeedit.cpp b/cmd/connectomeedit.cpp index bdb5f9e759..fe57dead31 100644 --- a/cmd/connectomeedit.cpp +++ b/cmd/connectomeedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/connectomestats.cpp b/cmd/connectomestats.cpp index ab81f9eaa0..e9c415e7c5 100644 --- a/cmd/connectomestats.cpp +++ b/cmd/connectomestats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dcmedit.cpp b/cmd/dcmedit.cpp index 2c6143bf79..3603bf9cd5 100644 --- a/cmd/dcmedit.cpp +++ b/cmd/dcmedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dcminfo.cpp b/cmd/dcminfo.cpp index 9f04617530..457556f0ff 100644 --- a/cmd/dcminfo.cpp +++ b/cmd/dcminfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirflip.cpp b/cmd/dirflip.cpp index 76177c6c3e..e1fd1e1083 100644 --- a/cmd/dirflip.cpp +++ b/cmd/dirflip.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirgen.cpp b/cmd/dirgen.cpp index 445582b7a5..fbbcc8dfdc 100644 --- a/cmd/dirgen.cpp +++ b/cmd/dirgen.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirmerge.cpp b/cmd/dirmerge.cpp index 67b723b512..770d15076d 100644 --- a/cmd/dirmerge.cpp +++ b/cmd/dirmerge.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirorder.cpp b/cmd/dirorder.cpp index 2fab3cdb37..8787447b21 100644 --- a/cmd/dirorder.cpp +++ b/cmd/dirorder.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirsplit.cpp b/cmd/dirsplit.cpp index 1b96d475f9..11fa8eb31b 100644 --- a/cmd/dirsplit.cpp +++ b/cmd/dirsplit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dirstat.cpp b/cmd/dirstat.cpp index 0190a0bc71..c7c571196d 100644 --- a/cmd/dirstat.cpp +++ b/cmd/dirstat.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2adc.cpp b/cmd/dwi2adc.cpp index 9a3e0d84ea..8c024b3992 100644 --- a/cmd/dwi2adc.cpp +++ b/cmd/dwi2adc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2fod.cpp b/cmd/dwi2fod.cpp index ffa3757a20..9534d5d5b1 100644 --- a/cmd/dwi2fod.cpp +++ b/cmd/dwi2fod.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwi2tensor.cpp b/cmd/dwi2tensor.cpp index 9cbedfd74c..78994042d6 100644 --- a/cmd/dwi2tensor.cpp +++ b/cmd/dwi2tensor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwidenoise.cpp b/cmd/dwidenoise.cpp index a3ef3d615e..3d3a4c0791 100644 --- a/cmd/dwidenoise.cpp +++ b/cmd/dwidenoise.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/dwiextract.cpp b/cmd/dwiextract.cpp index c87d398608..2517dee799 100644 --- a/cmd/dwiextract.cpp +++ b/cmd/dwiextract.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2peaks.cpp b/cmd/fixel2peaks.cpp index 3fa92a1af5..9665f76af8 100644 --- a/cmd/fixel2peaks.cpp +++ b/cmd/fixel2peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2sh.cpp b/cmd/fixel2sh.cpp index d0005afba9..ad9240b2ef 100644 --- a/cmd/fixel2sh.cpp +++ b/cmd/fixel2sh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2tsf.cpp b/cmd/fixel2tsf.cpp index 876c87e6aa..b502f7abef 100644 --- a/cmd/fixel2tsf.cpp +++ b/cmd/fixel2tsf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixel2voxel.cpp b/cmd/fixel2voxel.cpp index ec15a95093..1ed01e2886 100644 --- a/cmd/fixel2voxel.cpp +++ b/cmd/fixel2voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcfestats.cpp b/cmd/fixelcfestats.cpp index bac8b278ba..dbfce56e5b 100644 --- a/cmd/fixelcfestats.cpp +++ b/cmd/fixelcfestats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelconnectivity.cpp b/cmd/fixelconnectivity.cpp index a2ceea94b4..0ca8689feb 100644 --- a/cmd/fixelconnectivity.cpp +++ b/cmd/fixelconnectivity.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelconvert.cpp b/cmd/fixelconvert.cpp index e14f34156b..cd105c7905 100644 --- a/cmd/fixelconvert.cpp +++ b/cmd/fixelconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcorrespondence.cpp b/cmd/fixelcorrespondence.cpp index 87280eeb5a..11d7e4ac4a 100644 --- a/cmd/fixelcorrespondence.cpp +++ b/cmd/fixelcorrespondence.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelcrop.cpp b/cmd/fixelcrop.cpp index f99d4d7d98..af9c346e0b 100644 --- a/cmd/fixelcrop.cpp +++ b/cmd/fixelcrop.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelfilter.cpp b/cmd/fixelfilter.cpp index e16e0c6366..16e673fde2 100644 --- a/cmd/fixelfilter.cpp +++ b/cmd/fixelfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fixelreorient.cpp b/cmd/fixelreorient.cpp index 25c624e888..8d202abfa7 100644 --- a/cmd/fixelreorient.cpp +++ b/cmd/fixelreorient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fod2dec.cpp b/cmd/fod2dec.cpp index 2607c7cc15..405d340fa7 100644 --- a/cmd/fod2dec.cpp +++ b/cmd/fod2dec.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/fod2fixel.cpp b/cmd/fod2fixel.cpp index 38869ccdcf..7900e7c64e 100644 --- a/cmd/fod2fixel.cpp +++ b/cmd/fod2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/label2colour.cpp b/cmd/label2colour.cpp index 8181ac203c..59fc1ff12c 100644 --- a/cmd/label2colour.cpp +++ b/cmd/label2colour.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/label2mesh.cpp b/cmd/label2mesh.cpp index b8bbf38447..b98a98756f 100644 --- a/cmd/label2mesh.cpp +++ b/cmd/label2mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/labelconvert.cpp b/cmd/labelconvert.cpp index bc078ab595..ad6f16f375 100644 --- a/cmd/labelconvert.cpp +++ b/cmd/labelconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/labelstats.cpp b/cmd/labelstats.cpp index 5c1c8988f9..b4f6533ebb 100644 --- a/cmd/labelstats.cpp +++ b/cmd/labelstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/maskdump.cpp b/cmd/maskdump.cpp index 0677eee5b8..761cd914c1 100644 --- a/cmd/maskdump.cpp +++ b/cmd/maskdump.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/maskfilter.cpp b/cmd/maskfilter.cpp index 768a8b62b2..53693bd9bc 100644 --- a/cmd/maskfilter.cpp +++ b/cmd/maskfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mesh2voxel.cpp b/cmd/mesh2voxel.cpp index 2c11f0b1d1..3dbc874544 100644 --- a/cmd/mesh2voxel.cpp +++ b/cmd/mesh2voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/meshconvert.cpp b/cmd/meshconvert.cpp index 38a09d522d..af10b1adef 100644 --- a/cmd/meshconvert.cpp +++ b/cmd/meshconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/meshfilter.cpp b/cmd/meshfilter.cpp index 763ac06356..75805fdd34 100644 --- a/cmd/meshfilter.cpp +++ b/cmd/meshfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mraverageheader.cpp b/cmd/mraverageheader.cpp index af64c4db36..27722cb921 100644 --- a/cmd/mraverageheader.cpp +++ b/cmd/mraverageheader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcalc.cpp b/cmd/mrcalc.cpp index 5dac20f812..84b16798f7 100644 --- a/cmd/mrcalc.cpp +++ b/cmd/mrcalc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcat.cpp b/cmd/mrcat.cpp index 2c34fbcba3..75fd79acc3 100644 --- a/cmd/mrcat.cpp +++ b/cmd/mrcat.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcentroid.cpp b/cmd/mrcentroid.cpp index a1d1148850..34baa97329 100644 --- a/cmd/mrcentroid.cpp +++ b/cmd/mrcentroid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcheckerboardmask.cpp b/cmd/mrcheckerboardmask.cpp index 13b8c09369..158de22520 100644 --- a/cmd/mrcheckerboardmask.cpp +++ b/cmd/mrcheckerboardmask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrclusterstats.cpp b/cmd/mrclusterstats.cpp index 6ee2be9498..4b55f712ac 100644 --- a/cmd/mrclusterstats.cpp +++ b/cmd/mrclusterstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrcolour.cpp b/cmd/mrcolour.cpp index a9143f6d12..f4f43a75bb 100644 --- a/cmd/mrcolour.cpp +++ b/cmd/mrcolour.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrconvert.cpp b/cmd/mrconvert.cpp index 50f20236f5..9f1a4ebf48 100644 --- a/cmd/mrconvert.cpp +++ b/cmd/mrconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrdegibbs.cpp b/cmd/mrdegibbs.cpp index c528d30e0a..b306d67aac 100644 --- a/cmd/mrdegibbs.cpp +++ b/cmd/mrdegibbs.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrdump.cpp b/cmd/mrdump.cpp index 7a19936ee6..dec4b7cb59 100644 --- a/cmd/mrdump.cpp +++ b/cmd/mrdump.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mredit.cpp b/cmd/mredit.cpp index c7b98dc168..8e8dc3645a 100644 --- a/cmd/mredit.cpp +++ b/cmd/mredit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrfilter.cpp b/cmd/mrfilter.cpp index 3b4f43dddb..c76ed35024 100644 --- a/cmd/mrfilter.cpp +++ b/cmd/mrfilter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrgrid.cpp b/cmd/mrgrid.cpp index 23b4364d19..fe26c8c2fd 100644 --- a/cmd/mrgrid.cpp +++ b/cmd/mrgrid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrhistmatch.cpp b/cmd/mrhistmatch.cpp index c0bb882b1e..5e982b9b31 100644 --- a/cmd/mrhistmatch.cpp +++ b/cmd/mrhistmatch.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrhistogram.cpp b/cmd/mrhistogram.cpp index 8c5147660f..0e7dcdc8e1 100644 --- a/cmd/mrhistogram.cpp +++ b/cmd/mrhistogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrinfo.cpp b/cmd/mrinfo.cpp index 2592043b86..b6cc6f943c 100644 --- a/cmd/mrinfo.cpp +++ b/cmd/mrinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrmath.cpp b/cmd/mrmath.cpp index ee7ac7decd..7d261f6a82 100644 --- a/cmd/mrmath.cpp +++ b/cmd/mrmath.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrmetric.cpp b/cmd/mrmetric.cpp index 28b95c1ac5..dccf8c4028 100644 --- a/cmd/mrmetric.cpp +++ b/cmd/mrmetric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrregister.cpp b/cmd/mrregister.cpp index 6a5d4b9934..bc219a7ba0 100644 --- a/cmd/mrregister.cpp +++ b/cmd/mrregister.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrstats.cpp b/cmd/mrstats.cpp index 92aabe5403..5ca87177dd 100644 --- a/cmd/mrstats.cpp +++ b/cmd/mrstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrthreshold.cpp b/cmd/mrthreshold.cpp index fe9a63dfdf..131c24b9cf 100644 --- a/cmd/mrthreshold.cpp +++ b/cmd/mrthreshold.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrtransform.cpp b/cmd/mrtransform.cpp index 073d03e5fd..6ec1d9f49f 100644 --- a/cmd/mrtransform.cpp +++ b/cmd/mrtransform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mrview.cpp b/cmd/mrview.cpp index 4baba86cb2..1cc5ae659a 100644 --- a/cmd/mrview.cpp +++ b/cmd/mrview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/mtnormalise.cpp b/cmd/mtnormalise.cpp index f25b57ac4f..ed1895e133 100644 --- a/cmd/mtnormalise.cpp +++ b/cmd/mtnormalise.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/peaks2amp.cpp b/cmd/peaks2amp.cpp index 2b91b825a6..b986fcfcf1 100644 --- a/cmd/peaks2amp.cpp +++ b/cmd/peaks2amp.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/peaks2fixel.cpp b/cmd/peaks2fixel.cpp index c3383b44da..129971f5df 100644 --- a/cmd/peaks2fixel.cpp +++ b/cmd/peaks2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2amp.cpp b/cmd/sh2amp.cpp index f5bc927677..5065d46ef0 100644 --- a/cmd/sh2amp.cpp +++ b/cmd/sh2amp.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2peaks.cpp b/cmd/sh2peaks.cpp index ed28267904..f421e11b65 100644 --- a/cmd/sh2peaks.cpp +++ b/cmd/sh2peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2power.cpp b/cmd/sh2power.cpp index f07b8c8263..d4e3e57b05 100644 --- a/cmd/sh2power.cpp +++ b/cmd/sh2power.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/sh2response.cpp b/cmd/sh2response.cpp index 4bd977759a..614de96c96 100644 --- a/cmd/sh2response.cpp +++ b/cmd/sh2response.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shbasis.cpp b/cmd/shbasis.cpp index 1522adb459..977834e84d 100644 --- a/cmd/shbasis.cpp +++ b/cmd/shbasis.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shconv.cpp b/cmd/shconv.cpp index 04fefe6793..2f9229341e 100644 --- a/cmd/shconv.cpp +++ b/cmd/shconv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/shview.cpp b/cmd/shview.cpp index 7b481ff7e1..97479a4c4d 100644 --- a/cmd/shview.cpp +++ b/cmd/shview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tck2connectome.cpp b/cmd/tck2connectome.cpp index 1c33fdad28..11c62767db 100644 --- a/cmd/tck2connectome.cpp +++ b/cmd/tck2connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tck2fixel.cpp b/cmd/tck2fixel.cpp index 0aaf473370..b2601cbc7f 100644 --- a/cmd/tck2fixel.cpp +++ b/cmd/tck2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckconvert.cpp b/cmd/tckconvert.cpp index 5260cfbef3..3a6be0ecf7 100644 --- a/cmd/tckconvert.cpp +++ b/cmd/tckconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckdfc.cpp b/cmd/tckdfc.cpp index 45753be78e..4695c2115c 100644 --- a/cmd/tckdfc.cpp +++ b/cmd/tckdfc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckedit.cpp b/cmd/tckedit.cpp index afc3963636..2fc2e3647b 100644 --- a/cmd/tckedit.cpp +++ b/cmd/tckedit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckgen.cpp b/cmd/tckgen.cpp index 78df6cbf48..fa8bcd79e1 100644 --- a/cmd/tckgen.cpp +++ b/cmd/tckgen.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckglobal.cpp b/cmd/tckglobal.cpp index cb05faaefe..a9b0ad7199 100644 --- a/cmd/tckglobal.cpp +++ b/cmd/tckglobal.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckinfo.cpp b/cmd/tckinfo.cpp index 064aad286f..53e7b2d223 100644 --- a/cmd/tckinfo.cpp +++ b/cmd/tckinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckmap.cpp b/cmd/tckmap.cpp index d3332b03c5..891f25ac73 100644 --- a/cmd/tckmap.cpp +++ b/cmd/tckmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckresample.cpp b/cmd/tckresample.cpp index 66d9ac874c..c6cbee05a1 100644 --- a/cmd/tckresample.cpp +++ b/cmd/tckresample.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksample.cpp b/cmd/tcksample.cpp index 5ceee29381..3e77b8e1d2 100644 --- a/cmd/tcksample.cpp +++ b/cmd/tcksample.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksift.cpp b/cmd/tcksift.cpp index 40c8cf9886..eabe023098 100644 --- a/cmd/tcksift.cpp +++ b/cmd/tcksift.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcksift2.cpp b/cmd/tcksift2.cpp index a8746e71e4..54627b8e23 100644 --- a/cmd/tcksift2.cpp +++ b/cmd/tcksift2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tckstats.cpp b/cmd/tckstats.cpp index 6584389fef..b0a4cdcbc4 100644 --- a/cmd/tckstats.cpp +++ b/cmd/tckstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tcktransform.cpp b/cmd/tcktransform.cpp index ed4b7a4145..5a0ba9dfb8 100644 --- a/cmd/tcktransform.cpp +++ b/cmd/tcktransform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tensor2metric.cpp b/cmd/tensor2metric.cpp index 4b8a27812b..0bd889ead8 100644 --- a/cmd/tensor2metric.cpp +++ b/cmd/tensor2metric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformcalc.cpp b/cmd/transformcalc.cpp index c6989862b5..8db6977378 100644 --- a/cmd/transformcalc.cpp +++ b/cmd/transformcalc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformcompose.cpp b/cmd/transformcompose.cpp index 033e126c1b..fddd6604d6 100644 --- a/cmd/transformcompose.cpp +++ b/cmd/transformcompose.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/transformconvert.cpp b/cmd/transformconvert.cpp index 46eb813be3..385599e4dd 100644 --- a/cmd/transformconvert.cpp +++ b/cmd/transformconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfdivide.cpp b/cmd/tsfdivide.cpp index 7a68a08e21..53f472cb5a 100644 --- a/cmd/tsfdivide.cpp +++ b/cmd/tsfdivide.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfinfo.cpp b/cmd/tsfinfo.cpp index fed18c7737..da0c88ea5c 100644 --- a/cmd/tsfinfo.cpp +++ b/cmd/tsfinfo.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfmult.cpp b/cmd/tsfmult.cpp index fb814e7164..a6e45a41ab 100644 --- a/cmd/tsfmult.cpp +++ b/cmd/tsfmult.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfsmooth.cpp b/cmd/tsfsmooth.cpp index 07615f87ac..94d1f87a8b 100644 --- a/cmd/tsfsmooth.cpp +++ b/cmd/tsfsmooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfthreshold.cpp b/cmd/tsfthreshold.cpp index 89e530ef5a..a23841ee55 100644 --- a/cmd/tsfthreshold.cpp +++ b/cmd/tsfthreshold.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/tsfvalidate.cpp b/cmd/tsfvalidate.cpp index 4ce974103b..22d70db608 100644 --- a/cmd/tsfvalidate.cpp +++ b/cmd/tsfvalidate.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/vectorstats.cpp b/cmd/vectorstats.cpp index a2b3567382..f2c70bdbfb 100644 --- a/cmd/vectorstats.cpp +++ b/cmd/vectorstats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/voxel2fixel.cpp b/cmd/voxel2fixel.cpp index 9e1abf6269..0083955379 100644 --- a/cmd/voxel2fixel.cpp +++ b/cmd/voxel2fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/voxel2mesh.cpp b/cmd/voxel2mesh.cpp index fc2c7e6d38..ca7922c3ab 100644 --- a/cmd/voxel2mesh.cpp +++ b/cmd/voxel2mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warp2metric.cpp b/cmd/warp2metric.cpp index ead251bf51..185de61ca8 100644 --- a/cmd/warp2metric.cpp +++ b/cmd/warp2metric.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpconvert.cpp b/cmd/warpconvert.cpp index e1d5e81d14..d69e90dfa5 100644 --- a/cmd/warpconvert.cpp +++ b/cmd/warpconvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpcorrect.cpp b/cmd/warpcorrect.cpp index 6abba6e11e..9a9eb01584 100644 --- a/cmd/warpcorrect.cpp +++ b/cmd/warpcorrect.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpinit.cpp b/cmd/warpinit.cpp index 25148a8476..67e864c6d3 100644 --- a/cmd/warpinit.cpp +++ b/cmd/warpinit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/cmd/warpinvert.cpp b/cmd/warpinvert.cpp index e0d37fec9e..9b2997ae07 100644 --- a/cmd/warpinvert.cpp +++ b/cmd/warpinvert.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/base.h b/core/adapter/base.h index 931ea0bf06..36e0f6eb10 100644 --- a/core/adapter/base.h +++ b/core/adapter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/extract.h b/core/adapter/extract.h index 0b3c63f916..54e4ebc914 100644 --- a/core/adapter/extract.h +++ b/core/adapter/extract.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gaussian1D.h b/core/adapter/gaussian1D.h index 4408a4b8a6..17a7758f29 100644 --- a/core/adapter/gaussian1D.h +++ b/core/adapter/gaussian1D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gradient1D.h b/core/adapter/gradient1D.h index 5630edad87..3ddda2c975 100644 --- a/core/adapter/gradient1D.h +++ b/core/adapter/gradient1D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/gradient3D.h b/core/adapter/gradient3D.h index 15b22a19c0..94ed3cd270 100644 --- a/core/adapter/gradient3D.h +++ b/core/adapter/gradient3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/jacobian.h b/core/adapter/jacobian.h index 4387e0645e..a456e13b9c 100644 --- a/core/adapter/jacobian.h +++ b/core/adapter/jacobian.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/median.h b/core/adapter/median.h index e63d67fe51..bad0d094bf 100644 --- a/core/adapter/median.h +++ b/core/adapter/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/neighbourhood3D.h b/core/adapter/neighbourhood3D.h index 3cbf6c1cf2..6e7302822e 100644 --- a/core/adapter/neighbourhood3D.h +++ b/core/adapter/neighbourhood3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/normalise3D.h b/core/adapter/normalise3D.h index 853410c6da..5b9e594c00 100644 --- a/core/adapter/normalise3D.h +++ b/core/adapter/normalise3D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/permute_axes.h b/core/adapter/permute_axes.h index 3ca845f61e..cf1fb95b74 100644 --- a/core/adapter/permute_axes.h +++ b/core/adapter/permute_axes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/regrid.h b/core/adapter/regrid.h index f3b610d454..e23fad1f44 100644 --- a/core/adapter/regrid.h +++ b/core/adapter/regrid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/replicate.h b/core/adapter/replicate.h index 1c29e9e2a2..8d15e9206d 100644 --- a/core/adapter/replicate.h +++ b/core/adapter/replicate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/reslice.cpp b/core/adapter/reslice.cpp index 725756df94..5855b1480b 100644 --- a/core/adapter/reslice.cpp +++ b/core/adapter/reslice.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/reslice.h b/core/adapter/reslice.h index 7b791023fb..aea8a42def 100644 --- a/core/adapter/reslice.h +++ b/core/adapter/reslice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/subset.h b/core/adapter/subset.h index d4695df66f..e2137bf2d4 100644 --- a/core/adapter/subset.h +++ b/core/adapter/subset.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/adapter/warp.h b/core/adapter/warp.h index 0565f78bcb..a61a3f960d 100644 --- a/core/adapter/warp.h +++ b/core/adapter/warp.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/copy.h b/core/algo/copy.h index c186354454..de3e0a7f31 100644 --- a/core/algo/copy.h +++ b/core/algo/copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/histogram.cpp b/core/algo/histogram.cpp index e767ab2ae8..39226378b1 100644 --- a/core/algo/histogram.cpp +++ b/core/algo/histogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/histogram.h b/core/algo/histogram.h index 0ddc4f325e..1a8f088465 100644 --- a/core/algo/histogram.h +++ b/core/algo/histogram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/iterator.h b/core/algo/iterator.h index b926544664..c777c96708 100644 --- a/core/algo/iterator.h +++ b/core/algo/iterator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/loop.h b/core/algo/loop.h index 3427790345..0b7c5f176d 100644 --- a/core/algo/loop.h +++ b/core/algo/loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/min_max.h b/core/algo/min_max.h index 6d62a1ce36..aa82c68754 100644 --- a/core/algo/min_max.h +++ b/core/algo/min_max.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/neighbourhooditerator.h b/core/algo/neighbourhooditerator.h index ccb43bf243..75259a1cf8 100644 --- a/core/algo/neighbourhooditerator.h +++ b/core/algo/neighbourhooditerator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/random_loop.h b/core/algo/random_loop.h index ae6ecf18d2..d75197ff79 100644 --- a/core/algo/random_loop.h +++ b/core/algo/random_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/random_threaded_loop.h b/core/algo/random_threaded_loop.h index b9da6889d3..dffd307eda 100644 --- a/core/algo/random_threaded_loop.h +++ b/core/algo/random_threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/stochastic_threaded_loop.h b/core/algo/stochastic_threaded_loop.h index de6b39ae35..9835107c0c 100644 --- a/core/algo/stochastic_threaded_loop.h +++ b/core/algo/stochastic_threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/threaded_copy.h b/core/algo/threaded_copy.h index 60375e4af4..f4d1ac6eeb 100644 --- a/core/algo/threaded_copy.h +++ b/core/algo/threaded_copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/algo/threaded_loop.h b/core/algo/threaded_loop.h index 4d54c68846..dd21ea9ec6 100644 --- a/core/algo/threaded_loop.h +++ b/core/algo/threaded_loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/app.cpp b/core/app.cpp index 137313e4c1..803dff2ad3 100644 --- a/core/app.cpp +++ b/core/app.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this @@ -72,7 +72,7 @@ OptionGroup __standard_options = Option("version", "display version information and exit."); const char *AUTHOR = nullptr; -const char *COPYRIGHT = "Copyright (c) 2008-2023 the MRtrix3 contributors.\n" +const char *COPYRIGHT = "Copyright (c) 2008-2024 the MRtrix3 contributors.\n" "\n" "This Source Code Form is subject to the terms of the Mozilla Public\n" "License, v. 2.0. If a copy of the MPL was not distributed with this\n" diff --git a/core/app.h b/core/app.h index 79d2bb49c0..05b5e5111a 100644 --- a/core/app.h +++ b/core/app.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/apply.h b/core/apply.h index fb859675c6..5494995b93 100644 --- a/core/apply.h +++ b/core/apply.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/axes.cpp b/core/axes.cpp index ad4a151b2c..85598bc9be 100644 --- a/core/axes.cpp +++ b/core/axes.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/axes.h b/core/axes.h index 57832456ee..89ac05a6e2 100644 --- a/core/axes.h +++ b/core/axes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/cmdline_option.h b/core/cmdline_option.h index 0b445e72b6..42bc1929cf 100644 --- a/core/cmdline_option.h +++ b/core/cmdline_option.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/command.h b/core/command.h index 621df57acd..50f88666b6 100644 --- a/core/command.h +++ b/core/command.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/datatype.cpp b/core/datatype.cpp index 2ab7345b1a..d1634922ed 100644 --- a/core/datatype.cpp +++ b/core/datatype.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/datatype.h b/core/datatype.h index 7620e09e9b..fa858f7a75 100644 --- a/core/datatype.h +++ b/core/datatype.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/debug.h b/core/debug.h index 0418b12273..8bdd2b448b 100644 --- a/core/debug.h +++ b/core/debug.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/gradient.cpp b/core/dwi/gradient.cpp index 3131e0a467..7615454a50 100644 --- a/core/dwi/gradient.cpp +++ b/core/dwi/gradient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/gradient.h b/core/dwi/gradient.h index b4dfc8c0a1..ef31d447e2 100644 --- a/core/dwi/gradient.h +++ b/core/dwi/gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/shells.cpp b/core/dwi/shells.cpp index 2e0691b9c0..58971dad7b 100644 --- a/core/dwi/shells.cpp +++ b/core/dwi/shells.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/dwi/shells.h b/core/dwi/shells.h index 01db55fb99..bf5667a4d1 100644 --- a/core/dwi/shells.h +++ b/core/dwi/shells.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/array.h b/core/eigen_plugins/array.h index 0a17a1ff24..e16fce7a52 100644 --- a/core/eigen_plugins/array.h +++ b/core/eigen_plugins/array.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/dense_base.h b/core/eigen_plugins/dense_base.h index 3fb615d52e..17bb2bedf3 100644 --- a/core/eigen_plugins/dense_base.h +++ b/core/eigen_plugins/dense_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/eigen_plugins/matrix.h b/core/eigen_plugins/matrix.h index dd7cebe2ad..ce0bdaef6c 100644 --- a/core/eigen_plugins/matrix.h +++ b/core/eigen_plugins/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/exception.cpp b/core/exception.cpp index 371da808c4..5e8a01a244 100644 --- a/core/exception.cpp +++ b/core/exception.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/exception.h b/core/exception.h index 39a27ebadc..b2a48788fa 100644 --- a/core/exception.h +++ b/core/exception.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fetch_store.cpp b/core/fetch_store.cpp index 49507937f9..6cc43556d0 100644 --- a/core/fetch_store.cpp +++ b/core/fetch_store.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fetch_store.h b/core/fetch_store.h index 47c3bb84e0..02a0f56fa6 100644 --- a/core/fetch_store.h +++ b/core/fetch_store.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/config.cpp b/core/file/config.cpp index bcebac2d35..69b449bac8 100644 --- a/core/file/config.cpp +++ b/core/file/config.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/config.h b/core/file/config.h index 92d1ca0267..6824bf652f 100644 --- a/core/file/config.h +++ b/core/file/config.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/copy.h b/core/file/copy.h index 79ff4f21d9..e1bd66a29c 100644 --- a/core/file/copy.h +++ b/core/file/copy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/csa_entry.h b/core/file/dicom/csa_entry.h index 50a9526976..3217434ec1 100644 --- a/core/file/dicom/csa_entry.h +++ b/core/file/dicom/csa_entry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/definitions.h b/core/file/dicom/definitions.h index 43946b1305..bf2ea1e9c8 100644 --- a/core/file/dicom/definitions.h +++ b/core/file/dicom/definitions.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/dict.cpp b/core/file/dicom/dict.cpp index b0b92560c8..9fdf692435 100644 --- a/core/file/dicom/dict.cpp +++ b/core/file/dicom/dict.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/element.cpp b/core/file/dicom/element.cpp index 5fa2722462..4d5f818563 100644 --- a/core/file/dicom/element.cpp +++ b/core/file/dicom/element.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/element.h b/core/file/dicom/element.h index d349981db2..c224314782 100644 --- a/core/file/dicom/element.h +++ b/core/file/dicom/element.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/image.cpp b/core/file/dicom/image.cpp index 4f2a778b43..29b342e7fd 100644 --- a/core/file/dicom/image.cpp +++ b/core/file/dicom/image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/image.h b/core/file/dicom/image.h index 696c5439d2..29cc36f196 100644 --- a/core/file/dicom/image.h +++ b/core/file/dicom/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/mapper.cpp b/core/file/dicom/mapper.cpp index 91a36add11..7dcb201111 100644 --- a/core/file/dicom/mapper.cpp +++ b/core/file/dicom/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/mapper.h b/core/file/dicom/mapper.h index c9e3e4347d..fd0b91407b 100644 --- a/core/file/dicom/mapper.h +++ b/core/file/dicom/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/patient.cpp b/core/file/dicom/patient.cpp index ac785b599a..993a3e0d92 100644 --- a/core/file/dicom/patient.cpp +++ b/core/file/dicom/patient.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/patient.h b/core/file/dicom/patient.h index e113c48539..3e5a1d5ffc 100644 --- a/core/file/dicom/patient.h +++ b/core/file/dicom/patient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/quick_scan.cpp b/core/file/dicom/quick_scan.cpp index 55691b9d9f..ea793c17f0 100644 --- a/core/file/dicom/quick_scan.cpp +++ b/core/file/dicom/quick_scan.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/quick_scan.h b/core/file/dicom/quick_scan.h index 2ac6fa855a..4fdbbbd218 100644 --- a/core/file/dicom/quick_scan.h +++ b/core/file/dicom/quick_scan.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/select_cmdline.cpp b/core/file/dicom/select_cmdline.cpp index e361a7d7e4..ed8e8ae8e3 100644 --- a/core/file/dicom/select_cmdline.cpp +++ b/core/file/dicom/select_cmdline.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/series.cpp b/core/file/dicom/series.cpp index b1c90afe44..5c1d7cc430 100644 --- a/core/file/dicom/series.cpp +++ b/core/file/dicom/series.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/series.h b/core/file/dicom/series.h index e54810ab42..0baa7d39fa 100644 --- a/core/file/dicom/series.h +++ b/core/file/dicom/series.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/study.cpp b/core/file/dicom/study.cpp index 5ba8fb8725..d0e3a7fce8 100644 --- a/core/file/dicom/study.cpp +++ b/core/file/dicom/study.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/study.h b/core/file/dicom/study.h index 32891ec4d1..4539909fb9 100644 --- a/core/file/dicom/study.h +++ b/core/file/dicom/study.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/tree.cpp b/core/file/dicom/tree.cpp index 5d12a87175..115f559417 100644 --- a/core/file/dicom/tree.cpp +++ b/core/file/dicom/tree.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/dicom/tree.h b/core/file/dicom/tree.h index f8add20483..ffd98fbf65 100644 --- a/core/file/dicom/tree.h +++ b/core/file/dicom/tree.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/entry.h b/core/file/entry.h index a6c998d459..5da6d2cff1 100644 --- a/core/file/entry.h +++ b/core/file/entry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/gz.h b/core/file/gz.h index 5e477a0293..53fd313d94 100644 --- a/core/file/gz.h +++ b/core/file/gz.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/json_utils.cpp b/core/file/json_utils.cpp index 7c343495eb..d0f8a16f15 100644 --- a/core/file/json_utils.cpp +++ b/core/file/json_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/json_utils.h b/core/file/json_utils.h index 694aca3834..f745c9358d 100644 --- a/core/file/json_utils.h +++ b/core/file/json_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/key_value.cpp b/core/file/key_value.cpp index 79a6c9490a..341ab26be2 100644 --- a/core/file/key_value.cpp +++ b/core/file/key_value.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/key_value.h b/core/file/key_value.h index cc364ec457..d1c2a29b53 100644 --- a/core/file/key_value.h +++ b/core/file/key_value.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/matrix.h b/core/file/matrix.h index c678ef0773..81d48e9b6c 100644 --- a/core/file/matrix.h +++ b/core/file/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mgh.cpp b/core/file/mgh.cpp index cbe741bf13..c3ee850739 100644 --- a/core/file/mgh.cpp +++ b/core/file/mgh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mgh.h b/core/file/mgh.h index af798fd383..cd861121c1 100644 --- a/core/file/mgh.h +++ b/core/file/mgh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mmap.cpp b/core/file/mmap.cpp index c76dc7fc0f..40be4e5248 100644 --- a/core/file/mmap.cpp +++ b/core/file/mmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/mmap.h b/core/file/mmap.h index 5a16c8bae6..a28f29b112 100644 --- a/core/file/mmap.h +++ b/core/file/mmap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/name_parser.cpp b/core/file/name_parser.cpp index 8e7e005fdd..2c8ce5265e 100644 --- a/core/file/name_parser.cpp +++ b/core/file/name_parser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/name_parser.h b/core/file/name_parser.h index 3123e2dae3..52f1a1c783 100644 --- a/core/file/name_parser.h +++ b/core/file/name_parser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti2.h b/core/file/nifti2.h index ba20aa63ff..ddd821c46d 100644 --- a/core/file/nifti2.h +++ b/core/file/nifti2.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti_utils.cpp b/core/file/nifti_utils.cpp index c62c123cb1..291265c12a 100644 --- a/core/file/nifti_utils.cpp +++ b/core/file/nifti_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/nifti_utils.h b/core/file/nifti_utils.h index 9b5ea0cb61..c399cf5977 100644 --- a/core/file/nifti_utils.h +++ b/core/file/nifti_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/npy.cpp b/core/file/npy.cpp index e10d861a08..d6b667abc4 100644 --- a/core/file/npy.cpp +++ b/core/file/npy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/npy.h b/core/file/npy.h index e52953ba99..b958a1e1c7 100644 --- a/core/file/npy.h +++ b/core/file/npy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/ofstream.cpp b/core/file/ofstream.cpp index 3cc39e534d..903ab7f6c6 100644 --- a/core/file/ofstream.cpp +++ b/core/file/ofstream.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/ofstream.h b/core/file/ofstream.h index 4b7b92f99b..dd255d977a 100644 --- a/core/file/ofstream.h +++ b/core/file/ofstream.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/path.h b/core/file/path.h index 42669cec9f..10451b38fd 100644 --- a/core/file/path.h +++ b/core/file/path.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/png.cpp b/core/file/png.cpp index 5a24ce6c36..94c5f20e12 100644 --- a/core/file/png.cpp +++ b/core/file/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/png.h b/core/file/png.h index 025e75ad05..1ef5510bcf 100644 --- a/core/file/png.h +++ b/core/file/png.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/pyconfig.h b/core/file/pyconfig.h index 7b3d6f496f..186713eb3a 100644 --- a/core/file/pyconfig.h +++ b/core/file/pyconfig.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/file/utils.h b/core/file/utils.h index ea5c902baa..a4a53f2e50 100644 --- a/core/file/utils.h +++ b/core/file/utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/base.h b/core/filter/base.h index 0a733571ab..90aadeb3e4 100644 --- a/core/filter/base.h +++ b/core/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/connected_components.cpp b/core/filter/connected_components.cpp index 5b120739b3..860a789c06 100644 --- a/core/filter/connected_components.cpp +++ b/core/filter/connected_components.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/connected_components.h b/core/filter/connected_components.h index bf2d5aef1b..a35d7cb3a4 100644 --- a/core/filter/connected_components.h +++ b/core/filter/connected_components.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/dilate.h b/core/filter/dilate.h index 7fc2d06822..116fbe4e38 100644 --- a/core/filter/dilate.h +++ b/core/filter/dilate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/erode.h b/core/filter/erode.h index 258af4f79f..f34b3d5e9f 100644 --- a/core/filter/erode.h +++ b/core/filter/erode.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/fill.h b/core/filter/fill.h index c3e9978e52..232e84d0a6 100644 --- a/core/filter/fill.h +++ b/core/filter/fill.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/gradient.h b/core/filter/gradient.h index 872ea92b14..7f4fcb3c8d 100644 --- a/core/filter/gradient.h +++ b/core/filter/gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/mask_clean.h b/core/filter/mask_clean.h index 2be67e07bc..3d891a25d3 100644 --- a/core/filter/mask_clean.h +++ b/core/filter/mask_clean.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/median.h b/core/filter/median.h index b869b41e37..a435b3f136 100644 --- a/core/filter/median.h +++ b/core/filter/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/normalise.h b/core/filter/normalise.h index a50b93b21c..04a0a3752e 100644 --- a/core/filter/normalise.h +++ b/core/filter/normalise.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/optimal_threshold.h b/core/filter/optimal_threshold.h index 0744205703..8252eb000e 100644 --- a/core/filter/optimal_threshold.h +++ b/core/filter/optimal_threshold.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/resize.h b/core/filter/resize.h index 51e376acf4..5bd955387c 100644 --- a/core/filter/resize.h +++ b/core/filter/resize.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/reslice.h b/core/filter/reslice.h index ab55adb9b6..00a51bc91d 100644 --- a/core/filter/reslice.h +++ b/core/filter/reslice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/smooth.h b/core/filter/smooth.h index 3c0a87aed9..a89195f734 100644 --- a/core/filter/smooth.h +++ b/core/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/warp.h b/core/filter/warp.h index 7694f7d40f..5c5c1c28f9 100644 --- a/core/filter/warp.h +++ b/core/filter/warp.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/filter/zclean.h b/core/filter/zclean.h index 718f290dd4..af5bbc12b3 100644 --- a/core/filter/zclean.h +++ b/core/filter/zclean.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/fixel.cpp b/core/fixel/fixel.cpp index 96ac5193e9..35ef034eee 100644 --- a/core/fixel/fixel.cpp +++ b/core/fixel/fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/fixel.h b/core/fixel/fixel.h index c48dbfb3eb..d364ff8e50 100644 --- a/core/fixel/fixel.h +++ b/core/fixel/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/helpers.h b/core/fixel/helpers.h index eab4299c99..a204e0cf72 100644 --- a/core/fixel/helpers.h +++ b/core/fixel/helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/fixel_metric.h b/core/fixel/legacy/fixel_metric.h index 0b051d2503..79d6fbc7f0 100644 --- a/core/fixel/legacy/fixel_metric.h +++ b/core/fixel/legacy/fixel_metric.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/image.h b/core/fixel/legacy/image.h index 2fd0c64054..564892c609 100644 --- a/core/fixel/legacy/image.h +++ b/core/fixel/legacy/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/legacy/keys.h b/core/fixel/legacy/keys.h index ea493c8dc2..e2b9344196 100644 --- a/core/fixel/legacy/keys.h +++ b/core/fixel/legacy/keys.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/fixel/loop.h b/core/fixel/loop.h index 13cb1bd0bb..2c4624fee5 100644 --- a/core/fixel/loop.h +++ b/core/fixel/loop.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/dicom.cpp b/core/formats/dicom.cpp index f3167ddd4f..a63f68a4e1 100644 --- a/core/formats/dicom.cpp +++ b/core/formats/dicom.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/list.cpp b/core/formats/list.cpp index e99788c419..580605b471 100644 --- a/core/formats/list.cpp +++ b/core/formats/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/list.h b/core/formats/list.h index c7c3213378..008f653d62 100644 --- a/core/formats/list.h +++ b/core/formats/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mgh.cpp b/core/formats/mgh.cpp index 853bcb0f3d..b80da13e9c 100644 --- a/core/formats/mgh.cpp +++ b/core/formats/mgh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mgz.cpp b/core/formats/mgz.cpp index 6ea83b53e9..68c7738e43 100644 --- a/core/formats/mgz.cpp +++ b/core/formats/mgz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mri.cpp b/core/formats/mri.cpp index 5cd0ac4447..e39ff3d400 100644 --- a/core/formats/mri.cpp +++ b/core/formats/mri.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix.cpp b/core/formats/mrtrix.cpp index f875be1992..623ac16125 100644 --- a/core/formats/mrtrix.cpp +++ b/core/formats/mrtrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_gz.cpp b/core/formats/mrtrix_gz.cpp index 924629335e..d92be45e80 100644 --- a/core/formats/mrtrix_gz.cpp +++ b/core/formats/mrtrix_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_sparse_legacy.cpp b/core/formats/mrtrix_sparse_legacy.cpp index 5dc43d3876..d6a3ee9f2f 100644 --- a/core/formats/mrtrix_sparse_legacy.cpp +++ b/core/formats/mrtrix_sparse_legacy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_utils.cpp b/core/formats/mrtrix_utils.cpp index 7ea55783f3..b1d45c3b5e 100644 --- a/core/formats/mrtrix_utils.cpp +++ b/core/formats/mrtrix_utils.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/mrtrix_utils.h b/core/formats/mrtrix_utils.h index c36f3749ad..8fea290655 100644 --- a/core/formats/mrtrix_utils.h +++ b/core/formats/mrtrix_utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti1.cpp b/core/formats/nifti1.cpp index 7cc8319c7b..eb03e2c2ce 100644 --- a/core/formats/nifti1.cpp +++ b/core/formats/nifti1.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti1_gz.cpp b/core/formats/nifti1_gz.cpp index 321f1d16a3..e99ab69d56 100644 --- a/core/formats/nifti1_gz.cpp +++ b/core/formats/nifti1_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti2.cpp b/core/formats/nifti2.cpp index 4cd720c808..beaf20468a 100644 --- a/core/formats/nifti2.cpp +++ b/core/formats/nifti2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/nifti2_gz.cpp b/core/formats/nifti2_gz.cpp index 865af04041..10428c3505 100644 --- a/core/formats/nifti2_gz.cpp +++ b/core/formats/nifti2_gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/par.cpp b/core/formats/par.cpp index fc8301f226..5427ba1c26 100644 --- a/core/formats/par.cpp +++ b/core/formats/par.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/pipe.cpp b/core/formats/pipe.cpp index 6d6f4a0c11..d112df0be9 100644 --- a/core/formats/pipe.cpp +++ b/core/formats/pipe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/png.cpp b/core/formats/png.cpp index 7881e2f6df..1103ac5d2a 100644 --- a/core/formats/png.cpp +++ b/core/formats/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/ram.cpp b/core/formats/ram.cpp index 1c6eb4707d..bb582cfdcc 100644 --- a/core/formats/ram.cpp +++ b/core/formats/ram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/formats/xds.cpp b/core/formats/xds.cpp index 42e622bd6e..718c4f6b65 100644 --- a/core/formats/xds.cpp +++ b/core/formats/xds.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/half.h b/core/half.h index 1c1b592771..76e2f0981a 100644 --- a/core/half.h +++ b/core/half.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/header.cpp b/core/header.cpp index 129f3c99e5..62ae337949 100644 --- a/core/header.cpp +++ b/core/header.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/header.h b/core/header.h index 418f64ed76..3d059a4415 100644 --- a/core/header.h +++ b/core/header.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image.h b/core/image.h index f7f5e9af23..41b1f293de 100644 --- a/core/image.h +++ b/core/image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_diff.h b/core/image_diff.h index 6d890f360a..ff2ebec18e 100644 --- a/core/image_diff.h +++ b/core/image_diff.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_helpers.h b/core/image_helpers.h index 6c6b4d7e27..a30cfec952 100644 --- a/core/image_helpers.h +++ b/core/image_helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/base.cpp b/core/image_io/base.cpp index 4015511de0..14aa8ec09f 100644 --- a/core/image_io/base.cpp +++ b/core/image_io/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/base.h b/core/image_io/base.h index e2afd388e6..8d82b9b8aa 100644 --- a/core/image_io/base.h +++ b/core/image_io/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/default.cpp b/core/image_io/default.cpp index 5753b7c73b..5bc3149fba 100644 --- a/core/image_io/default.cpp +++ b/core/image_io/default.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/default.h b/core/image_io/default.h index 435ee86ee8..33cf9a4d51 100644 --- a/core/image_io/default.h +++ b/core/image_io/default.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/gz.cpp b/core/image_io/gz.cpp index 7e0858c992..dfa8beadbf 100644 --- a/core/image_io/gz.cpp +++ b/core/image_io/gz.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/gz.h b/core/image_io/gz.h index b3cc937605..90bc460363 100644 --- a/core/image_io/gz.h +++ b/core/image_io/gz.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/mosaic.cpp b/core/image_io/mosaic.cpp index edb9ff3a3c..29f5679932 100644 --- a/core/image_io/mosaic.cpp +++ b/core/image_io/mosaic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/mosaic.h b/core/image_io/mosaic.h index 06fc225bbb..3e0f2a6d70 100644 --- a/core/image_io/mosaic.h +++ b/core/image_io/mosaic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/pipe.cpp b/core/image_io/pipe.cpp index c357b912a1..cfa4c7289d 100644 --- a/core/image_io/pipe.cpp +++ b/core/image_io/pipe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/pipe.h b/core/image_io/pipe.h index d7bb4cc821..ea94ac8708 100644 --- a/core/image_io/pipe.h +++ b/core/image_io/pipe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/png.cpp b/core/image_io/png.cpp index 8bf758f374..bf864903ed 100644 --- a/core/image_io/png.cpp +++ b/core/image_io/png.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/png.h b/core/image_io/png.h index f9f02e7408..2ab2c9c3a9 100644 --- a/core/image_io/png.h +++ b/core/image_io/png.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/ram.cpp b/core/image_io/ram.cpp index da4380493d..10ab0e5e41 100644 --- a/core/image_io/ram.cpp +++ b/core/image_io/ram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/ram.h b/core/image_io/ram.h index d32e5804f9..b95144e7dc 100644 --- a/core/image_io/ram.h +++ b/core/image_io/ram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/scratch.cpp b/core/image_io/scratch.cpp index c78e5923d3..2de44d4c4f 100644 --- a/core/image_io/scratch.cpp +++ b/core/image_io/scratch.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/scratch.h b/core/image_io/scratch.h index 5c6cc8edcc..3974d7c3dd 100644 --- a/core/image_io/scratch.h +++ b/core/image_io/scratch.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/sparse.cpp b/core/image_io/sparse.cpp index b8380fd04b..ec05bc4086 100644 --- a/core/image_io/sparse.cpp +++ b/core/image_io/sparse.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/sparse.h b/core/image_io/sparse.h index e03e496567..4e72abdc55 100644 --- a/core/image_io/sparse.h +++ b/core/image_io/sparse.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/variable_scaling.cpp b/core/image_io/variable_scaling.cpp index 45911b2bd3..93134cfbc8 100644 --- a/core/image_io/variable_scaling.cpp +++ b/core/image_io/variable_scaling.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/image_io/variable_scaling.h b/core/image_io/variable_scaling.h index 6b502e3c7f..23b9dfd45a 100644 --- a/core/image_io/variable_scaling.h +++ b/core/image_io/variable_scaling.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/base.h b/core/interp/base.h index 156cdbb46a..0f077e84e0 100644 --- a/core/interp/base.h +++ b/core/interp/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/cubic.h b/core/interp/cubic.h index 989a92636b..defc0a9443 100644 --- a/core/interp/cubic.h +++ b/core/interp/cubic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/linear.h b/core/interp/linear.h index 0e8123a121..3b3c35cf05 100644 --- a/core/interp/linear.h +++ b/core/interp/linear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/masked.h b/core/interp/masked.h index 29fc6e3a82..385e942d79 100644 --- a/core/interp/masked.h +++ b/core/interp/masked.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/nearest.h b/core/interp/nearest.h index 9534dd7418..cd48353d23 100644 --- a/core/interp/nearest.h +++ b/core/interp/nearest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/interp/sinc.h b/core/interp/sinc.h index 7464b4bb2f..502432829b 100644 --- a/core/interp/sinc.h +++ b/core/interp/sinc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/SH.cpp b/core/math/SH.cpp index 9393a76dfb..e9ace7f5e4 100644 --- a/core/math/SH.cpp +++ b/core/math/SH.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/SH.h b/core/math/SH.h index 9d712fe982..3e402333d3 100644 --- a/core/math/SH.h +++ b/core/math/SH.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/Sn_scale_estimator.h b/core/math/Sn_scale_estimator.h index 22afe2c4cd..fb5b25b5f3 100644 --- a/core/math/Sn_scale_estimator.h +++ b/core/math/Sn_scale_estimator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/ZSH.h b/core/math/ZSH.h index 95f8f36ffc..2e30a0bd9d 100644 --- a/core/math/ZSH.h +++ b/core/math/ZSH.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/average_space.cpp b/core/math/average_space.cpp index 6573bb51db..a0532ffc03 100644 --- a/core/math/average_space.cpp +++ b/core/math/average_space.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/average_space.h b/core/math/average_space.h index cd33d63411..55e3036e87 100644 --- a/core/math/average_space.h +++ b/core/math/average_space.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/bessel.cpp b/core/math/bessel.cpp index ab2a5b13ab..53e71b3091 100644 --- a/core/math/bessel.cpp +++ b/core/math/bessel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/bessel.h b/core/math/bessel.h index 9e2300e018..fffdd0b63b 100644 --- a/core/math/bessel.h +++ b/core/math/bessel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/betainc.cpp b/core/math/betainc.cpp index 780302722c..c030c9affa 100644 --- a/core/math/betainc.cpp +++ b/core/math/betainc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/betainc.h b/core/math/betainc.h index 6e654f7c23..7d059f2a7b 100644 --- a/core/math/betainc.h +++ b/core/math/betainc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/cauchy.h b/core/math/cauchy.h index 9f5aa1c462..f9bf64dad1 100644 --- a/core/math/cauchy.h +++ b/core/math/cauchy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/chebyshev.h b/core/math/chebyshev.h index 3b82858696..04ff49e7f5 100644 --- a/core/math/chebyshev.h +++ b/core/math/chebyshev.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/check_gradient.h b/core/math/check_gradient.h index 3faf5354c7..9d00898ef6 100644 --- a/core/math/check_gradient.h +++ b/core/math/check_gradient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/condition_number.h b/core/math/condition_number.h index 42b7c6efd7..169eae3064 100644 --- a/core/math/condition_number.h +++ b/core/math/condition_number.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/constrained_least_squares.h b/core/math/constrained_least_squares.h index 7c3875c542..2878620bfe 100644 --- a/core/math/constrained_least_squares.h +++ b/core/math/constrained_least_squares.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/cubic_spline.h b/core/math/cubic_spline.h index 803933a82e..9847691e28 100644 --- a/core/math/cubic_spline.h +++ b/core/math/cubic_spline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/erfinv.cpp b/core/math/erfinv.cpp index 0e1140cc78..d5d450538f 100644 --- a/core/math/erfinv.cpp +++ b/core/math/erfinv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/erfinv.h b/core/math/erfinv.h index 4e08f374cb..324c358693 100644 --- a/core/math/erfinv.h +++ b/core/math/erfinv.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/factorial.h b/core/math/factorial.h index e36e43c1b8..2baeef9aec 100644 --- a/core/math/factorial.h +++ b/core/math/factorial.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/fft.h b/core/math/fft.h index 1dc83c9ca8..a92352c289 100644 --- a/core/math/fft.h +++ b/core/math/fft.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gaussian.h b/core/math/gaussian.h index 9db0cc8804..0361c8bd21 100644 --- a/core/math/gaussian.h +++ b/core/math/gaussian.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/golden_section_search.h b/core/math/golden_section_search.h index 1c8ca470b0..5f63cff6b1 100644 --- a/core/math/golden_section_search.h +++ b/core/math/golden_section_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gradient_descent.h b/core/math/gradient_descent.h index 1b5904f985..4d327d8639 100644 --- a/core/math/gradient_descent.h +++ b/core/math/gradient_descent.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/gradient_descent_bb.h b/core/math/gradient_descent_bb.h index 524c38396e..5a5017eb43 100644 --- a/core/math/gradient_descent_bb.h +++ b/core/math/gradient_descent_bb.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/hermite.h b/core/math/hermite.h index d259674efe..bf9fb5e8f6 100644 --- a/core/math/hermite.h +++ b/core/math/hermite.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/least_squares.h b/core/math/least_squares.h index fe34dec67c..b2f1d0ee34 100644 --- a/core/math/least_squares.h +++ b/core/math/least_squares.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/legendre.h b/core/math/legendre.h index 190a4f1abf..284ee3ccf3 100644 --- a/core/math/legendre.h +++ b/core/math/legendre.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/math.h b/core/math/math.h index b88ac2f99b..c76104e5d9 100644 --- a/core/math/math.h +++ b/core/math/math.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/median.h b/core/math/median.h index 5a5992608d..7dcbf5f13e 100644 --- a/core/math/median.h +++ b/core/math/median.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/polynomial.h b/core/math/polynomial.h index de5cf630ed..9ab75207e4 100644 --- a/core/math/polynomial.h +++ b/core/math/polynomial.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/quadratic_line_search.h b/core/math/quadratic_line_search.h index 1487e67bfd..0d9e8b583a 100644 --- a/core/math/quadratic_line_search.h +++ b/core/math/quadratic_line_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/rician.h b/core/math/rician.h index ed298a187d..43c772907d 100644 --- a/core/math/rician.h +++ b/core/math/rician.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/rng.h b/core/math/rng.h index e6b51459ae..5ce2f60652 100644 --- a/core/math/rng.h +++ b/core/math/rng.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sech.h b/core/math/sech.h index c757a56445..46b3cc9eed 100644 --- a/core/math/sech.h +++ b/core/math/sech.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sinc.h b/core/math/sinc.h index 69963c8a2f..821886a7e9 100644 --- a/core/math/sinc.h +++ b/core/math/sinc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/sphere.h b/core/math/sphere.h index 85424edf44..77842e23ea 100644 --- a/core/math/sphere.h +++ b/core/math/sphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/fwe.cpp b/core/math/stats/fwe.cpp index ee8109e01c..c4105c3a10 100644 --- a/core/math/stats/fwe.cpp +++ b/core/math/stats/fwe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/fwe.h b/core/math/stats/fwe.h index 6c9ac182bf..96ec9ed10a 100644 --- a/core/math/stats/fwe.h +++ b/core/math/stats/fwe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/glm.cpp b/core/math/stats/glm.cpp index 3212702bee..7eba80c5aa 100644 --- a/core/math/stats/glm.cpp +++ b/core/math/stats/glm.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/glm.h b/core/math/stats/glm.h index ea591f9b88..dd8ff0dc8d 100644 --- a/core/math/stats/glm.h +++ b/core/math/stats/glm.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/import.cpp b/core/math/stats/import.cpp index 591bf66957..237ea39a69 100644 --- a/core/math/stats/import.cpp +++ b/core/math/stats/import.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/import.h b/core/math/stats/import.h index 016d3e2dfd..2a9ffdb801 100644 --- a/core/math/stats/import.h +++ b/core/math/stats/import.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/shuffle.cpp b/core/math/stats/shuffle.cpp index 95888638d4..9a635af661 100644 --- a/core/math/stats/shuffle.cpp +++ b/core/math/stats/shuffle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/shuffle.h b/core/math/stats/shuffle.h index 7a6a701b8b..06663b5591 100644 --- a/core/math/stats/shuffle.h +++ b/core/math/stats/shuffle.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/stats/typedefs.h b/core/math/stats/typedefs.h index 08d5a6f741..30c2c497c5 100644 --- a/core/math/stats/typedefs.h +++ b/core/math/stats/typedefs.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/welch_satterthwaite.h b/core/math/welch_satterthwaite.h index 77ded77206..ffc65546a8 100644 --- a/core/math/welch_satterthwaite.h +++ b/core/math/welch_satterthwaite.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/zstatistic.cpp b/core/math/zstatistic.cpp index 68ca3c3c22..5b4a0cf0f7 100644 --- a/core/math/zstatistic.cpp +++ b/core/math/zstatistic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/math/zstatistic.h b/core/math/zstatistic.h index d0a9d7d1c5..61a09e10f8 100644 --- a/core/math/zstatistic.h +++ b/core/math/zstatistic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/memory.h b/core/memory.h index 3726227c54..7de509cf31 100644 --- a/core/memory.h +++ b/core/memory.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/bitset.cpp b/core/misc/bitset.cpp index e812087a79..432e36bcba 100644 --- a/core/misc/bitset.cpp +++ b/core/misc/bitset.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/bitset.h b/core/misc/bitset.h index 8975b03965..eefd15bb43 100644 --- a/core/misc/bitset.h +++ b/core/misc/bitset.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/misc/voxel2vector.h b/core/misc/voxel2vector.h index 90c9d0b0b6..48af7b3762 100644 --- a/core/misc/voxel2vector.h +++ b/core/misc/voxel2vector.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/mrtrix.cpp b/core/mrtrix.cpp index c65eb6fa4e..7b97c44c1e 100644 --- a/core/mrtrix.cpp +++ b/core/mrtrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/mrtrix.h b/core/mrtrix.h index fd895dc0fd..3a06000d04 100644 --- a/core/mrtrix.h +++ b/core/mrtrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/ordered_thread_queue.h b/core/ordered_thread_queue.h index b64e75b906..34f8074c04 100644 --- a/core/ordered_thread_queue.h +++ b/core/ordered_thread_queue.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/phase_encoding.cpp b/core/phase_encoding.cpp index 82337a55d3..fcaac9044d 100644 --- a/core/phase_encoding.cpp +++ b/core/phase_encoding.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/phase_encoding.h b/core/phase_encoding.h index f0a9fef7b7..303eba8c18 100644 --- a/core/phase_encoding.h +++ b/core/phase_encoding.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/progressbar.cpp b/core/progressbar.cpp index c4991f9f6a..073ca05a41 100644 --- a/core/progressbar.cpp +++ b/core/progressbar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/progressbar.h b/core/progressbar.h index 9aa48106ea..540848f5ec 100644 --- a/core/progressbar.h +++ b/core/progressbar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/raw.h b/core/raw.h index 1d38bbbaaa..0427790765 100644 --- a/core/raw.h +++ b/core/raw.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signal_handler.cpp b/core/signal_handler.cpp index cbc73ab3ff..cc97a0b5db 100644 --- a/core/signal_handler.cpp +++ b/core/signal_handler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signal_handler.h b/core/signal_handler.h index 72087a86ae..5803eb17f1 100644 --- a/core/signal_handler.h +++ b/core/signal_handler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/signals.h b/core/signals.h index 140aebed6e..38e06c159d 100644 --- a/core/signals.h +++ b/core/signals.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stats.cpp b/core/stats.cpp index 4cecb29d9d..73c48f61fa 100644 --- a/core/stats.cpp +++ b/core/stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stats.h b/core/stats.h index a7e93abefe..a5e116ece6 100644 --- a/core/stats.h +++ b/core/stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stride.cpp b/core/stride.cpp index 69a46291cd..d0566ba7e2 100644 --- a/core/stride.cpp +++ b/core/stride.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/stride.h b/core/stride.h index b3e4c7e751..48b7f4a362 100644 --- a/core/stride.h +++ b/core/stride.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread.cpp b/core/thread.cpp index d799342cb1..c14a4d7a7a 100644 --- a/core/thread.cpp +++ b/core/thread.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread.h b/core/thread.h index af8474928d..4a23a26fdc 100644 --- a/core/thread.h +++ b/core/thread.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/thread_queue.h b/core/thread_queue.h index 27b948030d..bc90e95e78 100644 --- a/core/thread_queue.h +++ b/core/thread_queue.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/timer.h b/core/timer.h index 7990c49be6..a1139c1c3e 100644 --- a/core/timer.h +++ b/core/timer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/transform.h b/core/transform.h index 0ec11cfa73..94c9ddae44 100644 --- a/core/transform.h +++ b/core/transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/core/types.h b/core/types.h index e07d79ad14..1962d635de 100644 --- a/core/types.h +++ b/core/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/format_config_options b/docs/format_config_options index c93b0e12af..ed853a97da 100755 --- a/docs/format_config_options +++ b/docs/format_config_options @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/format_environment_variables b/docs/format_environment_variables index c773bdb2cd..75d1fa5a38 100755 --- a/docs/format_environment_variables +++ b/docs/format_environment_variables @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/generate_user_docs.sh b/docs/generate_user_docs.sh index e129a67f11..3d07fa218b 100755 --- a/docs/generate_user_docs.sh +++ b/docs/generate_user_docs.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5tt2gmwmi.rst b/docs/reference/commands/5tt2gmwmi.rst index e2b1488d16..cf8b72472a 100644 --- a/docs/reference/commands/5tt2gmwmi.rst +++ b/docs/reference/commands/5tt2gmwmi.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5tt2vis.rst b/docs/reference/commands/5tt2vis.rst index 3249459dba..b859ce80d7 100644 --- a/docs/reference/commands/5tt2vis.rst +++ b/docs/reference/commands/5tt2vis.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttcheck.rst b/docs/reference/commands/5ttcheck.rst index 9b33842b00..0dd260e495 100644 --- a/docs/reference/commands/5ttcheck.rst +++ b/docs/reference/commands/5ttcheck.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttedit.rst b/docs/reference/commands/5ttedit.rst index 3664d5ef32..5382a3aeb6 100644 --- a/docs/reference/commands/5ttedit.rst +++ b/docs/reference/commands/5ttedit.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/5ttgen.rst b/docs/reference/commands/5ttgen.rst index 7b124209c6..664161daac 100644 --- a/docs/reference/commands/5ttgen.rst +++ b/docs/reference/commands/5ttgen.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -166,7 +166,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -269,7 +269,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -355,7 +355,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Matteo Mancini (m.mancini@ucl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -461,7 +461,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/afdconnectivity.rst b/docs/reference/commands/afdconnectivity.rst index c1f8b31d2a..723d709289 100644 --- a/docs/reference/commands/afdconnectivity.rst +++ b/docs/reference/commands/afdconnectivity.rst @@ -74,7 +74,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/amp2response.rst b/docs/reference/commands/amp2response.rst index a46e265112..09fe107f01 100644 --- a/docs/reference/commands/amp2response.rst +++ b/docs/reference/commands/amp2response.rst @@ -76,7 +76,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/amp2sh.rst b/docs/reference/commands/amp2sh.rst index 4296f21849..b59274dfba 100644 --- a/docs/reference/commands/amp2sh.rst +++ b/docs/reference/commands/amp2sh.rst @@ -87,7 +87,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectome2tck.rst b/docs/reference/commands/connectome2tck.rst index 92b7d2cbbb..a4f46e431a 100644 --- a/docs/reference/commands/connectome2tck.rst +++ b/docs/reference/commands/connectome2tck.rst @@ -118,7 +118,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectomeedit.rst b/docs/reference/commands/connectomeedit.rst index 5c061bfadd..7c88ef74f0 100644 --- a/docs/reference/commands/connectomeedit.rst +++ b/docs/reference/commands/connectomeedit.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Matteo Frigo (matteo.frigo@inria.fr) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/connectomestats.rst b/docs/reference/commands/connectomestats.rst index 53c59b4625..36da5ff50e 100644 --- a/docs/reference/commands/connectomestats.rst +++ b/docs/reference/commands/connectomestats.rst @@ -126,7 +126,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dcmedit.rst b/docs/reference/commands/dcmedit.rst index 846b326c60..1145008cc1 100644 --- a/docs/reference/commands/dcmedit.rst +++ b/docs/reference/commands/dcmedit.rst @@ -66,7 +66,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dcminfo.rst b/docs/reference/commands/dcminfo.rst index a261e3ec2f..b8df64b2f9 100644 --- a/docs/reference/commands/dcminfo.rst +++ b/docs/reference/commands/dcminfo.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirflip.rst b/docs/reference/commands/dirflip.rst index f3cf22de93..107dd266ea 100644 --- a/docs/reference/commands/dirflip.rst +++ b/docs/reference/commands/dirflip.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirgen.rst b/docs/reference/commands/dirgen.rst index bab1733320..9327ac1cfc 100644 --- a/docs/reference/commands/dirgen.rst +++ b/docs/reference/commands/dirgen.rst @@ -70,7 +70,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirmerge.rst b/docs/reference/commands/dirmerge.rst index f7a37fb1c6..05666ab9a3 100644 --- a/docs/reference/commands/dirmerge.rst +++ b/docs/reference/commands/dirmerge.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirorder.rst b/docs/reference/commands/dirorder.rst index 9195d8bf11..1f196073e2 100644 --- a/docs/reference/commands/dirorder.rst +++ b/docs/reference/commands/dirorder.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirsplit.rst b/docs/reference/commands/dirsplit.rst index 55eda01d48..e1a2aded62 100644 --- a/docs/reference/commands/dirsplit.rst +++ b/docs/reference/commands/dirsplit.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dirstat.rst b/docs/reference/commands/dirstat.rst index e5ffc11d03..36aaa9bde4 100644 --- a/docs/reference/commands/dirstat.rst +++ b/docs/reference/commands/dirstat.rst @@ -111,7 +111,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2adc.rst b/docs/reference/commands/dwi2adc.rst index b1d3af224b..d2d7f09312 100644 --- a/docs/reference/commands/dwi2adc.rst +++ b/docs/reference/commands/dwi2adc.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2fod.rst b/docs/reference/commands/dwi2fod.rst index 3e72ea202c..86dba26b08 100644 --- a/docs/reference/commands/dwi2fod.rst +++ b/docs/reference/commands/dwi2fod.rst @@ -130,7 +130,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Ben Jeurissen (ben.jeurissen@uantwerpen.be) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2mask.rst b/docs/reference/commands/dwi2mask.rst index 85918429dd..0e99e0eb93 100644 --- a/docs/reference/commands/dwi2mask.rst +++ b/docs/reference/commands/dwi2mask.rst @@ -74,7 +74,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Warda Syeda (wtsyeda@unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -185,7 +185,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ricardo Rios (ricardo.rios@cimat.mx) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -276,7 +276,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -390,7 +390,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -485,7 +485,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -584,7 +584,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Warda Syeda (wtsyeda@unimelb.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -675,7 +675,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -761,7 +761,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -852,7 +852,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Warda Syeda (wtsyeda@unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -960,7 +960,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Arshiya Sangchooli (asangchooli@student.unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -1064,7 +1064,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ruobing Chen (chrc@student.unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -1162,7 +1162,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Warda Syeda (wtsyeda@unimelb.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2response.rst b/docs/reference/commands/dwi2response.rst index be87379787..18e48e4fe3 100644 --- a/docs/reference/commands/dwi2response.rst +++ b/docs/reference/commands/dwi2response.rst @@ -89,7 +89,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -210,7 +210,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -316,7 +316,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -417,7 +417,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -530,7 +530,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -636,7 +636,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -744,7 +744,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwi2tensor.rst b/docs/reference/commands/dwi2tensor.rst index 1aadcba950..0fca385298 100644 --- a/docs/reference/commands/dwi2tensor.rst +++ b/docs/reference/commands/dwi2tensor.rst @@ -111,7 +111,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ben Jeurissen (ben.jeurissen@uantwerpen.be) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwibiascorrect.rst b/docs/reference/commands/dwibiascorrect.rst index a4be844bb7..f89baa474f 100644 --- a/docs/reference/commands/dwibiascorrect.rst +++ b/docs/reference/commands/dwibiascorrect.rst @@ -79,7 +79,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -181,7 +181,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -281,7 +281,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -392,7 +392,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Arshiya Sangchooli (asangchooli@student.unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwibiasnormmask.rst b/docs/reference/commands/dwibiasnormmask.rst index 0df9e89030..249ba9f4f4 100644 --- a/docs/reference/commands/dwibiasnormmask.rst +++ b/docs/reference/commands/dwibiasnormmask.rst @@ -115,7 +115,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Arshiya Sangchooli (asangchooli@student.unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwicat.rst b/docs/reference/commands/dwicat.rst index 1c1a354e55..e1b9ef3a84 100644 --- a/docs/reference/commands/dwicat.rst +++ b/docs/reference/commands/dwicat.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Lena Dorfschmidt (ld548@cam.ac.uk) and Jakub Vohryzek (jakub.vohryzek@queens.ox.ac.uk) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwiextract.rst b/docs/reference/commands/dwiextract.rst index 5c335af78b..d044b0fa6a 100644 --- a/docs/reference/commands/dwiextract.rst +++ b/docs/reference/commands/dwiextract.rst @@ -103,7 +103,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Thijs Dhollander (thijs.dhollander@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwifslpreproc.rst b/docs/reference/commands/dwifslpreproc.rst index a9bf779205..1b2e8c39df 100644 --- a/docs/reference/commands/dwifslpreproc.rst +++ b/docs/reference/commands/dwifslpreproc.rst @@ -178,7 +178,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwigradcheck.rst b/docs/reference/commands/dwigradcheck.rst index 21dad6a498..c1238d0820 100644 --- a/docs/reference/commands/dwigradcheck.rst +++ b/docs/reference/commands/dwigradcheck.rst @@ -87,7 +87,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwinormalise.rst b/docs/reference/commands/dwinormalise.rst index ef7c320ff4..6ea10e57d4 100644 --- a/docs/reference/commands/dwinormalise.rst +++ b/docs/reference/commands/dwinormalise.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -153,7 +153,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -242,7 +242,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this @@ -354,7 +354,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and Arshiya Sangchooli (asangchooli@student.unimelb.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/dwishellmath.rst b/docs/reference/commands/dwishellmath.rst index ed8830669c..209d6916d0 100644 --- a/docs/reference/commands/dwishellmath.rst +++ b/docs/reference/commands/dwishellmath.rst @@ -80,7 +80,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Daan Christiaens (daan.christiaens@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2peaks.rst b/docs/reference/commands/fixel2peaks.rst index 35d3af4fb6..ecc87dd69d 100644 --- a/docs/reference/commands/fixel2peaks.rst +++ b/docs/reference/commands/fixel2peaks.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2sh.rst b/docs/reference/commands/fixel2sh.rst index aa0362faed..7134a4c613 100644 --- a/docs/reference/commands/fixel2sh.rst +++ b/docs/reference/commands/fixel2sh.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) & David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2tsf.rst b/docs/reference/commands/fixel2tsf.rst index 107697fdee..dd23d82088 100644 --- a/docs/reference/commands/fixel2tsf.rst +++ b/docs/reference/commands/fixel2tsf.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixel2voxel.rst b/docs/reference/commands/fixel2voxel.rst index e230f33942..17218a976d 100644 --- a/docs/reference/commands/fixel2voxel.rst +++ b/docs/reference/commands/fixel2voxel.rst @@ -81,7 +81,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) & David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcfestats.rst b/docs/reference/commands/fixelcfestats.rst index 104e3187de..3545ecbbf5 100644 --- a/docs/reference/commands/fixelcfestats.rst +++ b/docs/reference/commands/fixelcfestats.rst @@ -126,7 +126,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelconnectivity.rst b/docs/reference/commands/fixelconnectivity.rst index 33d37fdf46..35e9bfa366 100644 --- a/docs/reference/commands/fixelconnectivity.rst +++ b/docs/reference/commands/fixelconnectivity.rst @@ -78,7 +78,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelconvert.rst b/docs/reference/commands/fixelconvert.rst index 99fd8553fc..2f03cd36f0 100644 --- a/docs/reference/commands/fixelconvert.rst +++ b/docs/reference/commands/fixelconvert.rst @@ -96,7 +96,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcorrespondence.rst b/docs/reference/commands/fixelcorrespondence.rst index 5f58c884c9..30d4775957 100644 --- a/docs/reference/commands/fixelcorrespondence.rst +++ b/docs/reference/commands/fixelcorrespondence.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelcrop.rst b/docs/reference/commands/fixelcrop.rst index e29fa30951..f5131fa944 100644 --- a/docs/reference/commands/fixelcrop.rst +++ b/docs/reference/commands/fixelcrop.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Rami Tabarra (rami.tabarra@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelfilter.rst b/docs/reference/commands/fixelfilter.rst index 9c94786dc4..d2383a95b4 100644 --- a/docs/reference/commands/fixelfilter.rst +++ b/docs/reference/commands/fixelfilter.rst @@ -78,7 +78,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fixelreorient.rst b/docs/reference/commands/fixelreorient.rst index 139ec42a3f..f87a8cff52 100644 --- a/docs/reference/commands/fixelreorient.rst +++ b/docs/reference/commands/fixelreorient.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/fod2fixel.rst b/docs/reference/commands/fod2fixel.rst index 03ebac6144..413e972495 100644 --- a/docs/reference/commands/fod2fixel.rst +++ b/docs/reference/commands/fod2fixel.rst @@ -94,7 +94,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/for_each.rst b/docs/reference/commands/for_each.rst index c2bf86d4aa..596f1c796e 100644 --- a/docs/reference/commands/for_each.rst +++ b/docs/reference/commands/for_each.rst @@ -114,7 +114,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/label2colour.rst b/docs/reference/commands/label2colour.rst index d526c2a0e3..f9c5fd672c 100644 --- a/docs/reference/commands/label2colour.rst +++ b/docs/reference/commands/label2colour.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/label2mesh.rst b/docs/reference/commands/label2mesh.rst index 543f786025..e75600dede 100644 --- a/docs/reference/commands/label2mesh.rst +++ b/docs/reference/commands/label2mesh.rst @@ -53,7 +53,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelconvert.rst b/docs/reference/commands/labelconvert.rst index d55ff8b4ad..89ae58f28a 100644 --- a/docs/reference/commands/labelconvert.rst +++ b/docs/reference/commands/labelconvert.rst @@ -72,7 +72,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelsgmfix.rst b/docs/reference/commands/labelsgmfix.rst index 2151928a32..19d68b9cc8 100644 --- a/docs/reference/commands/labelsgmfix.rst +++ b/docs/reference/commands/labelsgmfix.rst @@ -72,7 +72,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/labelstats.rst b/docs/reference/commands/labelstats.rst index 20a7ab2b22..1c1df1aa6d 100644 --- a/docs/reference/commands/labelstats.rst +++ b/docs/reference/commands/labelstats.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mask2glass.rst b/docs/reference/commands/mask2glass.rst index 6dbee1a510..63885a76e7 100644 --- a/docs/reference/commands/mask2glass.rst +++ b/docs/reference/commands/mask2glass.rst @@ -73,7 +73,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Remika Mito (remika.mito@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/maskdump.rst b/docs/reference/commands/maskdump.rst index c4ac2c63e4..db7b50b70d 100644 --- a/docs/reference/commands/maskdump.rst +++ b/docs/reference/commands/maskdump.rst @@ -56,7 +56,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/maskfilter.rst b/docs/reference/commands/maskfilter.rst index 51d33926f1..72732bbd73 100644 --- a/docs/reference/commands/maskfilter.rst +++ b/docs/reference/commands/maskfilter.rst @@ -95,7 +95,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au), Thijs Dhollander (thijs.dhollander@gmail.com) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mesh2voxel.rst b/docs/reference/commands/mesh2voxel.rst index 40dfe5beca..1c2c10b4a5 100644 --- a/docs/reference/commands/mesh2voxel.rst +++ b/docs/reference/commands/mesh2voxel.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/meshconvert.rst b/docs/reference/commands/meshconvert.rst index 925aa9fea0..70c089349a 100644 --- a/docs/reference/commands/meshconvert.rst +++ b/docs/reference/commands/meshconvert.rst @@ -55,7 +55,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/meshfilter.rst b/docs/reference/commands/meshfilter.rst index c527eafe10..e4af06d468 100644 --- a/docs/reference/commands/meshfilter.rst +++ b/docs/reference/commands/meshfilter.rst @@ -73,7 +73,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mraverageheader.rst b/docs/reference/commands/mraverageheader.rst index 7a34aa1a61..b3277468d7 100644 --- a/docs/reference/commands/mraverageheader.rst +++ b/docs/reference/commands/mraverageheader.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Maximilian Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcalc.rst b/docs/reference/commands/mrcalc.rst index d347a06378..f4841e8aaf 100644 --- a/docs/reference/commands/mrcalc.rst +++ b/docs/reference/commands/mrcalc.rst @@ -226,7 +226,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcat.rst b/docs/reference/commands/mrcat.rst index bc9a08253b..9ede3ae0c1 100644 --- a/docs/reference/commands/mrcat.rst +++ b/docs/reference/commands/mrcat.rst @@ -68,7 +68,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcentroid.rst b/docs/reference/commands/mrcentroid.rst index b793d7f52a..1f5f2f89cf 100644 --- a/docs/reference/commands/mrcentroid.rst +++ b/docs/reference/commands/mrcentroid.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcheckerboardmask.rst b/docs/reference/commands/mrcheckerboardmask.rst index 5eb647b9e6..703e62b3df 100644 --- a/docs/reference/commands/mrcheckerboardmask.rst +++ b/docs/reference/commands/mrcheckerboardmask.rst @@ -57,7 +57,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrclusterstats.rst b/docs/reference/commands/mrclusterstats.rst index 3992d1765a..ace64da552 100644 --- a/docs/reference/commands/mrclusterstats.rst +++ b/docs/reference/commands/mrclusterstats.rst @@ -117,7 +117,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrcolour.rst b/docs/reference/commands/mrcolour.rst index 02f09e8fd0..315b23dfa2 100644 --- a/docs/reference/commands/mrcolour.rst +++ b/docs/reference/commands/mrcolour.rst @@ -65,7 +65,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrconvert.rst b/docs/reference/commands/mrconvert.rst index b4a7dd3cdf..d7b187b212 100644 --- a/docs/reference/commands/mrconvert.rst +++ b/docs/reference/commands/mrconvert.rst @@ -188,7 +188,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrdegibbs.rst b/docs/reference/commands/mrdegibbs.rst index 3569e9e5e7..49d525db79 100644 --- a/docs/reference/commands/mrdegibbs.rst +++ b/docs/reference/commands/mrdegibbs.rst @@ -79,7 +79,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ben Jeurissen (ben.jeurissen@uantwerpen.be) & J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrdump.rst b/docs/reference/commands/mrdump.rst index e2ab6ece10..441c379981 100644 --- a/docs/reference/commands/mrdump.rst +++ b/docs/reference/commands/mrdump.rst @@ -58,7 +58,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mredit.rst b/docs/reference/commands/mredit.rst index 37b9b28dbc..7be2f4c57a 100644 --- a/docs/reference/commands/mredit.rst +++ b/docs/reference/commands/mredit.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrfilter.rst b/docs/reference/commands/mrfilter.rst index 563f5c342a..2ec28508a2 100644 --- a/docs/reference/commands/mrfilter.rst +++ b/docs/reference/commands/mrfilter.rst @@ -120,7 +120,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrgrid.rst b/docs/reference/commands/mrgrid.rst index 4020670f9b..f7c4cf0e0c 100644 --- a/docs/reference/commands/mrgrid.rst +++ b/docs/reference/commands/mrgrid.rst @@ -129,7 +129,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) & David Raffelt (david.raffelt@florey.edu.au) & Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrhistmatch.rst b/docs/reference/commands/mrhistmatch.rst index e014671cca..efff525dab 100644 --- a/docs/reference/commands/mrhistmatch.rst +++ b/docs/reference/commands/mrhistmatch.rst @@ -68,7 +68,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrhistogram.rst b/docs/reference/commands/mrhistogram.rst index fc328fe2a5..5cf2de9553 100644 --- a/docs/reference/commands/mrhistogram.rst +++ b/docs/reference/commands/mrhistogram.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrinfo.rst b/docs/reference/commands/mrinfo.rst index ad3740d775..86bb1e72d7 100644 --- a/docs/reference/commands/mrinfo.rst +++ b/docs/reference/commands/mrinfo.rst @@ -132,7 +132,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (d.tournier@brain.org.au) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrmath.rst b/docs/reference/commands/mrmath.rst index ab852bdf1d..3688c60cb0 100644 --- a/docs/reference/commands/mrmath.rst +++ b/docs/reference/commands/mrmath.rst @@ -85,7 +85,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrmetric.rst b/docs/reference/commands/mrmetric.rst index 7ed122fc4c..bb3b953b11 100644 --- a/docs/reference/commands/mrmetric.rst +++ b/docs/reference/commands/mrmetric.rst @@ -70,7 +70,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrregister.rst b/docs/reference/commands/mrregister.rst index 382b0806fa..805ec48a43 100644 --- a/docs/reference/commands/mrregister.rst +++ b/docs/reference/commands/mrregister.rst @@ -217,7 +217,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrstats.rst b/docs/reference/commands/mrstats.rst index 3aefb04419..b48d2fdbec 100644 --- a/docs/reference/commands/mrstats.rst +++ b/docs/reference/commands/mrstats.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrthreshold.rst b/docs/reference/commands/mrthreshold.rst index 3822a9b8e3..51424d808c 100644 --- a/docs/reference/commands/mrthreshold.rst +++ b/docs/reference/commands/mrthreshold.rst @@ -102,7 +102,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrtransform.rst b/docs/reference/commands/mrtransform.rst index 6508620fe3..e7b999194d 100644 --- a/docs/reference/commands/mrtransform.rst +++ b/docs/reference/commands/mrtransform.rst @@ -147,7 +147,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and David Raffelt (david.raffelt@florey.edu.au) and Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrtrix_cleanup.rst b/docs/reference/commands/mrtrix_cleanup.rst index cfeb5ffd03..4e8288aa05 100644 --- a/docs/reference/commands/mrtrix_cleanup.rst +++ b/docs/reference/commands/mrtrix_cleanup.rst @@ -72,7 +72,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mrview.rst b/docs/reference/commands/mrview.rst index 9f680a529c..cf5a78d2c3 100644 --- a/docs/reference/commands/mrview.rst +++ b/docs/reference/commands/mrview.rst @@ -220,7 +220,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com), Dave Raffelt (david.raffelt@florey.edu.au), Robert E. Smith (robert.smith@florey.edu.au), Rami Tabbara (rami.tabbara@florey.edu.au), Max Pietsch (maximilian.pietsch@kcl.ac.uk), Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/mtnormalise.rst b/docs/reference/commands/mtnormalise.rst index f873897f80..3f38db0c7a 100644 --- a/docs/reference/commands/mtnormalise.rst +++ b/docs/reference/commands/mtnormalise.rst @@ -89,7 +89,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Thijs Dhollander (thijs.dhollander@gmail.com), Rami Tabbara (rami.tabbara@florey.edu.au), David Raffelt (david.raffelt@florey.edu.au), Jonas Rosnarho-Tornstrand (jonas.rosnarho-tornstrand@kcl.ac.uk) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/peaks2amp.rst b/docs/reference/commands/peaks2amp.rst index 43e21e1664..5df868f18b 100644 --- a/docs/reference/commands/peaks2amp.rst +++ b/docs/reference/commands/peaks2amp.rst @@ -51,7 +51,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/peaks2fixel.rst b/docs/reference/commands/peaks2fixel.rst index bc970ea512..bf715cb59d 100644 --- a/docs/reference/commands/peaks2fixel.rst +++ b/docs/reference/commands/peaks2fixel.rst @@ -59,7 +59,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/population_template.rst b/docs/reference/commands/population_template.rst index 1194447b20..72b8145631 100644 --- a/docs/reference/commands/population_template.rst +++ b/docs/reference/commands/population_template.rst @@ -154,7 +154,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (maximilian.pietsch@kcl.ac.uk) & Thijs Dhollander (thijs.dhollander@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/responsemean.rst b/docs/reference/commands/responsemean.rst index 4df64f678b..105498c804 100644 --- a/docs/reference/commands/responsemean.rst +++ b/docs/reference/commands/responsemean.rst @@ -71,7 +71,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2amp.rst b/docs/reference/commands/sh2amp.rst index 5d368a8529..81d6d8b6e5 100644 --- a/docs/reference/commands/sh2amp.rst +++ b/docs/reference/commands/sh2amp.rst @@ -89,7 +89,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2peaks.rst b/docs/reference/commands/sh2peaks.rst index 8821ce9000..f2826bf623 100644 --- a/docs/reference/commands/sh2peaks.rst +++ b/docs/reference/commands/sh2peaks.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2power.rst b/docs/reference/commands/sh2power.rst index d5be7b653d..54d0ebb676 100644 --- a/docs/reference/commands/sh2power.rst +++ b/docs/reference/commands/sh2power.rst @@ -61,7 +61,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/sh2response.rst b/docs/reference/commands/sh2response.rst index 34fe5301ae..d5a0bc98ca 100644 --- a/docs/reference/commands/sh2response.rst +++ b/docs/reference/commands/sh2response.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shbasis.rst b/docs/reference/commands/shbasis.rst index 6d2836ad81..441fb4a18b 100644 --- a/docs/reference/commands/shbasis.rst +++ b/docs/reference/commands/shbasis.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shconv.rst b/docs/reference/commands/shconv.rst index 0b61bd4068..398b56f446 100644 --- a/docs/reference/commands/shconv.rst +++ b/docs/reference/commands/shconv.rst @@ -76,7 +76,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/shview.rst b/docs/reference/commands/shview.rst index 17173758db..446066db03 100644 --- a/docs/reference/commands/shview.rst +++ b/docs/reference/commands/shview.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tck2connectome.rst b/docs/reference/commands/tck2connectome.rst index b447fdf707..409dc2eb95 100644 --- a/docs/reference/commands/tck2connectome.rst +++ b/docs/reference/commands/tck2connectome.rst @@ -127,7 +127,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tck2fixel.rst b/docs/reference/commands/tck2fixel.rst index 984f71db8b..4e58ece885 100644 --- a/docs/reference/commands/tck2fixel.rst +++ b/docs/reference/commands/tck2fixel.rst @@ -61,7 +61,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckconvert.rst b/docs/reference/commands/tckconvert.rst index a3411833dc..5c530b2789 100644 --- a/docs/reference/commands/tckconvert.rst +++ b/docs/reference/commands/tckconvert.rst @@ -92,7 +92,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Daan Christiaens (daan.christiaens@kcl.ac.uk), J-Donald Tournier (jdtournier@gmail.com), Philip Broser (philip.broser@me.com), Daniel Blezek (daniel.blezek@gmail.com). -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckdfc.rst b/docs/reference/commands/tckdfc.rst index 327fb39404..fd9b3c6fd5 100644 --- a/docs/reference/commands/tckdfc.rst +++ b/docs/reference/commands/tckdfc.rst @@ -91,7 +91,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckedit.rst b/docs/reference/commands/tckedit.rst index aca8d5bddd..5f0800bb00 100644 --- a/docs/reference/commands/tckedit.rst +++ b/docs/reference/commands/tckedit.rst @@ -129,7 +129,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckgen.rst b/docs/reference/commands/tckgen.rst index c59a1520d2..97b1092a37 100644 --- a/docs/reference/commands/tckgen.rst +++ b/docs/reference/commands/tckgen.rst @@ -203,7 +203,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) and Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckinfo.rst b/docs/reference/commands/tckinfo.rst index 33c08d88a8..d0286bd136 100644 --- a/docs/reference/commands/tckinfo.rst +++ b/docs/reference/commands/tckinfo.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckmap.rst b/docs/reference/commands/tckmap.rst index ceed101f9f..946e971596 100644 --- a/docs/reference/commands/tckmap.rst +++ b/docs/reference/commands/tckmap.rst @@ -150,7 +150,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckresample.rst b/docs/reference/commands/tckresample.rst index 48f399e2e2..4f7effcf51 100644 --- a/docs/reference/commands/tckresample.rst +++ b/docs/reference/commands/tckresample.rst @@ -75,7 +75,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksample.rst b/docs/reference/commands/tcksample.rst index 1a81e5a6bc..3fe24c5d71 100644 --- a/docs/reference/commands/tcksample.rst +++ b/docs/reference/commands/tcksample.rst @@ -67,7 +67,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksift.rst b/docs/reference/commands/tcksift.rst index 14a4a452ac..1667d1ac53 100644 --- a/docs/reference/commands/tcksift.rst +++ b/docs/reference/commands/tcksift.rst @@ -99,7 +99,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcksift2.rst b/docs/reference/commands/tcksift2.rst index 18e02f029d..62b3a8e438 100644 --- a/docs/reference/commands/tcksift2.rst +++ b/docs/reference/commands/tcksift2.rst @@ -118,7 +118,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tckstats.rst b/docs/reference/commands/tckstats.rst index a045308e80..0f25066d18 100644 --- a/docs/reference/commands/tckstats.rst +++ b/docs/reference/commands/tckstats.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tcktransform.rst b/docs/reference/commands/tcktransform.rst index 28da1e5d23..327c91572c 100644 --- a/docs/reference/commands/tcktransform.rst +++ b/docs/reference/commands/tcktransform.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tensor2metric.rst b/docs/reference/commands/tensor2metric.rst index 67e138977c..f43a3496fb 100644 --- a/docs/reference/commands/tensor2metric.rst +++ b/docs/reference/commands/tensor2metric.rst @@ -96,7 +96,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Ben Jeurissen (ben.jeurissen@uantwerpen.be), Thijs Dhollander (thijs.dhollander@gmail.com) & J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformcalc.rst b/docs/reference/commands/transformcalc.rst index 6d6813efb2..54b9acbcc8 100644 --- a/docs/reference/commands/transformcalc.rst +++ b/docs/reference/commands/transformcalc.rst @@ -93,7 +93,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformcompose.rst b/docs/reference/commands/transformcompose.rst index 42b56dbdb9..f97ba589f8 100644 --- a/docs/reference/commands/transformcompose.rst +++ b/docs/reference/commands/transformcompose.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/transformconvert.rst b/docs/reference/commands/transformconvert.rst index 59f5a09f93..97a9822b05 100644 --- a/docs/reference/commands/transformconvert.rst +++ b/docs/reference/commands/transformconvert.rst @@ -71,7 +71,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Max Pietsch (maximilian.pietsch@kcl.ac.uk) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfdivide.rst b/docs/reference/commands/tsfdivide.rst index 16bad54fca..5b1c6ecd91 100644 --- a/docs/reference/commands/tsfdivide.rst +++ b/docs/reference/commands/tsfdivide.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfinfo.rst b/docs/reference/commands/tsfinfo.rst index 1d7625f7d7..37bb5ef914 100644 --- a/docs/reference/commands/tsfinfo.rst +++ b/docs/reference/commands/tsfinfo.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfmult.rst b/docs/reference/commands/tsfmult.rst index 364be27e54..d889112d56 100644 --- a/docs/reference/commands/tsfmult.rst +++ b/docs/reference/commands/tsfmult.rst @@ -52,7 +52,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfsmooth.rst b/docs/reference/commands/tsfsmooth.rst index 8c033185c1..7c7dcd2481 100644 --- a/docs/reference/commands/tsfsmooth.rst +++ b/docs/reference/commands/tsfsmooth.rst @@ -53,7 +53,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfthreshold.rst b/docs/reference/commands/tsfthreshold.rst index faaa8c01f8..bf25d3c4c0 100644 --- a/docs/reference/commands/tsfthreshold.rst +++ b/docs/reference/commands/tsfthreshold.rst @@ -54,7 +54,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/tsfvalidate.rst b/docs/reference/commands/tsfvalidate.rst index 2df9697367..c119443b72 100644 --- a/docs/reference/commands/tsfvalidate.rst +++ b/docs/reference/commands/tsfvalidate.rst @@ -51,7 +51,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/vectorstats.rst b/docs/reference/commands/vectorstats.rst index 5f477821e4..7ee3d1b74a 100644 --- a/docs/reference/commands/vectorstats.rst +++ b/docs/reference/commands/vectorstats.rst @@ -88,7 +88,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/voxel2fixel.rst b/docs/reference/commands/voxel2fixel.rst index 035c46c2f6..ff1990075e 100644 --- a/docs/reference/commands/voxel2fixel.rst +++ b/docs/reference/commands/voxel2fixel.rst @@ -61,7 +61,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/voxel2mesh.rst b/docs/reference/commands/voxel2mesh.rst index 47705f59d9..bfee5ab96a 100644 --- a/docs/reference/commands/voxel2mesh.rst +++ b/docs/reference/commands/voxel2mesh.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warp2metric.rst b/docs/reference/commands/warp2metric.rst index b7d0ff1b06..79a0f57417 100644 --- a/docs/reference/commands/warp2metric.rst +++ b/docs/reference/commands/warp2metric.rst @@ -64,7 +64,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpconvert.rst b/docs/reference/commands/warpconvert.rst index bcdd6f78e2..c407f7f183 100644 --- a/docs/reference/commands/warpconvert.rst +++ b/docs/reference/commands/warpconvert.rst @@ -63,7 +63,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpcorrect.rst b/docs/reference/commands/warpcorrect.rst index c51497a61f..6a22d3f036 100644 --- a/docs/reference/commands/warpcorrect.rst +++ b/docs/reference/commands/warpcorrect.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** David Raffelt (david.raffelt@florey.edu.au) & Max Pietsch (mail@maxpietsch.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpinit.rst b/docs/reference/commands/warpinit.rst index dab5309938..b3c52aecb1 100644 --- a/docs/reference/commands/warpinit.rst +++ b/docs/reference/commands/warpinit.rst @@ -62,7 +62,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** J-Donald Tournier (jdtournier@gmail.com) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/docs/reference/commands/warpinvert.rst b/docs/reference/commands/warpinvert.rst index be00fa18b5..ff702d0157 100644 --- a/docs/reference/commands/warpinvert.rst +++ b/docs/reference/commands/warpinvert.rst @@ -60,7 +60,7 @@ Tournier, J.-D.; Smith, R. E.; Raffelt, D.; Tabbara, R.; Dhollander, T.; Pietsch **Author:** Robert E. Smith (robert.smith@florey.edu.au) and David Raffelt (david.raffelt@florey.edu.au) -**Copyright:** Copyright (c) 2008-2023 the MRtrix3 contributors. +**Copyright:** Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/doxygen b/doxygen index bc269a2397..045dff655f 100755 --- a/doxygen +++ b/doxygen @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/generate_bash_completion.py b/generate_bash_completion.py index 159d8a986c..3e2942bebd 100755 --- a/generate_bash_completion.py +++ b/generate_bash_completion.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/install_mime_types.sh b/install_mime_types.sh index ea605158ec..db039d2946 100755 --- a/install_mime_types.sh +++ b/install_mime_types.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/private/add_field.m b/matlab/private/add_field.m index 78d99f30fe..e1818afb2c 100644 --- a/matlab/private/add_field.m +++ b/matlab/private/add_field.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix.m b/matlab/read_mrtrix.m index fd2ff8052e..3d0ab74490 100644 --- a/matlab/read_mrtrix.m +++ b/matlab/read_mrtrix.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix_tracks.m b/matlab/read_mrtrix_tracks.m index 1553b717da..1c7f33b313 100644 --- a/matlab/read_mrtrix_tracks.m +++ b/matlab/read_mrtrix_tracks.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/read_mrtrix_tsf.m b/matlab/read_mrtrix_tsf.m index a216206918..37c9fd1d2a 100644 --- a/matlab/read_mrtrix_tsf.m +++ b/matlab/read_mrtrix_tsf.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix.m b/matlab/write_mrtrix.m index f123f4977f..96a624bff9 100644 --- a/matlab/write_mrtrix.m +++ b/matlab/write_mrtrix.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix_tracks.m b/matlab/write_mrtrix_tracks.m index de32253ddc..e45d899e70 100644 --- a/matlab/write_mrtrix_tracks.m +++ b/matlab/write_mrtrix_tracks.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/matlab/write_mrtrix_tsf.m b/matlab/write_mrtrix_tsf.m index b3c34a2f95..bd22f9a67a 100644 --- a/matlab/write_mrtrix_tsf.m +++ b/matlab/write_mrtrix_tsf.m @@ -1,4 +1,4 @@ -% Copyright (c) 2008-2023 the MRtrix3 contributors. +% Copyright (c) 2008-2024 the MRtrix3 contributors. % % This Source Code Form is subject to the terms of the Mozilla Public % License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/mrview.desktop b/mrview.desktop index 990a78ae68..f029ca4dc0 100644 --- a/mrview.desktop +++ b/mrview.desktop @@ -1,6 +1,6 @@ #!/usr/bin/env xdg-open -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/_5ttgen/freesurfer.py b/python/lib/mrtrix3/_5ttgen/freesurfer.py index cdfbed3717..28e22f6355 100644 --- a/python/lib/mrtrix3/_5ttgen/freesurfer.py +++ b/python/lib/mrtrix3/_5ttgen/freesurfer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/_5ttgen/fsl.py b/python/lib/mrtrix3/_5ttgen/fsl.py index e90e7399cb..0943fce7c5 100644 --- a/python/lib/mrtrix3/_5ttgen/fsl.py +++ b/python/lib/mrtrix3/_5ttgen/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/_5ttgen/gif.py b/python/lib/mrtrix3/_5ttgen/gif.py index 36b4faf699..35cebc7c2a 100644 --- a/python/lib/mrtrix3/_5ttgen/gif.py +++ b/python/lib/mrtrix3/_5ttgen/gif.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/_5ttgen/hsvs.py b/python/lib/mrtrix3/_5ttgen/hsvs.py index 1605d63b48..dfbdf94e7a 100644 --- a/python/lib/mrtrix3/_5ttgen/hsvs.py +++ b/python/lib/mrtrix3/_5ttgen/hsvs.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/__init__.py b/python/lib/mrtrix3/__init__.py index a4f29bcd41..aff056c52a 100644 --- a/python/lib/mrtrix3/__init__.py +++ b/python/lib/mrtrix3/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/algorithm.py b/python/lib/mrtrix3/algorithm.py index 88386e2acc..dcc8bc5bba 100644 --- a/python/lib/mrtrix3/algorithm.py +++ b/python/lib/mrtrix3/algorithm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/app.py b/python/lib/mrtrix3/app.py index c80a413ad5..7f64a031df 100644 --- a/python/lib/mrtrix3/app.py +++ b/python/lib/mrtrix3/app.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this @@ -56,7 +56,7 @@ _DEFAULT_COPYRIGHT = \ -'''Copyright (c) 2008-2023 the MRtrix3 contributors. +'''Copyright (c) 2008-2024 the MRtrix3 contributors. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/3dautomask.py b/python/lib/mrtrix3/dwi2mask/3dautomask.py index 59664bb732..fe442a6df3 100644 --- a/python/lib/mrtrix3/dwi2mask/3dautomask.py +++ b/python/lib/mrtrix3/dwi2mask/3dautomask.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/ants.py b/python/lib/mrtrix3/dwi2mask/ants.py index 48a25475ad..60bac4a159 100644 --- a/python/lib/mrtrix3/dwi2mask/ants.py +++ b/python/lib/mrtrix3/dwi2mask/ants.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/b02template.py b/python/lib/mrtrix3/dwi2mask/b02template.py index 4c3d1ed073..9524972ca2 100644 --- a/python/lib/mrtrix3/dwi2mask/b02template.py +++ b/python/lib/mrtrix3/dwi2mask/b02template.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/consensus.py b/python/lib/mrtrix3/dwi2mask/consensus.py index 1092fa0d44..dfc4c4e501 100644 --- a/python/lib/mrtrix3/dwi2mask/consensus.py +++ b/python/lib/mrtrix3/dwi2mask/consensus.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/fslbet.py b/python/lib/mrtrix3/dwi2mask/fslbet.py index 4c67cda5a1..2112714ffb 100644 --- a/python/lib/mrtrix3/dwi2mask/fslbet.py +++ b/python/lib/mrtrix3/dwi2mask/fslbet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/hdbet.py b/python/lib/mrtrix3/dwi2mask/hdbet.py index 0ead11ddf7..81dc77aee9 100644 --- a/python/lib/mrtrix3/dwi2mask/hdbet.py +++ b/python/lib/mrtrix3/dwi2mask/hdbet.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/legacy.py b/python/lib/mrtrix3/dwi2mask/legacy.py index dcba64a179..39e1ae31c9 100644 --- a/python/lib/mrtrix3/dwi2mask/legacy.py +++ b/python/lib/mrtrix3/dwi2mask/legacy.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/mean.py b/python/lib/mrtrix3/dwi2mask/mean.py index 30060fdd43..08d73dcc6b 100644 --- a/python/lib/mrtrix3/dwi2mask/mean.py +++ b/python/lib/mrtrix3/dwi2mask/mean.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/mtnorm.py b/python/lib/mrtrix3/dwi2mask/mtnorm.py index 340e923723..92bf4c05e2 100644 --- a/python/lib/mrtrix3/dwi2mask/mtnorm.py +++ b/python/lib/mrtrix3/dwi2mask/mtnorm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/synthstrip.py b/python/lib/mrtrix3/dwi2mask/synthstrip.py index d02070ee94..ca9751eeb6 100644 --- a/python/lib/mrtrix3/dwi2mask/synthstrip.py +++ b/python/lib/mrtrix3/dwi2mask/synthstrip.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2mask/trace.py b/python/lib/mrtrix3/dwi2mask/trace.py index 823d36f95e..9d1fe42fe3 100644 --- a/python/lib/mrtrix3/dwi2mask/trace.py +++ b/python/lib/mrtrix3/dwi2mask/trace.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/dhollander.py b/python/lib/mrtrix3/dwi2response/dhollander.py index faaedecd68..5d7bce0fbf 100644 --- a/python/lib/mrtrix3/dwi2response/dhollander.py +++ b/python/lib/mrtrix3/dwi2response/dhollander.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/fa.py b/python/lib/mrtrix3/dwi2response/fa.py index 5de851ac12..68074548ec 100644 --- a/python/lib/mrtrix3/dwi2response/fa.py +++ b/python/lib/mrtrix3/dwi2response/fa.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/manual.py b/python/lib/mrtrix3/dwi2response/manual.py index 0d69b56f12..c8b8ec22b1 100644 --- a/python/lib/mrtrix3/dwi2response/manual.py +++ b/python/lib/mrtrix3/dwi2response/manual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/msmt_5tt.py b/python/lib/mrtrix3/dwi2response/msmt_5tt.py index 30fe810355..368caea724 100644 --- a/python/lib/mrtrix3/dwi2response/msmt_5tt.py +++ b/python/lib/mrtrix3/dwi2response/msmt_5tt.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/tax.py b/python/lib/mrtrix3/dwi2response/tax.py index 33e46f0db7..6b9f566690 100644 --- a/python/lib/mrtrix3/dwi2response/tax.py +++ b/python/lib/mrtrix3/dwi2response/tax.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwi2response/tournier.py b/python/lib/mrtrix3/dwi2response/tournier.py index 49c31bad0d..66ac9dfa23 100644 --- a/python/lib/mrtrix3/dwi2response/tournier.py +++ b/python/lib/mrtrix3/dwi2response/tournier.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwibiascorrect/ants.py b/python/lib/mrtrix3/dwibiascorrect/ants.py index baf8c7c963..cfc9f3b70a 100644 --- a/python/lib/mrtrix3/dwibiascorrect/ants.py +++ b/python/lib/mrtrix3/dwibiascorrect/ants.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwibiascorrect/fsl.py b/python/lib/mrtrix3/dwibiascorrect/fsl.py index c82ce84707..9f8c652270 100644 --- a/python/lib/mrtrix3/dwibiascorrect/fsl.py +++ b/python/lib/mrtrix3/dwibiascorrect/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwibiascorrect/mtnorm.py b/python/lib/mrtrix3/dwibiascorrect/mtnorm.py index dbbcd5350c..a8a62af41b 100644 --- a/python/lib/mrtrix3/dwibiascorrect/mtnorm.py +++ b/python/lib/mrtrix3/dwibiascorrect/mtnorm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwinormalise/group.py b/python/lib/mrtrix3/dwinormalise/group.py index 77260dfbc2..a0de05ffee 100644 --- a/python/lib/mrtrix3/dwinormalise/group.py +++ b/python/lib/mrtrix3/dwinormalise/group.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwinormalise/manual.py b/python/lib/mrtrix3/dwinormalise/manual.py index 14b290d56b..11ff988353 100644 --- a/python/lib/mrtrix3/dwinormalise/manual.py +++ b/python/lib/mrtrix3/dwinormalise/manual.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/dwinormalise/mtnorm.py b/python/lib/mrtrix3/dwinormalise/mtnorm.py index 7f9c5a7589..a505e3faec 100644 --- a/python/lib/mrtrix3/dwinormalise/mtnorm.py +++ b/python/lib/mrtrix3/dwinormalise/mtnorm.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/fsl.py b/python/lib/mrtrix3/fsl.py index 1fc1c71833..eec4f4161c 100644 --- a/python/lib/mrtrix3/fsl.py +++ b/python/lib/mrtrix3/fsl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/image.py b/python/lib/mrtrix3/image.py index 9f0ecc6d86..5b426d9e27 100644 --- a/python/lib/mrtrix3/image.py +++ b/python/lib/mrtrix3/image.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/matrix.py b/python/lib/mrtrix3/matrix.py index ad0f34f5fd..11b879871d 100644 --- a/python/lib/mrtrix3/matrix.py +++ b/python/lib/mrtrix3/matrix.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/path.py b/python/lib/mrtrix3/path.py index 485730b4b7..b67014cd62 100644 --- a/python/lib/mrtrix3/path.py +++ b/python/lib/mrtrix3/path.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/phaseencoding.py b/python/lib/mrtrix3/phaseencoding.py index 91a70d1e7f..ba90238dc1 100644 --- a/python/lib/mrtrix3/phaseencoding.py +++ b/python/lib/mrtrix3/phaseencoding.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/run.py b/python/lib/mrtrix3/run.py index e4d22ad853..bd04a2a19d 100644 --- a/python/lib/mrtrix3/run.py +++ b/python/lib/mrtrix3/run.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/sh.py b/python/lib/mrtrix3/sh.py index b99fdf209b..a981624321 100644 --- a/python/lib/mrtrix3/sh.py +++ b/python/lib/mrtrix3/sh.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/python/lib/mrtrix3/utils.py b/python/lib/mrtrix3/utils.py index 09061497b3..4fdcfeb7fc 100644 --- a/python/lib/mrtrix3/utils.py +++ b/python/lib/mrtrix3/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/run_pylint b/run_pylint index a971644bab..9a4e3a1e50 100755 --- a/run_pylint +++ b/run_pylint @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/set_path b/set_path index fa1cd05051..c5516cce0e 100755 --- a/set_path +++ b/set_path @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt b/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt index 71d0ca5496..5d0e9ca9fb 100644 --- a/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt +++ b/share/mrtrix3/_5ttgen/FreeSurfer2ACT.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt b/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt index 9c67b51e60..0aa6d1bf43 100644 --- a/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt +++ b/share/mrtrix3/_5ttgen/FreeSurfer2ACT_sgm_amyg_hipp.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt b/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt index 0d0d577a6a..c557294be8 100644 --- a/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt +++ b/share/mrtrix3/_5ttgen/hsvs/AmygSubfields.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt b/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt index 3a14879754..bcc500748e 100644 --- a/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt +++ b/share/mrtrix3/_5ttgen/hsvs/HippSubfields.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/aal.txt b/share/mrtrix3/labelconvert/aal.txt index 4682de351a..e412130d52 100644 --- a/share/mrtrix3/labelconvert/aal.txt +++ b/share/mrtrix3/labelconvert/aal.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/aal2.txt b/share/mrtrix3/labelconvert/aal2.txt index d5427d56dc..e34b62af5f 100644 --- a/share/mrtrix3/labelconvert/aal2.txt +++ b/share/mrtrix3/labelconvert/aal2.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt b/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt index 7fb7bbda35..d4ebf64e37 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cinginc_convert.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt b/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt index 1ea4368d7d..752468da97 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cinginc_labels.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt b/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt index d2c992a097..397cb981ba 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cingsep_convert.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt b/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt index 17c0051be9..a6fd8d5f51 100644 --- a/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt +++ b/share/mrtrix3/labelconvert/fs2lobes_cingsep_labels.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs_a2009s.txt b/share/mrtrix3/labelconvert/fs_a2009s.txt index 27c03bb400..34fd2c2591 100644 --- a/share/mrtrix3/labelconvert/fs_a2009s.txt +++ b/share/mrtrix3/labelconvert/fs_a2009s.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/fs_default.txt b/share/mrtrix3/labelconvert/fs_default.txt index 9f0ffb9a67..8ea6173d00 100644 --- a/share/mrtrix3/labelconvert/fs_default.txt +++ b/share/mrtrix3/labelconvert/fs_default.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt b/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt index 4f79a42a9b..df6381a8fa 100644 --- a/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt +++ b/share/mrtrix3/labelconvert/hcpmmp1_ordered.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/hcpmmp1_original.txt b/share/mrtrix3/labelconvert/hcpmmp1_original.txt index c8ad5d3232..be2f778515 100644 --- a/share/mrtrix3/labelconvert/hcpmmp1_original.txt +++ b/share/mrtrix3/labelconvert/hcpmmp1_original.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelconvert/lpba40.txt b/share/mrtrix3/labelconvert/lpba40.txt index dcb1fabae8..04491ca150 100644 --- a/share/mrtrix3/labelconvert/lpba40.txt +++ b/share/mrtrix3/labelconvert/lpba40.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt b/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt index 747c007ff4..fe73fa32b3 100644 --- a/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt +++ b/share/mrtrix3/labelsgmfix/FreeSurferSGM.txt @@ -1,4 +1,4 @@ -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/colourmap.cpp b/src/colourmap.cpp index da9372c3e9..812b800b94 100644 --- a/src/colourmap.cpp +++ b/src/colourmap.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/colourmap.h b/src/colourmap.h index cc9e8947fd..e6741eb360 100644 --- a/src/colourmap.h +++ b/src/colourmap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/connectome.cpp b/src/connectome/connectome.cpp index 341ca6c5df..f62fc40367 100644 --- a/src/connectome/connectome.cpp +++ b/src/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/connectome.h b/src/connectome/connectome.h index b1827a860e..cccd6c0dad 100644 --- a/src/connectome/connectome.h +++ b/src/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/enhance.cpp b/src/connectome/enhance.cpp index d115adc516..2b46e7427b 100644 --- a/src/connectome/enhance.cpp +++ b/src/connectome/enhance.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/enhance.h b/src/connectome/enhance.h index a39b986b2f..8eaa4f7c0b 100644 --- a/src/connectome/enhance.h +++ b/src/connectome/enhance.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/lut.cpp b/src/connectome/lut.cpp index 3a8dca6206..60ecfef147 100644 --- a/src/connectome/lut.cpp +++ b/src/connectome/lut.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/lut.h b/src/connectome/lut.h index 6da217f2e4..ce0ed99f2f 100644 --- a/src/connectome/lut.h +++ b/src/connectome/lut.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/connectome/mat2vec.h b/src/connectome/mat2vec.h index c14084e3ed..2d9d2cbb3b 100644 --- a/src/connectome/mat2vec.h +++ b/src/connectome/mat2vec.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/degibbs/unring1d.h b/src/degibbs/unring1d.h index 86daf75d70..eac0c3204f 100644 --- a/src/degibbs/unring1d.h +++ b/src/degibbs/unring1d.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/degibbs/unring2d.h b/src/degibbs/unring2d.h index c6e2670385..729384f520 100644 --- a/src/degibbs/unring2d.h +++ b/src/degibbs/unring2d.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/degibbs/unring3d.h b/src/degibbs/unring3d.h index 4e63473441..1f12b1d228 100644 --- a/src/degibbs/unring3d.h +++ b/src/degibbs/unring3d.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/bootstrap.h b/src/dwi/bootstrap.h index e6ed70c548..0b35ca892b 100644 --- a/src/dwi/bootstrap.h +++ b/src/dwi/bootstrap.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/file.cpp b/src/dwi/directions/file.cpp index 4d61bdcad1..a1a7a879fa 100644 --- a/src/dwi/directions/file.cpp +++ b/src/dwi/directions/file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/file.h b/src/dwi/directions/file.h index d224d0cf06..4ca85292f4 100644 --- a/src/dwi/directions/file.h +++ b/src/dwi/directions/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/mask.cpp b/src/dwi/directions/mask.cpp index 6691c016c4..0d246d0d89 100644 --- a/src/dwi/directions/mask.cpp +++ b/src/dwi/directions/mask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/mask.h b/src/dwi/directions/mask.h index be60a24d75..cfb80bd302 100644 --- a/src/dwi/directions/mask.h +++ b/src/dwi/directions/mask.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/predefined.cpp b/src/dwi/directions/predefined.cpp index 8b0769bc96..3e622e0287 100644 --- a/src/dwi/directions/predefined.cpp +++ b/src/dwi/directions/predefined.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/predefined.h b/src/dwi/directions/predefined.h index 65723b74d1..c749d74b8a 100644 --- a/src/dwi/directions/predefined.h +++ b/src/dwi/directions/predefined.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/set.cpp b/src/dwi/directions/set.cpp index a818f439a5..63c8f0d448 100644 --- a/src/dwi/directions/set.cpp +++ b/src/dwi/directions/set.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/directions/set.h b/src/dwi/directions/set.h index dcac88618e..33b0c94a64 100644 --- a/src/dwi/directions/set.h +++ b/src/dwi/directions/set.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fixel_map.h b/src/dwi/fixel_map.h index ae3244c5c7..062388c2c3 100644 --- a/src/dwi/fixel_map.h +++ b/src/dwi/fixel_map.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fmls.cpp b/src/dwi/fmls.cpp index 8f14784f36..fc39041250 100644 --- a/src/dwi/fmls.cpp +++ b/src/dwi/fmls.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/fmls.h b/src/dwi/fmls.h index 1d19d5c87f..968acc24e6 100644 --- a/src/dwi/fmls.h +++ b/src/dwi/fmls.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/noise_estimator.h b/src/dwi/noise_estimator.h index c4eebdb794..a209176f1f 100644 --- a/src/dwi/noise_estimator.h +++ b/src/dwi/noise_estimator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/csd.cpp b/src/dwi/sdeconv/csd.cpp index af286b4509..5afefa60e8 100644 --- a/src/dwi/sdeconv/csd.cpp +++ b/src/dwi/sdeconv/csd.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/csd.h b/src/dwi/sdeconv/csd.h index b1e4779c9f..f1f0d1c9a7 100644 --- a/src/dwi/sdeconv/csd.h +++ b/src/dwi/sdeconv/csd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/msmt_csd.cpp b/src/dwi/sdeconv/msmt_csd.cpp index 0c406cac80..0abecdb65e 100644 --- a/src/dwi/sdeconv/msmt_csd.cpp +++ b/src/dwi/sdeconv/msmt_csd.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/sdeconv/msmt_csd.h b/src/dwi/sdeconv/msmt_csd.h index ee08f600aa..c4162ea614 100644 --- a/src/dwi/sdeconv/msmt_csd.h +++ b/src/dwi/sdeconv/msmt_csd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tensor.h b/src/dwi/tensor.h index c7892b749d..8932932ce5 100644 --- a/src/dwi/tensor.h +++ b/src/dwi/tensor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/act.cpp b/src/dwi/tractography/ACT/act.cpp index 780c526c1f..aca7225155 100644 --- a/src/dwi/tractography/ACT/act.cpp +++ b/src/dwi/tractography/ACT/act.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/act.h b/src/dwi/tractography/ACT/act.h index 618c2e2793..b78678530c 100644 --- a/src/dwi/tractography/ACT/act.h +++ b/src/dwi/tractography/ACT/act.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/gmwmi.cpp b/src/dwi/tractography/ACT/gmwmi.cpp index 2731bbb151..fc8a867e55 100644 --- a/src/dwi/tractography/ACT/gmwmi.cpp +++ b/src/dwi/tractography/ACT/gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/gmwmi.h b/src/dwi/tractography/ACT/gmwmi.h index df6f6848ca..226a94fdb7 100644 --- a/src/dwi/tractography/ACT/gmwmi.h +++ b/src/dwi/tractography/ACT/gmwmi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/method.h b/src/dwi/tractography/ACT/method.h index 754932e899..1bc78459ae 100644 --- a/src/dwi/tractography/ACT/method.h +++ b/src/dwi/tractography/ACT/method.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/shared.h b/src/dwi/tractography/ACT/shared.h index 7594a57f55..d37b0bca49 100644 --- a/src/dwi/tractography/ACT/shared.h +++ b/src/dwi/tractography/ACT/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/ACT/tissues.h b/src/dwi/tractography/ACT/tissues.h index da36a307ba..12e58dbf95 100644 --- a/src/dwi/tractography/ACT/tissues.h +++ b/src/dwi/tractography/ACT/tissues.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/energy.h b/src/dwi/tractography/GT/energy.h index 7d2adc4712..d577f8b2c9 100644 --- a/src/dwi/tractography/GT/energy.h +++ b/src/dwi/tractography/GT/energy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/externalenergy.cpp b/src/dwi/tractography/GT/externalenergy.cpp index fb08a6e226..7182a56197 100644 --- a/src/dwi/tractography/GT/externalenergy.cpp +++ b/src/dwi/tractography/GT/externalenergy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/externalenergy.h b/src/dwi/tractography/GT/externalenergy.h index eee3dea2ff..76feca10e1 100644 --- a/src/dwi/tractography/GT/externalenergy.h +++ b/src/dwi/tractography/GT/externalenergy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/gt.cpp b/src/dwi/tractography/GT/gt.cpp index 1c1b32c4bb..58a4af3e20 100644 --- a/src/dwi/tractography/GT/gt.cpp +++ b/src/dwi/tractography/GT/gt.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/gt.h b/src/dwi/tractography/GT/gt.h index 8c5f9be935..c5f4038e07 100644 --- a/src/dwi/tractography/GT/gt.h +++ b/src/dwi/tractography/GT/gt.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/internalenergy.cpp b/src/dwi/tractography/GT/internalenergy.cpp index 26279c7c00..ea9ac07ab6 100644 --- a/src/dwi/tractography/GT/internalenergy.cpp +++ b/src/dwi/tractography/GT/internalenergy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/internalenergy.h b/src/dwi/tractography/GT/internalenergy.h index 919a20ad5c..dc63015b0a 100644 --- a/src/dwi/tractography/GT/internalenergy.h +++ b/src/dwi/tractography/GT/internalenergy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/mhsampler.cpp b/src/dwi/tractography/GT/mhsampler.cpp index 579b78987b..64117a9653 100644 --- a/src/dwi/tractography/GT/mhsampler.cpp +++ b/src/dwi/tractography/GT/mhsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/mhsampler.h b/src/dwi/tractography/GT/mhsampler.h index 4f92cdd8a7..1b29cbd52a 100644 --- a/src/dwi/tractography/GT/mhsampler.h +++ b/src/dwi/tractography/GT/mhsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particle.cpp b/src/dwi/tractography/GT/particle.cpp index ab74dfa092..5e8f5609be 100644 --- a/src/dwi/tractography/GT/particle.cpp +++ b/src/dwi/tractography/GT/particle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particle.h b/src/dwi/tractography/GT/particle.h index 4e6194aeda..77d81146a7 100644 --- a/src/dwi/tractography/GT/particle.h +++ b/src/dwi/tractography/GT/particle.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlegrid.cpp b/src/dwi/tractography/GT/particlegrid.cpp index dcd939c421..f81f4fc242 100644 --- a/src/dwi/tractography/GT/particlegrid.cpp +++ b/src/dwi/tractography/GT/particlegrid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlegrid.h b/src/dwi/tractography/GT/particlegrid.h index f8a9ef32e9..df83abd6af 100644 --- a/src/dwi/tractography/GT/particlegrid.h +++ b/src/dwi/tractography/GT/particlegrid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/particlepool.h b/src/dwi/tractography/GT/particlepool.h index c854338950..ea72144432 100644 --- a/src/dwi/tractography/GT/particlepool.h +++ b/src/dwi/tractography/GT/particlepool.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/GT/spatiallock.h b/src/dwi/tractography/GT/spatiallock.h index 522e5e8b38..b8960a733b 100644 --- a/src/dwi/tractography/GT/spatiallock.h +++ b/src/dwi/tractography/GT/spatiallock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/fixel.h b/src/dwi/tractography/SIFT/fixel.h index eed3c5109f..a719e19833 100644 --- a/src/dwi/tractography/SIFT/fixel.h +++ b/src/dwi/tractography/SIFT/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/gradient_sort.cpp b/src/dwi/tractography/SIFT/gradient_sort.cpp index 8d3ea6b3f7..cf36088249 100644 --- a/src/dwi/tractography/SIFT/gradient_sort.cpp +++ b/src/dwi/tractography/SIFT/gradient_sort.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/gradient_sort.h b/src/dwi/tractography/SIFT/gradient_sort.h index 5a292d083e..160ac8a34b 100644 --- a/src/dwi/tractography/SIFT/gradient_sort.h +++ b/src/dwi/tractography/SIFT/gradient_sort.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/model.h b/src/dwi/tractography/SIFT/model.h index 9a515c4b44..baedf4cca0 100644 --- a/src/dwi/tractography/SIFT/model.h +++ b/src/dwi/tractography/SIFT/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/model_base.h b/src/dwi/tractography/SIFT/model_base.h index 4b3a14105d..630fa57591 100644 --- a/src/dwi/tractography/SIFT/model_base.h +++ b/src/dwi/tractography/SIFT/model_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/output.h b/src/dwi/tractography/SIFT/output.h index 7c728a7b4e..25b55de84d 100644 --- a/src/dwi/tractography/SIFT/output.h +++ b/src/dwi/tractography/SIFT/output.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/proc_mask.cpp b/src/dwi/tractography/SIFT/proc_mask.cpp index 01470f4f6b..7b9952fd49 100644 --- a/src/dwi/tractography/SIFT/proc_mask.cpp +++ b/src/dwi/tractography/SIFT/proc_mask.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/proc_mask.h b/src/dwi/tractography/SIFT/proc_mask.h index 866ddc325b..19dba5fd2e 100644 --- a/src/dwi/tractography/SIFT/proc_mask.h +++ b/src/dwi/tractography/SIFT/proc_mask.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sift.cpp b/src/dwi/tractography/SIFT/sift.cpp index 172bec2d5f..288400b23a 100644 --- a/src/dwi/tractography/SIFT/sift.cpp +++ b/src/dwi/tractography/SIFT/sift.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sift.h b/src/dwi/tractography/SIFT/sift.h index 0f5680bd1f..e83ef3d882 100644 --- a/src/dwi/tractography/SIFT/sift.h +++ b/src/dwi/tractography/SIFT/sift.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sifter.cpp b/src/dwi/tractography/SIFT/sifter.cpp index 7b8b14fac4..4c32e7f1ff 100644 --- a/src/dwi/tractography/SIFT/sifter.cpp +++ b/src/dwi/tractography/SIFT/sifter.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/sifter.h b/src/dwi/tractography/SIFT/sifter.h index 585b396c05..eb5293f58a 100644 --- a/src/dwi/tractography/SIFT/sifter.h +++ b/src/dwi/tractography/SIFT/sifter.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_contribution.cpp b/src/dwi/tractography/SIFT/track_contribution.cpp index df785ea84e..fb90a3624a 100644 --- a/src/dwi/tractography/SIFT/track_contribution.cpp +++ b/src/dwi/tractography/SIFT/track_contribution.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_contribution.h b/src/dwi/tractography/SIFT/track_contribution.h index 8d99431735..42cef73160 100644 --- a/src/dwi/tractography/SIFT/track_contribution.h +++ b/src/dwi/tractography/SIFT/track_contribution.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_index_range.cpp b/src/dwi/tractography/SIFT/track_index_range.cpp index e1c6c20ecf..a7335a6c4f 100644 --- a/src/dwi/tractography/SIFT/track_index_range.cpp +++ b/src/dwi/tractography/SIFT/track_index_range.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/track_index_range.h b/src/dwi/tractography/SIFT/track_index_range.h index 76552d5251..3c30d7f637 100644 --- a/src/dwi/tractography/SIFT/track_index_range.h +++ b/src/dwi/tractography/SIFT/track_index_range.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT/types.h b/src/dwi/tractography/SIFT/types.h index 199118be99..8110befd85 100644 --- a/src/dwi/tractography/SIFT/types.h +++ b/src/dwi/tractography/SIFT/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/coeff_optimiser.cpp b/src/dwi/tractography/SIFT2/coeff_optimiser.cpp index 673c34e145..3a07fa8aef 100644 --- a/src/dwi/tractography/SIFT2/coeff_optimiser.cpp +++ b/src/dwi/tractography/SIFT2/coeff_optimiser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/coeff_optimiser.h b/src/dwi/tractography/SIFT2/coeff_optimiser.h index 6bc077a5a3..764d2841b6 100644 --- a/src/dwi/tractography/SIFT2/coeff_optimiser.h +++ b/src/dwi/tractography/SIFT2/coeff_optimiser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel.h b/src/dwi/tractography/SIFT2/fixel.h index 180f3b318a..45aaa9c54f 100644 --- a/src/dwi/tractography/SIFT2/fixel.h +++ b/src/dwi/tractography/SIFT2/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel_updater.cpp b/src/dwi/tractography/SIFT2/fixel_updater.cpp index 336ecbea1f..e44a2a3b46 100644 --- a/src/dwi/tractography/SIFT2/fixel_updater.cpp +++ b/src/dwi/tractography/SIFT2/fixel_updater.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/fixel_updater.h b/src/dwi/tractography/SIFT2/fixel_updater.h index 6fead3c05b..337c03069f 100644 --- a/src/dwi/tractography/SIFT2/fixel_updater.h +++ b/src/dwi/tractography/SIFT2/fixel_updater.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/line_search.cpp b/src/dwi/tractography/SIFT2/line_search.cpp index 583b076529..f2df6b5c36 100644 --- a/src/dwi/tractography/SIFT2/line_search.cpp +++ b/src/dwi/tractography/SIFT2/line_search.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/line_search.h b/src/dwi/tractography/SIFT2/line_search.h index a96620f320..621de767b5 100644 --- a/src/dwi/tractography/SIFT2/line_search.h +++ b/src/dwi/tractography/SIFT2/line_search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/reg_calculator.cpp b/src/dwi/tractography/SIFT2/reg_calculator.cpp index 3db2c8f9a2..76c3c8e285 100644 --- a/src/dwi/tractography/SIFT2/reg_calculator.cpp +++ b/src/dwi/tractography/SIFT2/reg_calculator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/reg_calculator.h b/src/dwi/tractography/SIFT2/reg_calculator.h index 8cf91c70e0..82ed97a578 100644 --- a/src/dwi/tractography/SIFT2/reg_calculator.h +++ b/src/dwi/tractography/SIFT2/reg_calculator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/regularisation.h b/src/dwi/tractography/SIFT2/regularisation.h index 0c404341d0..5b181e2c58 100644 --- a/src/dwi/tractography/SIFT2/regularisation.h +++ b/src/dwi/tractography/SIFT2/regularisation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/streamline_stats.cpp b/src/dwi/tractography/SIFT2/streamline_stats.cpp index e2f2690616..ba27db58c0 100644 --- a/src/dwi/tractography/SIFT2/streamline_stats.cpp +++ b/src/dwi/tractography/SIFT2/streamline_stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/streamline_stats.h b/src/dwi/tractography/SIFT2/streamline_stats.h index dd7e805823..6ea7bb25de 100644 --- a/src/dwi/tractography/SIFT2/streamline_stats.h +++ b/src/dwi/tractography/SIFT2/streamline_stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/tckfactor.cpp b/src/dwi/tractography/SIFT2/tckfactor.cpp index 2bfafaa0a1..c8560d3fc8 100644 --- a/src/dwi/tractography/SIFT2/tckfactor.cpp +++ b/src/dwi/tractography/SIFT2/tckfactor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/SIFT2/tckfactor.h b/src/dwi/tractography/SIFT2/tckfactor.h index 6c4731e37e..83ec19bbc6 100644 --- a/src/dwi/tractography/SIFT2/tckfactor.h +++ b/src/dwi/tractography/SIFT2/tckfactor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/calibrator.h b/src/dwi/tractography/algorithms/calibrator.h index 631ecd20d8..433e339c6e 100644 --- a/src/dwi/tractography/algorithms/calibrator.h +++ b/src/dwi/tractography/algorithms/calibrator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/fact.h b/src/dwi/tractography/algorithms/fact.h index ff60af90bb..08a8b6e764 100644 --- a/src/dwi/tractography/algorithms/fact.h +++ b/src/dwi/tractography/algorithms/fact.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD1.cpp b/src/dwi/tractography/algorithms/iFOD1.cpp index e87e31c6ee..b32b3ea585 100644 --- a/src/dwi/tractography/algorithms/iFOD1.cpp +++ b/src/dwi/tractography/algorithms/iFOD1.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD1.h b/src/dwi/tractography/algorithms/iFOD1.h index bb4186c8a7..865b30c180 100644 --- a/src/dwi/tractography/algorithms/iFOD1.h +++ b/src/dwi/tractography/algorithms/iFOD1.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD2.cpp b/src/dwi/tractography/algorithms/iFOD2.cpp index 99e34cd96e..3b5968f2f8 100644 --- a/src/dwi/tractography/algorithms/iFOD2.cpp +++ b/src/dwi/tractography/algorithms/iFOD2.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/iFOD2.h b/src/dwi/tractography/algorithms/iFOD2.h index 11b2e0d70c..169fcf4734 100644 --- a/src/dwi/tractography/algorithms/iFOD2.h +++ b/src/dwi/tractography/algorithms/iFOD2.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/nulldist.h b/src/dwi/tractography/algorithms/nulldist.h index 1c0efcfb95..1e6ccd52b2 100644 --- a/src/dwi/tractography/algorithms/nulldist.h +++ b/src/dwi/tractography/algorithms/nulldist.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/sd_stream.h b/src/dwi/tractography/algorithms/sd_stream.h index e64094a92a..d0b89b21c2 100644 --- a/src/dwi/tractography/algorithms/sd_stream.h +++ b/src/dwi/tractography/algorithms/sd_stream.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/seedtest.h b/src/dwi/tractography/algorithms/seedtest.h index 4cc4a7f73d..5b4457bf23 100644 --- a/src/dwi/tractography/algorithms/seedtest.h +++ b/src/dwi/tractography/algorithms/seedtest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/tensor_det.h b/src/dwi/tractography/algorithms/tensor_det.h index 975766ca4e..eebe22812e 100644 --- a/src/dwi/tractography/algorithms/tensor_det.h +++ b/src/dwi/tractography/algorithms/tensor_det.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/algorithms/tensor_prob.h b/src/dwi/tractography/algorithms/tensor_prob.h index b972aa6af3..c7e9c84c14 100644 --- a/src/dwi/tractography/algorithms/tensor_prob.h +++ b/src/dwi/tractography/algorithms/tensor_prob.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/connectome.cpp b/src/dwi/tractography/connectome/connectome.cpp index ddfdbdd40e..16be4138be 100644 --- a/src/dwi/tractography/connectome/connectome.cpp +++ b/src/dwi/tractography/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/connectome.h b/src/dwi/tractography/connectome/connectome.h index d412a3bc85..98742a3811 100644 --- a/src/dwi/tractography/connectome/connectome.h +++ b/src/dwi/tractography/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/exemplar.cpp b/src/dwi/tractography/connectome/exemplar.cpp index 298bb10118..cd64ac2cf5 100644 --- a/src/dwi/tractography/connectome/exemplar.cpp +++ b/src/dwi/tractography/connectome/exemplar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/exemplar.h b/src/dwi/tractography/connectome/exemplar.h index ae24842e9a..b907776964 100644 --- a/src/dwi/tractography/connectome/exemplar.h +++ b/src/dwi/tractography/connectome/exemplar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/extract.cpp b/src/dwi/tractography/connectome/extract.cpp index fed0ec8302..df369e2fb9 100644 --- a/src/dwi/tractography/connectome/extract.cpp +++ b/src/dwi/tractography/connectome/extract.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/extract.h b/src/dwi/tractography/connectome/extract.h index 40fe0e643f..07098c1d5c 100644 --- a/src/dwi/tractography/connectome/extract.h +++ b/src/dwi/tractography/connectome/extract.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/mapped_track.h b/src/dwi/tractography/connectome/mapped_track.h index cfc6e11d75..4c552c4186 100644 --- a/src/dwi/tractography/connectome/mapped_track.h +++ b/src/dwi/tractography/connectome/mapped_track.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/mapper.h b/src/dwi/tractography/connectome/mapper.h index 9beb27abd6..68c2d6c8ca 100644 --- a/src/dwi/tractography/connectome/mapper.h +++ b/src/dwi/tractography/connectome/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/matrix.cpp b/src/dwi/tractography/connectome/matrix.cpp index 2668bf78a9..3be023acb6 100644 --- a/src/dwi/tractography/connectome/matrix.cpp +++ b/src/dwi/tractography/connectome/matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/matrix.h b/src/dwi/tractography/connectome/matrix.h index 54d6e62723..8e996e4b43 100644 --- a/src/dwi/tractography/connectome/matrix.h +++ b/src/dwi/tractography/connectome/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/metric.h b/src/dwi/tractography/connectome/metric.h index 1cfd7ef1da..d8c3d1280d 100644 --- a/src/dwi/tractography/connectome/metric.h +++ b/src/dwi/tractography/connectome/metric.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/streamline.h b/src/dwi/tractography/connectome/streamline.h index 99a176a08a..dbbd92e5fa 100644 --- a/src/dwi/tractography/connectome/streamline.h +++ b/src/dwi/tractography/connectome/streamline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/tck2nodes.cpp b/src/dwi/tractography/connectome/tck2nodes.cpp index 82bf58484b..fa5f981b42 100644 --- a/src/dwi/tractography/connectome/tck2nodes.cpp +++ b/src/dwi/tractography/connectome/tck2nodes.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/connectome/tck2nodes.h b/src/dwi/tractography/connectome/tck2nodes.h index ae3ba42d8a..1277754cc8 100644 --- a/src/dwi/tractography/connectome/tck2nodes.h +++ b/src/dwi/tractography/connectome/tck2nodes.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/editing.cpp b/src/dwi/tractography/editing/editing.cpp index 6c73955c6f..a0d9b4134e 100644 --- a/src/dwi/tractography/editing/editing.cpp +++ b/src/dwi/tractography/editing/editing.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/editing.h b/src/dwi/tractography/editing/editing.h index a3f4dc75a2..e4a8590546 100644 --- a/src/dwi/tractography/editing/editing.h +++ b/src/dwi/tractography/editing/editing.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/loader.h b/src/dwi/tractography/editing/loader.h index 5b1a6a94ea..96b8ebfd46 100644 --- a/src/dwi/tractography/editing/loader.h +++ b/src/dwi/tractography/editing/loader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/receiver.cpp b/src/dwi/tractography/editing/receiver.cpp index 411321c131..474c17bd3e 100644 --- a/src/dwi/tractography/editing/receiver.cpp +++ b/src/dwi/tractography/editing/receiver.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/receiver.h b/src/dwi/tractography/editing/receiver.h index f666e95115..7250b63352 100644 --- a/src/dwi/tractography/editing/receiver.h +++ b/src/dwi/tractography/editing/receiver.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/worker.cpp b/src/dwi/tractography/editing/worker.cpp index 8d530018cd..08915622c6 100644 --- a/src/dwi/tractography/editing/worker.cpp +++ b/src/dwi/tractography/editing/worker.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/editing/worker.h b/src/dwi/tractography/editing/worker.h index eb83de1188..aca5a959c9 100644 --- a/src/dwi/tractography/editing/worker.h +++ b/src/dwi/tractography/editing/worker.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file.h b/src/dwi/tractography/file.h index c5dd3b8f19..dbbc4d3363 100644 --- a/src/dwi/tractography/file.h +++ b/src/dwi/tractography/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file_base.cpp b/src/dwi/tractography/file_base.cpp index c709ce2578..93fbe91e15 100644 --- a/src/dwi/tractography/file_base.cpp +++ b/src/dwi/tractography/file_base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/file_base.h b/src/dwi/tractography/file_base.h index 889cdb9670..13eaccb89a 100644 --- a/src/dwi/tractography/file_base.h +++ b/src/dwi/tractography/file_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/buffer_scratch_dump.h b/src/dwi/tractography/mapping/buffer_scratch_dump.h index ca917db59a..c6c371cc9d 100644 --- a/src/dwi/tractography/mapping/buffer_scratch_dump.h +++ b/src/dwi/tractography/mapping/buffer_scratch_dump.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/fixel_td_map.cpp b/src/dwi/tractography/mapping/fixel_td_map.cpp index b430d32f4e..0032b88104 100644 --- a/src/dwi/tractography/mapping/fixel_td_map.cpp +++ b/src/dwi/tractography/mapping/fixel_td_map.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/fixel_td_map.h b/src/dwi/tractography/mapping/fixel_td_map.h index 12cd324765..0790644ca3 100644 --- a/src/dwi/tractography/mapping/fixel_td_map.h +++ b/src/dwi/tractography/mapping/fixel_td_map.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/mapper.cpp b/src/dwi/tractography/mapping/gaussian/mapper.cpp index 1a073ea698..b1445b248e 100644 --- a/src/dwi/tractography/mapping/gaussian/mapper.cpp +++ b/src/dwi/tractography/mapping/gaussian/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/mapper.h b/src/dwi/tractography/mapping/gaussian/mapper.h index 70e5791c88..580865a898 100644 --- a/src/dwi/tractography/mapping/gaussian/mapper.h +++ b/src/dwi/tractography/mapping/gaussian/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/gaussian/voxel.h b/src/dwi/tractography/mapping/gaussian/voxel.h index 32e265a1a0..38e3ba4390 100644 --- a/src/dwi/tractography/mapping/gaussian/voxel.h +++ b/src/dwi/tractography/mapping/gaussian/voxel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/loader.h b/src/dwi/tractography/mapping/loader.h index 5084669edc..ccdbbaf4b8 100644 --- a/src/dwi/tractography/mapping/loader.h +++ b/src/dwi/tractography/mapping/loader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper.cpp b/src/dwi/tractography/mapping/mapper.cpp index 464b34d481..e1318a0d45 100644 --- a/src/dwi/tractography/mapping/mapper.cpp +++ b/src/dwi/tractography/mapping/mapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper.h b/src/dwi/tractography/mapping/mapper.h index 8043af393f..6977ddd803 100644 --- a/src/dwi/tractography/mapping/mapper.h +++ b/src/dwi/tractography/mapping/mapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper_plugins.cpp b/src/dwi/tractography/mapping/mapper_plugins.cpp index 24b2adf6a6..19a9e2dd45 100644 --- a/src/dwi/tractography/mapping/mapper_plugins.cpp +++ b/src/dwi/tractography/mapping/mapper_plugins.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapper_plugins.h b/src/dwi/tractography/mapping/mapper_plugins.h index 131d7062f0..3c7bdb0a41 100644 --- a/src/dwi/tractography/mapping/mapper_plugins.h +++ b/src/dwi/tractography/mapping/mapper_plugins.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapping.cpp b/src/dwi/tractography/mapping/mapping.cpp index dccdbf414a..b2c981f1e2 100644 --- a/src/dwi/tractography/mapping/mapping.cpp +++ b/src/dwi/tractography/mapping/mapping.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/mapping.h b/src/dwi/tractography/mapping/mapping.h index 77491bece6..f7b0f159b9 100644 --- a/src/dwi/tractography/mapping/mapping.h +++ b/src/dwi/tractography/mapping/mapping.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/twi_stats.cpp b/src/dwi/tractography/mapping/twi_stats.cpp index c216144956..b6031aef85 100644 --- a/src/dwi/tractography/mapping/twi_stats.cpp +++ b/src/dwi/tractography/mapping/twi_stats.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/twi_stats.h b/src/dwi/tractography/mapping/twi_stats.h index 4703765283..cb0ef4873a 100644 --- a/src/dwi/tractography/mapping/twi_stats.h +++ b/src/dwi/tractography/mapping/twi_stats.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/voxel.cpp b/src/dwi/tractography/mapping/voxel.cpp index 5aeb4da79c..57341a68bc 100644 --- a/src/dwi/tractography/mapping/voxel.cpp +++ b/src/dwi/tractography/mapping/voxel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/voxel.h b/src/dwi/tractography/mapping/voxel.h index dd1e624505..74066d8b33 100644 --- a/src/dwi/tractography/mapping/voxel.h +++ b/src/dwi/tractography/mapping/voxel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/writer.cpp b/src/dwi/tractography/mapping/writer.cpp index 41f51f40f1..cae1926c77 100644 --- a/src/dwi/tractography/mapping/writer.cpp +++ b/src/dwi/tractography/mapping/writer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/mapping/writer.h b/src/dwi/tractography/mapping/writer.h index b80b171f69..6ed4a1563f 100644 --- a/src/dwi/tractography/mapping/writer.h +++ b/src/dwi/tractography/mapping/writer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/properties.cpp b/src/dwi/tractography/properties.cpp index 23297ac578..d892dbbb99 100644 --- a/src/dwi/tractography/properties.cpp +++ b/src/dwi/tractography/properties.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/properties.h b/src/dwi/tractography/properties.h index 11b4daa33d..3dbe907252 100644 --- a/src/dwi/tractography/properties.h +++ b/src/dwi/tractography/properties.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/arc.cpp b/src/dwi/tractography/resampling/arc.cpp index f17ece4cc0..9724a90952 100644 --- a/src/dwi/tractography/resampling/arc.cpp +++ b/src/dwi/tractography/resampling/arc.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/arc.h b/src/dwi/tractography/resampling/arc.h index c4ea143dc1..c0a9a875dc 100644 --- a/src/dwi/tractography/resampling/arc.h +++ b/src/dwi/tractography/resampling/arc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/downsampler.cpp b/src/dwi/tractography/resampling/downsampler.cpp index 9f38e7f995..271371cf49 100644 --- a/src/dwi/tractography/resampling/downsampler.cpp +++ b/src/dwi/tractography/resampling/downsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/downsampler.h b/src/dwi/tractography/resampling/downsampler.h index 2f5f61c12f..c195a73cd2 100644 --- a/src/dwi/tractography/resampling/downsampler.h +++ b/src/dwi/tractography/resampling/downsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/endpoints.cpp b/src/dwi/tractography/resampling/endpoints.cpp index 28baef8480..109bb2e71b 100644 --- a/src/dwi/tractography/resampling/endpoints.cpp +++ b/src/dwi/tractography/resampling/endpoints.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/endpoints.h b/src/dwi/tractography/resampling/endpoints.h index ec36e28e53..bbe999daf6 100644 --- a/src/dwi/tractography/resampling/endpoints.h +++ b/src/dwi/tractography/resampling/endpoints.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_num_points.cpp b/src/dwi/tractography/resampling/fixed_num_points.cpp index a5778c5675..9dc28b4afb 100644 --- a/src/dwi/tractography/resampling/fixed_num_points.cpp +++ b/src/dwi/tractography/resampling/fixed_num_points.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_num_points.h b/src/dwi/tractography/resampling/fixed_num_points.h index 2708394836..98d838893c 100644 --- a/src/dwi/tractography/resampling/fixed_num_points.h +++ b/src/dwi/tractography/resampling/fixed_num_points.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_step_size.cpp b/src/dwi/tractography/resampling/fixed_step_size.cpp index a5488b6ed6..ca7862ecc6 100644 --- a/src/dwi/tractography/resampling/fixed_step_size.cpp +++ b/src/dwi/tractography/resampling/fixed_step_size.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/fixed_step_size.h b/src/dwi/tractography/resampling/fixed_step_size.h index 34822be70a..852a3a8c7d 100644 --- a/src/dwi/tractography/resampling/fixed_step_size.h +++ b/src/dwi/tractography/resampling/fixed_step_size.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/resampling.cpp b/src/dwi/tractography/resampling/resampling.cpp index f6be770031..4d988bbb90 100644 --- a/src/dwi/tractography/resampling/resampling.cpp +++ b/src/dwi/tractography/resampling/resampling.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/resampling.h b/src/dwi/tractography/resampling/resampling.h index 398a30f77d..3c77103259 100644 --- a/src/dwi/tractography/resampling/resampling.h +++ b/src/dwi/tractography/resampling/resampling.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/upsampler.cpp b/src/dwi/tractography/resampling/upsampler.cpp index a12045f703..ff2b35df44 100644 --- a/src/dwi/tractography/resampling/upsampler.cpp +++ b/src/dwi/tractography/resampling/upsampler.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/resampling/upsampler.h b/src/dwi/tractography/resampling/upsampler.h index 06bfea5629..b98d112c54 100644 --- a/src/dwi/tractography/resampling/upsampler.h +++ b/src/dwi/tractography/resampling/upsampler.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/rng.cpp b/src/dwi/tractography/rng.cpp index 5053ee9990..f531e2f082 100644 --- a/src/dwi/tractography/rng.cpp +++ b/src/dwi/tractography/rng.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/rng.h b/src/dwi/tractography/rng.h index 065961455e..c64b17fed1 100644 --- a/src/dwi/tractography/rng.h +++ b/src/dwi/tractography/rng.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/roi.cpp b/src/dwi/tractography/roi.cpp index e2fc6c3f27..67310fd3ae 100644 --- a/src/dwi/tractography/roi.cpp +++ b/src/dwi/tractography/roi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/roi.h b/src/dwi/tractography/roi.h index b418c4effc..2392632b07 100644 --- a/src/dwi/tractography/roi.h +++ b/src/dwi/tractography/roi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/scalar_file.h b/src/dwi/tractography/scalar_file.h index 214a2cb2b2..4ef6afa652 100644 --- a/src/dwi/tractography/scalar_file.h +++ b/src/dwi/tractography/scalar_file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/base.h b/src/dwi/tractography/seeding/base.h index 738508ff4b..e78c25a588 100644 --- a/src/dwi/tractography/seeding/base.h +++ b/src/dwi/tractography/seeding/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/basic.cpp b/src/dwi/tractography/seeding/basic.cpp index 9cf942907c..73da298eac 100644 --- a/src/dwi/tractography/seeding/basic.cpp +++ b/src/dwi/tractography/seeding/basic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/basic.h b/src/dwi/tractography/seeding/basic.h index 49d8b1f49e..492ebcbf30 100644 --- a/src/dwi/tractography/seeding/basic.h +++ b/src/dwi/tractography/seeding/basic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/dynamic.cpp b/src/dwi/tractography/seeding/dynamic.cpp index ded71f24b0..4cf1a93624 100644 --- a/src/dwi/tractography/seeding/dynamic.cpp +++ b/src/dwi/tractography/seeding/dynamic.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/dynamic.h b/src/dwi/tractography/seeding/dynamic.h index 4f460b5196..50689c1a36 100644 --- a/src/dwi/tractography/seeding/dynamic.h +++ b/src/dwi/tractography/seeding/dynamic.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/gmwmi.cpp b/src/dwi/tractography/seeding/gmwmi.cpp index 9ad28d323b..a1edff7f81 100644 --- a/src/dwi/tractography/seeding/gmwmi.cpp +++ b/src/dwi/tractography/seeding/gmwmi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/gmwmi.h b/src/dwi/tractography/seeding/gmwmi.h index 4d5788c6b9..9db1684a3b 100644 --- a/src/dwi/tractography/seeding/gmwmi.h +++ b/src/dwi/tractography/seeding/gmwmi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/list.cpp b/src/dwi/tractography/seeding/list.cpp index fc4dc45cbc..23d3b73bf7 100644 --- a/src/dwi/tractography/seeding/list.cpp +++ b/src/dwi/tractography/seeding/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/list.h b/src/dwi/tractography/seeding/list.h index 835e4bd80a..c3733f2a98 100644 --- a/src/dwi/tractography/seeding/list.h +++ b/src/dwi/tractography/seeding/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/seeding.cpp b/src/dwi/tractography/seeding/seeding.cpp index 07cadc566b..1c4e5ea86e 100644 --- a/src/dwi/tractography/seeding/seeding.cpp +++ b/src/dwi/tractography/seeding/seeding.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/seeding/seeding.h b/src/dwi/tractography/seeding/seeding.h index f9d8a1a875..1d0948b792 100644 --- a/src/dwi/tractography/seeding/seeding.h +++ b/src/dwi/tractography/seeding/seeding.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/streamline.h b/src/dwi/tractography/streamline.h index 90854fcfbc..0ff21be115 100644 --- a/src/dwi/tractography/streamline.h +++ b/src/dwi/tractography/streamline.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/early_exit.cpp b/src/dwi/tractography/tracking/early_exit.cpp index 6ee12d0cfa..13f64e36e9 100644 --- a/src/dwi/tractography/tracking/early_exit.cpp +++ b/src/dwi/tractography/tracking/early_exit.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/early_exit.h b/src/dwi/tractography/tracking/early_exit.h index ca2e812aa5..eb8ac91655 100644 --- a/src/dwi/tractography/tracking/early_exit.h +++ b/src/dwi/tractography/tracking/early_exit.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/exec.h b/src/dwi/tractography/tracking/exec.h index 76468b99b8..dd4685c900 100644 --- a/src/dwi/tractography/tracking/exec.h +++ b/src/dwi/tractography/tracking/exec.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/generated_track.h b/src/dwi/tractography/tracking/generated_track.h index cf781d5d23..27b8269387 100644 --- a/src/dwi/tractography/tracking/generated_track.h +++ b/src/dwi/tractography/tracking/generated_track.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/method.cpp b/src/dwi/tractography/tracking/method.cpp index 06a680177d..bcc6bc9999 100644 --- a/src/dwi/tractography/tracking/method.cpp +++ b/src/dwi/tractography/tracking/method.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/method.h b/src/dwi/tractography/tracking/method.h index 8333baa5ec..a8411ca5d4 100644 --- a/src/dwi/tractography/tracking/method.h +++ b/src/dwi/tractography/tracking/method.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/shared.cpp b/src/dwi/tractography/tracking/shared.cpp index 7bfbdf5e05..862178eca5 100644 --- a/src/dwi/tractography/tracking/shared.cpp +++ b/src/dwi/tractography/tracking/shared.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/shared.h b/src/dwi/tractography/tracking/shared.h index fb84933127..0f0448b7b0 100644 --- a/src/dwi/tractography/tracking/shared.h +++ b/src/dwi/tractography/tracking/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/tractography.cpp b/src/dwi/tractography/tracking/tractography.cpp index fad9b62d74..4b5c877f37 100644 --- a/src/dwi/tractography/tracking/tractography.cpp +++ b/src/dwi/tractography/tracking/tractography.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/tractography.h b/src/dwi/tractography/tracking/tractography.h index 8b407eddda..9edf798011 100644 --- a/src/dwi/tractography/tracking/tractography.h +++ b/src/dwi/tractography/tracking/tractography.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/types.h b/src/dwi/tractography/tracking/types.h index eed15c86e1..9ce5fdfa65 100644 --- a/src/dwi/tractography/tracking/types.h +++ b/src/dwi/tractography/tracking/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/write_kernel.cpp b/src/dwi/tractography/tracking/write_kernel.cpp index 9ad5cd9258..32dd5370e7 100644 --- a/src/dwi/tractography/tracking/write_kernel.cpp +++ b/src/dwi/tractography/tracking/write_kernel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/tracking/write_kernel.h b/src/dwi/tractography/tracking/write_kernel.h index 2fdf60d26e..882c198400 100644 --- a/src/dwi/tractography/tracking/write_kernel.h +++ b/src/dwi/tractography/tracking/write_kernel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/weights.cpp b/src/dwi/tractography/weights.cpp index b1872a27f0..c54dc6bbd3 100644 --- a/src/dwi/tractography/weights.cpp +++ b/src/dwi/tractography/weights.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/dwi/tractography/weights.h b/src/dwi/tractography/weights.h index 1383fc1417..6b7e3e3f06 100644 --- a/src/dwi/tractography/weights.h +++ b/src/dwi/tractography/weights.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/exec_version.h b/src/exec_version.h index f94ddd712f..e67aeb64a4 100644 --- a/src/exec_version.h +++ b/src/exec_version.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/base.h b/src/fixel/filter/base.h index 686c5f9d72..601a2d08ae 100644 --- a/src/fixel/filter/base.h +++ b/src/fixel/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/connect.cpp b/src/fixel/filter/connect.cpp index a7e4d1b5c7..b434d37161 100644 --- a/src/fixel/filter/connect.cpp +++ b/src/fixel/filter/connect.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/connect.h b/src/fixel/filter/connect.h index 9dc9810825..a10f629330 100644 --- a/src/fixel/filter/connect.h +++ b/src/fixel/filter/connect.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/smooth.cpp b/src/fixel/filter/smooth.cpp index aabdb57319..70de245a6e 100644 --- a/src/fixel/filter/smooth.cpp +++ b/src/fixel/filter/smooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/filter/smooth.h b/src/fixel/filter/smooth.h index ac1d0bffe5..b11f7bd225 100644 --- a/src/fixel/filter/smooth.h +++ b/src/fixel/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/index_remapper.cpp b/src/fixel/index_remapper.cpp index 478d6cb5ae..746acfb840 100644 --- a/src/fixel/index_remapper.cpp +++ b/src/fixel/index_remapper.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/index_remapper.h b/src/fixel/index_remapper.h index 2f0b8e6d64..2e5c5a72a4 100644 --- a/src/fixel/index_remapper.h +++ b/src/fixel/index_remapper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/matrix.cpp b/src/fixel/matrix.cpp index 73f9df664f..d16384e8d8 100644 --- a/src/fixel/matrix.cpp +++ b/src/fixel/matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/fixel/matrix.h b/src/fixel/matrix.h index cc8e5e9671..e7e7146214 100644 --- a/src/fixel/matrix.h +++ b/src/fixel/matrix.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/color_button.cpp b/src/gui/color_button.cpp index 353edbc65e..b47d9e19ba 100644 --- a/src/gui/color_button.cpp +++ b/src/gui/color_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/color_button.h b/src/gui/color_button.h index 8a84533074..aff831775b 100644 --- a/src/gui/color_button.h +++ b/src/gui/color_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/crosshair.cpp b/src/gui/crosshair.cpp index e702c6d96c..dd0c6dd80c 100644 --- a/src/gui/crosshair.cpp +++ b/src/gui/crosshair.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/crosshair.h b/src/gui/crosshair.h index 63c406f4c7..b30a5d8bed 100644 --- a/src/gui/crosshair.h +++ b/src/gui/crosshair.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/cursor.cpp b/src/gui/cursor.cpp index f054452522..bea6cfb4a8 100644 --- a/src/gui/cursor.cpp +++ b/src/gui/cursor.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/cursor.h b/src/gui/cursor.h index fd0489d6b3..2b620182a6 100644 --- a/src/gui/cursor.h +++ b/src/gui/cursor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dialog.cpp b/src/gui/dialog/dialog.cpp index c300a529a6..734a7e4840 100644 --- a/src/gui/dialog/dialog.cpp +++ b/src/gui/dialog/dialog.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dialog.h b/src/gui/dialog/dialog.h index 42f786d9d9..a135aa4668 100644 --- a/src/gui/dialog/dialog.h +++ b/src/gui/dialog/dialog.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dicom.cpp b/src/gui/dialog/dicom.cpp index b5322c4893..96c3887fe0 100644 --- a/src/gui/dialog/dicom.cpp +++ b/src/gui/dialog/dicom.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/dicom.h b/src/gui/dialog/dicom.h index 1481061e79..b1f5ef8637 100644 --- a/src/gui/dialog/dicom.h +++ b/src/gui/dialog/dicom.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/file.cpp b/src/gui/dialog/file.cpp index e12f8ef3cd..478ce00d85 100644 --- a/src/gui/dialog/file.cpp +++ b/src/gui/dialog/file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/file.h b/src/gui/dialog/file.h index fc5744e724..c30da84ad1 100644 --- a/src/gui/dialog/file.h +++ b/src/gui/dialog/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/image_properties.cpp b/src/gui/dialog/image_properties.cpp index a6537c591d..4c82378dfb 100644 --- a/src/gui/dialog/image_properties.cpp +++ b/src/gui/dialog/image_properties.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/image_properties.h b/src/gui/dialog/image_properties.h index 94feb4aea2..0adb29dcb9 100644 --- a/src/gui/dialog/image_properties.h +++ b/src/gui/dialog/image_properties.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/list.cpp b/src/gui/dialog/list.cpp index 883903a5d9..cad9fd0171 100644 --- a/src/gui/dialog/list.cpp +++ b/src/gui/dialog/list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/list.h b/src/gui/dialog/list.h index 46005535f3..631c2a7a92 100644 --- a/src/gui/dialog/list.h +++ b/src/gui/dialog/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/opengl.cpp b/src/gui/dialog/opengl.cpp index 363ebcbacc..8e7cbd0bd1 100644 --- a/src/gui/dialog/opengl.cpp +++ b/src/gui/dialog/opengl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/opengl.h b/src/gui/dialog/opengl.h index bb9be80f31..965bb92ef7 100644 --- a/src/gui/dialog/opengl.h +++ b/src/gui/dialog/opengl.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/progress.cpp b/src/gui/dialog/progress.cpp index 8e5f31a569..50b7782dc9 100644 --- a/src/gui/dialog/progress.cpp +++ b/src/gui/dialog/progress.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/progress.h b/src/gui/dialog/progress.h index 595b75e79b..5e907770b4 100644 --- a/src/gui/dialog/progress.h +++ b/src/gui/dialog/progress.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/report_exception.cpp b/src/gui/dialog/report_exception.cpp index a88a7ad256..9833c72e0e 100644 --- a/src/gui/dialog/report_exception.cpp +++ b/src/gui/dialog/report_exception.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dialog/report_exception.h b/src/gui/dialog/report_exception.h index eabb003c84..9a69bfc303 100644 --- a/src/gui/dialog/report_exception.h +++ b/src/gui/dialog/report_exception.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/render_frame.cpp b/src/gui/dwi/render_frame.cpp index e7788e23c7..f768980232 100644 --- a/src/gui/dwi/render_frame.cpp +++ b/src/gui/dwi/render_frame.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/render_frame.h b/src/gui/dwi/render_frame.h index f44b819e29..1cc80f0328 100644 --- a/src/gui/dwi/render_frame.h +++ b/src/gui/dwi/render_frame.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/renderer.cpp b/src/gui/dwi/renderer.cpp index 33f38e56c6..ea6a8b88c4 100644 --- a/src/gui/dwi/renderer.cpp +++ b/src/gui/dwi/renderer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/dwi/renderer.h b/src/gui/dwi/renderer.h index 509bf05699..f491013dfe 100644 --- a/src/gui/dwi/renderer.h +++ b/src/gui/dwi/renderer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 63061b3793..742fe32f7b 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/gui.h b/src/gui/gui.h index 0259cfa7d7..70c8328e03 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/lighting_dock.cpp b/src/gui/lighting_dock.cpp index af52de4144..f573d47716 100644 --- a/src/gui/lighting_dock.cpp +++ b/src/gui/lighting_dock.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/lighting_dock.h b/src/gui/lighting_dock.h index 052dd80ec9..0ae1c7e789 100644 --- a/src/gui/lighting_dock.h +++ b/src/gui/lighting_dock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/adjust_button.cpp b/src/gui/mrview/adjust_button.cpp index e7bac71ff5..e148a75cd3 100644 --- a/src/gui/mrview/adjust_button.cpp +++ b/src/gui/mrview/adjust_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/adjust_button.h b/src/gui/mrview/adjust_button.h index fec29fa90a..ffa3293bc5 100644 --- a/src/gui/mrview/adjust_button.h +++ b/src/gui/mrview/adjust_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourbars.cpp b/src/gui/mrview/colourbars.cpp index 02a2157f37..d4cfce8a9b 100644 --- a/src/gui/mrview/colourbars.cpp +++ b/src/gui/mrview/colourbars.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourbars.h b/src/gui/mrview/colourbars.h index 4c506fb2f0..d197ea2a3c 100644 --- a/src/gui/mrview/colourbars.h +++ b/src/gui/mrview/colourbars.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourmap_button.cpp b/src/gui/mrview/colourmap_button.cpp index 84dde75fc4..f5833706d2 100644 --- a/src/gui/mrview/colourmap_button.cpp +++ b/src/gui/mrview/colourmap_button.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/colourmap_button.h b/src/gui/mrview/colourmap_button.h index e3de6e65de..3dc8d3bbf7 100644 --- a/src/gui/mrview/colourmap_button.h +++ b/src/gui/mrview/colourmap_button.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/combo_box_error.cpp b/src/gui/mrview/combo_box_error.cpp index 5d3e012277..9c6ea93237 100644 --- a/src/gui/mrview/combo_box_error.cpp +++ b/src/gui/mrview/combo_box_error.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/combo_box_error.h b/src/gui/mrview/combo_box_error.h index 9da5f4a35a..ec838b7c85 100644 --- a/src/gui/mrview/combo_box_error.h +++ b/src/gui/mrview/combo_box_error.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/displayable.cpp b/src/gui/mrview/displayable.cpp index 4ed4ef1d78..7097d4db22 100644 --- a/src/gui/mrview/displayable.cpp +++ b/src/gui/mrview/displayable.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/displayable.h b/src/gui/mrview/displayable.h index b8c97466f6..b5496e7ea8 100644 --- a/src/gui/mrview/displayable.h +++ b/src/gui/mrview/displayable.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/gui_image.cpp b/src/gui/mrview/gui_image.cpp index e2b1f2e08b..4f77e9d2b7 100644 --- a/src/gui/mrview/gui_image.cpp +++ b/src/gui/mrview/gui_image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/gui_image.h b/src/gui/mrview/gui_image.h index 38eb987186..0611e3d2a5 100644 --- a/src/gui/mrview/gui_image.h +++ b/src/gui/mrview/gui_image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/icons.h b/src/gui/mrview/icons.h index a9f1e880e1..55960cb3d0 100644 --- a/src/gui/mrview/icons.h +++ b/src/gui/mrview/icons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/base.cpp b/src/gui/mrview/mode/base.cpp index b2c09603df..5c408b8381 100644 --- a/src/gui/mrview/mode/base.cpp +++ b/src/gui/mrview/mode/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/base.h b/src/gui/mrview/mode/base.h index 5a7c56665b..6232cee5a6 100644 --- a/src/gui/mrview/mode/base.h +++ b/src/gui/mrview/mode/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/lightbox.cpp b/src/gui/mrview/mode/lightbox.cpp index defbe0a099..bfc935bc77 100644 --- a/src/gui/mrview/mode/lightbox.cpp +++ b/src/gui/mrview/mode/lightbox.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/lightbox.h b/src/gui/mrview/mode/lightbox.h index 75087d9168..d0f444fd1e 100644 --- a/src/gui/mrview/mode/lightbox.h +++ b/src/gui/mrview/mode/lightbox.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/lightbox_gui.h b/src/gui/mrview/mode/lightbox_gui.h index 006a419a34..99611d3f4a 100644 --- a/src/gui/mrview/mode/lightbox_gui.h +++ b/src/gui/mrview/mode/lightbox_gui.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/list.h b/src/gui/mrview/mode/list.h index f54486320d..272e783837 100644 --- a/src/gui/mrview/mode/list.h +++ b/src/gui/mrview/mode/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/ortho.cpp b/src/gui/mrview/mode/ortho.cpp index 1d3fbbc844..74266c3119 100644 --- a/src/gui/mrview/mode/ortho.cpp +++ b/src/gui/mrview/mode/ortho.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/ortho.h b/src/gui/mrview/mode/ortho.h index b827b7dc83..75cf87811b 100644 --- a/src/gui/mrview/mode/ortho.h +++ b/src/gui/mrview/mode/ortho.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/slice.cpp b/src/gui/mrview/mode/slice.cpp index 8d3e876288..cb68cbf366 100644 --- a/src/gui/mrview/mode/slice.cpp +++ b/src/gui/mrview/mode/slice.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/slice.h b/src/gui/mrview/mode/slice.h index 8b8e8f20cd..2cfb51eab1 100644 --- a/src/gui/mrview/mode/slice.h +++ b/src/gui/mrview/mode/slice.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/volume.cpp b/src/gui/mrview/mode/volume.cpp index c830fd4972..13d4f7b1b1 100644 --- a/src/gui/mrview/mode/volume.cpp +++ b/src/gui/mrview/mode/volume.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/mode/volume.h b/src/gui/mrview/mode/volume.h index 0dc06dd0fc..2138613889 100644 --- a/src/gui/mrview/mode/volume.h +++ b/src/gui/mrview/mode/volume.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/spin_box.h b/src/gui/mrview/spin_box.h index 8dcb7c73b3..0dd2de14da 100644 --- a/src/gui/mrview/spin_box.h +++ b/src/gui/mrview/spin_box.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/client.cpp b/src/gui/mrview/sync/client.cpp index 4e29809989..93dd6ec4a2 100644 --- a/src/gui/mrview/sync/client.cpp +++ b/src/gui/mrview/sync/client.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/client.h b/src/gui/mrview/sync/client.h index 593e3c6217..79cef0a7e6 100644 --- a/src/gui/mrview/sync/client.h +++ b/src/gui/mrview/sync/client.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/enums.h b/src/gui/mrview/sync/enums.h index 53e864ff5b..5d6ec02f91 100644 --- a/src/gui/mrview/sync/enums.h +++ b/src/gui/mrview/sync/enums.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/interprocesscommunicator.cpp b/src/gui/mrview/sync/interprocesscommunicator.cpp index 640a59f944..96063f317e 100644 --- a/src/gui/mrview/sync/interprocesscommunicator.cpp +++ b/src/gui/mrview/sync/interprocesscommunicator.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/interprocesscommunicator.h b/src/gui/mrview/sync/interprocesscommunicator.h index 378a8cbb70..92b4ebb33c 100644 --- a/src/gui/mrview/sync/interprocesscommunicator.h +++ b/src/gui/mrview/sync/interprocesscommunicator.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/localsocketreader.cpp b/src/gui/mrview/sync/localsocketreader.cpp index bb638938c1..7215703fb8 100644 --- a/src/gui/mrview/sync/localsocketreader.cpp +++ b/src/gui/mrview/sync/localsocketreader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/localsocketreader.h b/src/gui/mrview/sync/localsocketreader.h index d9a803c05d..9b0c464e04 100644 --- a/src/gui/mrview/sync/localsocketreader.h +++ b/src/gui/mrview/sync/localsocketreader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/processlock.cpp b/src/gui/mrview/sync/processlock.cpp index 3175318d6e..b9c07c9088 100644 --- a/src/gui/mrview/sync/processlock.cpp +++ b/src/gui/mrview/sync/processlock.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/processlock.h b/src/gui/mrview/sync/processlock.h index 80fd96d1a9..4f5a70eb11 100644 --- a/src/gui/mrview/sync/processlock.h +++ b/src/gui/mrview/sync/processlock.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/syncmanager.cpp b/src/gui/mrview/sync/syncmanager.cpp index b2bc414241..f43b8573e8 100644 --- a/src/gui/mrview/sync/syncmanager.cpp +++ b/src/gui/mrview/sync/syncmanager.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/sync/syncmanager.h b/src/gui/mrview/sync/syncmanager.h index 8a97260e31..a2af7d61c1 100644 --- a/src/gui/mrview/sync/syncmanager.h +++ b/src/gui/mrview/sync/syncmanager.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/base.cpp b/src/gui/mrview/tool/base.cpp index 6a708a8e96..7ed737e322 100644 --- a/src/gui/mrview/tool/base.cpp +++ b/src/gui/mrview/tool/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/base.h b/src/gui/mrview/tool/base.h index 2cac38af64..f8c284c432 100644 --- a/src/gui/mrview/tool/base.h +++ b/src/gui/mrview/tool/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/colourmap_observers.cpp b/src/gui/mrview/tool/connectome/colourmap_observers.cpp index e4525b745a..e2aecad1d4 100644 --- a/src/gui/mrview/tool/connectome/colourmap_observers.cpp +++ b/src/gui/mrview/tool/connectome/colourmap_observers.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/colourmap_observers.h b/src/gui/mrview/tool/connectome/colourmap_observers.h index cd9f9cc115..a1e121d95f 100644 --- a/src/gui/mrview/tool/connectome/colourmap_observers.h +++ b/src/gui/mrview/tool/connectome/colourmap_observers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/connectome.cpp b/src/gui/mrview/tool/connectome/connectome.cpp index 4b4b18d6e0..1fce133cfe 100644 --- a/src/gui/mrview/tool/connectome/connectome.cpp +++ b/src/gui/mrview/tool/connectome/connectome.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/connectome.h b/src/gui/mrview/tool/connectome/connectome.h index 407fe2a48f..b951dc93be 100644 --- a/src/gui/mrview/tool/connectome/connectome.h +++ b/src/gui/mrview/tool/connectome/connectome.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/edge.cpp b/src/gui/mrview/tool/connectome/edge.cpp index 02f9b8f4d4..b26f153f2c 100644 --- a/src/gui/mrview/tool/connectome/edge.cpp +++ b/src/gui/mrview/tool/connectome/edge.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/edge.h b/src/gui/mrview/tool/connectome/edge.h index e1ae3d40e2..c67b05b549 100644 --- a/src/gui/mrview/tool/connectome/edge.h +++ b/src/gui/mrview/tool/connectome/edge.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/file_data_vector.cpp b/src/gui/mrview/tool/connectome/file_data_vector.cpp index b46f776aed..86d7396c19 100644 --- a/src/gui/mrview/tool/connectome/file_data_vector.cpp +++ b/src/gui/mrview/tool/connectome/file_data_vector.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/file_data_vector.h b/src/gui/mrview/tool/connectome/file_data_vector.h index 84184520b5..094561196b 100644 --- a/src/gui/mrview/tool/connectome/file_data_vector.h +++ b/src/gui/mrview/tool/connectome/file_data_vector.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/matrix_list.cpp b/src/gui/mrview/tool/connectome/matrix_list.cpp index 48f33ff658..c11acc4e5d 100644 --- a/src/gui/mrview/tool/connectome/matrix_list.cpp +++ b/src/gui/mrview/tool/connectome/matrix_list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/matrix_list.h b/src/gui/mrview/tool/connectome/matrix_list.h index b8fe63eb1b..5cb26b534d 100644 --- a/src/gui/mrview/tool/connectome/matrix_list.h +++ b/src/gui/mrview/tool/connectome/matrix_list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node.cpp b/src/gui/mrview/tool/connectome/node.cpp index f75a56aa07..e945c66f71 100644 --- a/src/gui/mrview/tool/connectome/node.cpp +++ b/src/gui/mrview/tool/connectome/node.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node.h b/src/gui/mrview/tool/connectome/node.h index a8b4f24914..b61c12964e 100644 --- a/src/gui/mrview/tool/connectome/node.h +++ b/src/gui/mrview/tool/connectome/node.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_list.cpp b/src/gui/mrview/tool/connectome/node_list.cpp index 4b00862885..2ebb6efc24 100644 --- a/src/gui/mrview/tool/connectome/node_list.cpp +++ b/src/gui/mrview/tool/connectome/node_list.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_list.h b/src/gui/mrview/tool/connectome/node_list.h index c35b05ec68..96c89310a1 100644 --- a/src/gui/mrview/tool/connectome/node_list.h +++ b/src/gui/mrview/tool/connectome/node_list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_overlay.cpp b/src/gui/mrview/tool/connectome/node_overlay.cpp index a452ec2b68..f543e60a9f 100644 --- a/src/gui/mrview/tool/connectome/node_overlay.cpp +++ b/src/gui/mrview/tool/connectome/node_overlay.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/node_overlay.h b/src/gui/mrview/tool/connectome/node_overlay.h index cee2299a4f..402e1ec21e 100644 --- a/src/gui/mrview/tool/connectome/node_overlay.h +++ b/src/gui/mrview/tool/connectome/node_overlay.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/selection.cpp b/src/gui/mrview/tool/connectome/selection.cpp index 07787cfdd8..75922557ce 100644 --- a/src/gui/mrview/tool/connectome/selection.cpp +++ b/src/gui/mrview/tool/connectome/selection.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/selection.h b/src/gui/mrview/tool/connectome/selection.h index c3c961951e..f515c2e2a4 100644 --- a/src/gui/mrview/tool/connectome/selection.h +++ b/src/gui/mrview/tool/connectome/selection.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/shaders.cpp b/src/gui/mrview/tool/connectome/shaders.cpp index acafc07274..a3bf165d5e 100644 --- a/src/gui/mrview/tool/connectome/shaders.cpp +++ b/src/gui/mrview/tool/connectome/shaders.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/shaders.h b/src/gui/mrview/tool/connectome/shaders.h index 6f9b4ab41c..c8256ec2e5 100644 --- a/src/gui/mrview/tool/connectome/shaders.h +++ b/src/gui/mrview/tool/connectome/shaders.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/connectome/types.h b/src/gui/mrview/tool/connectome/types.h index 73441e0b8d..e184439225 100644 --- a/src/gui/mrview/tool/connectome/types.h +++ b/src/gui/mrview/tool/connectome/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/base_fixel.cpp b/src/gui/mrview/tool/fixel/base_fixel.cpp index d618206abf..ce9b3e5902 100644 --- a/src/gui/mrview/tool/fixel/base_fixel.cpp +++ b/src/gui/mrview/tool/fixel/base_fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/base_fixel.h b/src/gui/mrview/tool/fixel/base_fixel.h index 3f27afe8ba..9403aa02f3 100644 --- a/src/gui/mrview/tool/fixel/base_fixel.h +++ b/src/gui/mrview/tool/fixel/base_fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/directory.cpp b/src/gui/mrview/tool/fixel/directory.cpp index da86b73ad7..f973c8a3df 100644 --- a/src/gui/mrview/tool/fixel/directory.cpp +++ b/src/gui/mrview/tool/fixel/directory.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/directory.h b/src/gui/mrview/tool/fixel/directory.h index 48877883f0..3c2ae0ddb2 100644 --- a/src/gui/mrview/tool/fixel/directory.h +++ b/src/gui/mrview/tool/fixel/directory.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/fixel.cpp b/src/gui/mrview/tool/fixel/fixel.cpp index cffcae89a8..ec1207e1a2 100644 --- a/src/gui/mrview/tool/fixel/fixel.cpp +++ b/src/gui/mrview/tool/fixel/fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/fixel.h b/src/gui/mrview/tool/fixel/fixel.h index 2df562de8b..35d95c913b 100644 --- a/src/gui/mrview/tool/fixel/fixel.h +++ b/src/gui/mrview/tool/fixel/fixel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/image4D.cpp b/src/gui/mrview/tool/fixel/image4D.cpp index b5d52e92b6..1fcf4d56d7 100644 --- a/src/gui/mrview/tool/fixel/image4D.cpp +++ b/src/gui/mrview/tool/fixel/image4D.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/image4D.h b/src/gui/mrview/tool/fixel/image4D.h index 66e98bc46e..e107949b2a 100644 --- a/src/gui/mrview/tool/fixel/image4D.h +++ b/src/gui/mrview/tool/fixel/image4D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/legacy.cpp b/src/gui/mrview/tool/fixel/legacy.cpp index 01049279fe..1c29bb9995 100644 --- a/src/gui/mrview/tool/fixel/legacy.cpp +++ b/src/gui/mrview/tool/fixel/legacy.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/legacy.h b/src/gui/mrview/tool/fixel/legacy.h index c85ba99e06..bffce0df4c 100644 --- a/src/gui/mrview/tool/fixel/legacy.h +++ b/src/gui/mrview/tool/fixel/legacy.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/fixel/vector_structs.h b/src/gui/mrview/tool/fixel/vector_structs.h index a17b15117a..4ffb314e9b 100644 --- a/src/gui/mrview/tool/fixel/vector_structs.h +++ b/src/gui/mrview/tool/fixel/vector_structs.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/list.h b/src/gui/mrview/tool/list.h index d08e45ae0c..701288ddb4 100644 --- a/src/gui/mrview/tool/list.h +++ b/src/gui/mrview/tool/list.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/list_model_base.h b/src/gui/mrview/tool/list_model_base.h index 7607e713bc..ff1caac33a 100644 --- a/src/gui/mrview/tool/list_model_base.h +++ b/src/gui/mrview/tool/list_model_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/item.cpp b/src/gui/mrview/tool/odf/item.cpp index 3fe9d1fdc6..2c5b389832 100644 --- a/src/gui/mrview/tool/odf/item.cpp +++ b/src/gui/mrview/tool/odf/item.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/item.h b/src/gui/mrview/tool/odf/item.h index 1ba395c7ba..0538b7e07d 100644 --- a/src/gui/mrview/tool/odf/item.h +++ b/src/gui/mrview/tool/odf/item.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/model.cpp b/src/gui/mrview/tool/odf/model.cpp index 83ad408522..0adfed99f2 100644 --- a/src/gui/mrview/tool/odf/model.cpp +++ b/src/gui/mrview/tool/odf/model.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/model.h b/src/gui/mrview/tool/odf/model.h index 694a91c0a9..77e99acb92 100644 --- a/src/gui/mrview/tool/odf/model.h +++ b/src/gui/mrview/tool/odf/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/odf.cpp b/src/gui/mrview/tool/odf/odf.cpp index 3f68319872..91d859926b 100644 --- a/src/gui/mrview/tool/odf/odf.cpp +++ b/src/gui/mrview/tool/odf/odf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/odf.h b/src/gui/mrview/tool/odf/odf.h index 4b7de6a589..ec8a469dc2 100644 --- a/src/gui/mrview/tool/odf/odf.h +++ b/src/gui/mrview/tool/odf/odf.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/preview.cpp b/src/gui/mrview/tool/odf/preview.cpp index 067052c16a..91252ab534 100644 --- a/src/gui/mrview/tool/odf/preview.cpp +++ b/src/gui/mrview/tool/odf/preview.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/preview.h b/src/gui/mrview/tool/odf/preview.h index 23fc9dc1da..61928dbec4 100644 --- a/src/gui/mrview/tool/odf/preview.h +++ b/src/gui/mrview/tool/odf/preview.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/odf/type.h b/src/gui/mrview/tool/odf/type.h index 3c9d2f9792..02d0fa8d27 100644 --- a/src/gui/mrview/tool/odf/type.h +++ b/src/gui/mrview/tool/odf/type.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/overlay.cpp b/src/gui/mrview/tool/overlay.cpp index d714634dbe..708a27be1b 100644 --- a/src/gui/mrview/tool/overlay.cpp +++ b/src/gui/mrview/tool/overlay.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/overlay.h b/src/gui/mrview/tool/overlay.h index a39f1eea78..c695ad4bdb 100644 --- a/src/gui/mrview/tool/overlay.h +++ b/src/gui/mrview/tool/overlay.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/item.cpp b/src/gui/mrview/tool/roi_editor/item.cpp index 5a22a460c3..8022374752 100644 --- a/src/gui/mrview/tool/roi_editor/item.cpp +++ b/src/gui/mrview/tool/roi_editor/item.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/item.h b/src/gui/mrview/tool/roi_editor/item.h index a793261b66..e6f03cf15e 100644 --- a/src/gui/mrview/tool/roi_editor/item.h +++ b/src/gui/mrview/tool/roi_editor/item.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/model.cpp b/src/gui/mrview/tool/roi_editor/model.cpp index 723e021843..50eda5302e 100644 --- a/src/gui/mrview/tool/roi_editor/model.cpp +++ b/src/gui/mrview/tool/roi_editor/model.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/model.h b/src/gui/mrview/tool/roi_editor/model.h index ee0b4035f8..a8f07dc7ab 100644 --- a/src/gui/mrview/tool/roi_editor/model.h +++ b/src/gui/mrview/tool/roi_editor/model.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/roi.cpp b/src/gui/mrview/tool/roi_editor/roi.cpp index 3d8899cd43..bcd78e6c36 100644 --- a/src/gui/mrview/tool/roi_editor/roi.cpp +++ b/src/gui/mrview/tool/roi_editor/roi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/roi.h b/src/gui/mrview/tool/roi_editor/roi.h index d05d589de6..2e07597b03 100644 --- a/src/gui/mrview/tool/roi_editor/roi.h +++ b/src/gui/mrview/tool/roi_editor/roi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/undoentry.cpp b/src/gui/mrview/tool/roi_editor/undoentry.cpp index cc3adf5236..f94d6a11ab 100644 --- a/src/gui/mrview/tool/roi_editor/undoentry.cpp +++ b/src/gui/mrview/tool/roi_editor/undoentry.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/roi_editor/undoentry.h b/src/gui/mrview/tool/roi_editor/undoentry.h index f19c7b53bd..51568df695 100644 --- a/src/gui/mrview/tool/roi_editor/undoentry.h +++ b/src/gui/mrview/tool/roi_editor/undoentry.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/screen_capture.cpp b/src/gui/mrview/tool/screen_capture.cpp index 2f83080b8d..0794e413de 100644 --- a/src/gui/mrview/tool/screen_capture.cpp +++ b/src/gui/mrview/tool/screen_capture.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/screen_capture.h b/src/gui/mrview/tool/screen_capture.h index b0ad929f78..966d0cfeca 100644 --- a/src/gui/mrview/tool/screen_capture.h +++ b/src/gui/mrview/tool/screen_capture.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/track_scalar_file.cpp b/src/gui/mrview/tool/tractography/track_scalar_file.cpp index b7141b425d..f8f694f352 100644 --- a/src/gui/mrview/tool/tractography/track_scalar_file.cpp +++ b/src/gui/mrview/tool/tractography/track_scalar_file.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/track_scalar_file.h b/src/gui/mrview/tool/tractography/track_scalar_file.h index 2fd4d3a2fd..0216d15b51 100644 --- a/src/gui/mrview/tool/tractography/track_scalar_file.h +++ b/src/gui/mrview/tool/tractography/track_scalar_file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram.cpp b/src/gui/mrview/tool/tractography/tractogram.cpp index c4bbab991b..d3042e58e7 100644 --- a/src/gui/mrview/tool/tractography/tractogram.cpp +++ b/src/gui/mrview/tool/tractography/tractogram.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram.h b/src/gui/mrview/tool/tractography/tractogram.h index db147e4d1d..8329f6e4ff 100644 --- a/src/gui/mrview/tool/tractography/tractogram.h +++ b/src/gui/mrview/tool/tractography/tractogram.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractogram_enums.h b/src/gui/mrview/tool/tractography/tractogram_enums.h index 5234a753e7..8bb676a5ca 100644 --- a/src/gui/mrview/tool/tractography/tractogram_enums.h +++ b/src/gui/mrview/tool/tractography/tractogram_enums.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractography.cpp b/src/gui/mrview/tool/tractography/tractography.cpp index 058cac2c0c..9f030a2310 100644 --- a/src/gui/mrview/tool/tractography/tractography.cpp +++ b/src/gui/mrview/tool/tractography/tractography.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/tractography/tractography.h b/src/gui/mrview/tool/tractography/tractography.h index 56252b7e46..402e7fd5c2 100644 --- a/src/gui/mrview/tool/tractography/tractography.h +++ b/src/gui/mrview/tool/tractography/tractography.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/transform.cpp b/src/gui/mrview/tool/transform.cpp index d97a11c5da..5e5b55a787 100644 --- a/src/gui/mrview/tool/transform.cpp +++ b/src/gui/mrview/tool/transform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/transform.h b/src/gui/mrview/tool/transform.h index d7c42dc2f6..30a40a787a 100644 --- a/src/gui/mrview/tool/transform.h +++ b/src/gui/mrview/tool/transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/view.cpp b/src/gui/mrview/tool/view.cpp index c8a7428f1c..dc1858ce3f 100644 --- a/src/gui/mrview/tool/view.cpp +++ b/src/gui/mrview/tool/view.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/tool/view.h b/src/gui/mrview/tool/view.h index 2af3b168ed..286aae937c 100644 --- a/src/gui/mrview/tool/view.h +++ b/src/gui/mrview/tool/view.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/volume.cpp b/src/gui/mrview/volume.cpp index 13a2a23012..5e174d76ed 100644 --- a/src/gui/mrview/volume.cpp +++ b/src/gui/mrview/volume.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/volume.h b/src/gui/mrview/volume.h index a57d71bf17..400286a4b2 100644 --- a/src/gui/mrview/volume.h +++ b/src/gui/mrview/volume.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/window.cpp b/src/gui/mrview/window.cpp index 30a8631bde..976d37b5f9 100644 --- a/src/gui/mrview/window.cpp +++ b/src/gui/mrview/window.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/mrview/window.h b/src/gui/mrview/window.h index 9b141d5a67..ca8565a800 100644 --- a/src/gui/mrview/window.h +++ b/src/gui/mrview/window.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/font.cpp b/src/gui/opengl/font.cpp index 4eab30b79e..efa7e73ada 100644 --- a/src/gui/opengl/font.cpp +++ b/src/gui/opengl/font.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/font.h b/src/gui/opengl/font.h index 9871c56c92..c3f64cd4be 100644 --- a/src/gui/opengl/font.h +++ b/src/gui/opengl/font.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl.cpp b/src/gui/opengl/gl.cpp index 407e55ad9d..67f6da657b 100644 --- a/src/gui/opengl/gl.cpp +++ b/src/gui/opengl/gl.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl.h b/src/gui/opengl/gl.h index aec0103de0..38fc504f96 100644 --- a/src/gui/opengl/gl.h +++ b/src/gui/opengl/gl.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl_core_3_3.cpp b/src/gui/opengl/gl_core_3_3.cpp index 46418f4d23..5514142d3d 100644 --- a/src/gui/opengl/gl_core_3_3.cpp +++ b/src/gui/opengl/gl_core_3_3.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/gl_core_3_3.h b/src/gui/opengl/gl_core_3_3.h index 007741dc3c..e0aac8f3d9 100644 --- a/src/gui/opengl/gl_core_3_3.h +++ b/src/gui/opengl/gl_core_3_3.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/lighting.cpp b/src/gui/opengl/lighting.cpp index 44fffbd325..04e2e1c8ac 100644 --- a/src/gui/opengl/lighting.cpp +++ b/src/gui/opengl/lighting.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/lighting.h b/src/gui/opengl/lighting.h index f1b0006feb..094f864214 100644 --- a/src/gui/opengl/lighting.h +++ b/src/gui/opengl/lighting.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/shader.cpp b/src/gui/opengl/shader.cpp index 57d20313c9..e533eff86a 100644 --- a/src/gui/opengl/shader.cpp +++ b/src/gui/opengl/shader.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/shader.h b/src/gui/opengl/shader.h index 6a190c6096..b914edb3d8 100644 --- a/src/gui/opengl/shader.h +++ b/src/gui/opengl/shader.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/opengl/transformation.h b/src/gui/opengl/transformation.h index 9f634fa776..348e661f6f 100644 --- a/src/gui/opengl/transformation.h +++ b/src/gui/opengl/transformation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/projection.cpp b/src/gui/projection.cpp index b86e2a32a0..b396ed8a37 100644 --- a/src/gui/projection.cpp +++ b/src/gui/projection.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/projection.h b/src/gui/projection.h index 846c28e89b..fd54c0caac 100644 --- a/src/gui/projection.h +++ b/src/gui/projection.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cube.cpp b/src/gui/shapes/cube.cpp index 9d22d8fb4d..c691ac60f4 100644 --- a/src/gui/shapes/cube.cpp +++ b/src/gui/shapes/cube.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cube.h b/src/gui/shapes/cube.h index cea80834d0..14b7ddf7ab 100644 --- a/src/gui/shapes/cube.h +++ b/src/gui/shapes/cube.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cylinder.cpp b/src/gui/shapes/cylinder.cpp index 030c24e4da..f5d44d17ca 100644 --- a/src/gui/shapes/cylinder.cpp +++ b/src/gui/shapes/cylinder.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/cylinder.h b/src/gui/shapes/cylinder.h index f5101111a4..0a0627eb85 100644 --- a/src/gui/shapes/cylinder.h +++ b/src/gui/shapes/cylinder.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/halfsphere.cpp b/src/gui/shapes/halfsphere.cpp index 3a7ad4975f..14e4afc7b4 100644 --- a/src/gui/shapes/halfsphere.cpp +++ b/src/gui/shapes/halfsphere.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/halfsphere.h b/src/gui/shapes/halfsphere.h index 7e78a3bf93..b07a8f25a0 100644 --- a/src/gui/shapes/halfsphere.h +++ b/src/gui/shapes/halfsphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/sphere.cpp b/src/gui/shapes/sphere.cpp index 909d38dbbb..7571ce9ec8 100644 --- a/src/gui/shapes/sphere.cpp +++ b/src/gui/shapes/sphere.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shapes/sphere.h b/src/gui/shapes/sphere.h index 2a193b2e4d..b2151a3ed5 100644 --- a/src/gui/shapes/sphere.h +++ b/src/gui/shapes/sphere.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/icons.h b/src/gui/shview/icons.h index c99b9ec1ae..357af6559e 100644 --- a/src/gui/shview/icons.h +++ b/src/gui/shview/icons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/render_window.cpp b/src/gui/shview/render_window.cpp index a1a721ceaa..9357574a79 100644 --- a/src/gui/shview/render_window.cpp +++ b/src/gui/shview/render_window.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/gui/shview/render_window.h b/src/gui/shview/render_window.h index 3e05b90646..e1cc49d9c3 100644 --- a/src/gui/shview/render_window.h +++ b/src/gui/shview/render_window.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/min_mem_array.h b/src/min_mem_array.h index 9a7bbac515..07f87f4f63 100644 --- a/src/min_mem_array.h +++ b/src/min_mem_array.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/linear.cpp b/src/registration/linear.cpp index 9067e37a2a..96f353f63d 100644 --- a/src/registration/linear.cpp +++ b/src/registration/linear.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/linear.h b/src/registration/linear.h index 4d7cc4c3e6..a52382ae49 100644 --- a/src/registration/linear.h +++ b/src/registration/linear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/cc_helper.h b/src/registration/metric/cc_helper.h index a85f7a65a1..fa36244738 100644 --- a/src/registration/metric/cc_helper.h +++ b/src/registration/metric/cc_helper.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/cross_correlation.h b/src/registration/metric/cross_correlation.h index 8ad611f499..34c57808bd 100644 --- a/src/registration/metric/cross_correlation.h +++ b/src/registration/metric/cross_correlation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons.h b/src/registration/metric/demons.h index 5f834a366b..c367856234 100644 --- a/src/registration/metric/demons.h +++ b/src/registration/metric/demons.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons4D.h b/src/registration/metric/demons4D.h index 4984813c98..bbebb316fe 100644 --- a/src/registration/metric/demons4D.h +++ b/src/registration/metric/demons4D.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/demons_cc.h b/src/registration/metric/demons_cc.h index dc2df2335c..5505fbe930 100644 --- a/src/registration/metric/demons_cc.h +++ b/src/registration/metric/demons_cc.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/difference_robust.h b/src/registration/metric/difference_robust.h index edeeababfd..c099304be9 100644 --- a/src/registration/metric/difference_robust.h +++ b/src/registration/metric/difference_robust.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/evaluate.h b/src/registration/metric/evaluate.h index 213ecf11a8..0baa757926 100644 --- a/src/registration/metric/evaluate.h +++ b/src/registration/metric/evaluate.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/linear_base.h b/src/registration/metric/linear_base.h index 52d7b3204e..6bf09655be 100644 --- a/src/registration/metric/linear_base.h +++ b/src/registration/metric/linear_base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/local_cross_correlation.h b/src/registration/metric/local_cross_correlation.h index 94908178a5..798f5c7826 100644 --- a/src/registration/metric/local_cross_correlation.h +++ b/src/registration/metric/local_cross_correlation.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/mean_squared.h b/src/registration/metric/mean_squared.h index 9e98eb83ed..6f021069b2 100644 --- a/src/registration/metric/mean_squared.h +++ b/src/registration/metric/mean_squared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/params.h b/src/registration/metric/params.h index 2b7a2ff6c9..a758070f73 100644 --- a/src/registration/metric/params.h +++ b/src/registration/metric/params.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/robust_estimators.h b/src/registration/metric/robust_estimators.h index 392e64f9bf..5b48342505 100644 --- a/src/registration/metric/robust_estimators.h +++ b/src/registration/metric/robust_estimators.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/metric/thread_kernel.h b/src/registration/metric/thread_kernel.h index 2d3cfbfe46..959fd5ae79 100644 --- a/src/registration/metric/thread_kernel.h +++ b/src/registration/metric/thread_kernel.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_contrast.cpp b/src/registration/multi_contrast.cpp index b721661a0e..fd95aee634 100644 --- a/src/registration/multi_contrast.cpp +++ b/src/registration/multi_contrast.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_contrast.h b/src/registration/multi_contrast.h index 81bdf64f90..db81fd3fc7 100644 --- a/src/registration/multi_contrast.h +++ b/src/registration/multi_contrast.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/multi_resolution_lmax.h b/src/registration/multi_resolution_lmax.h index e3523fe08d..10dd41f95c 100644 --- a/src/registration/multi_resolution_lmax.h +++ b/src/registration/multi_resolution_lmax.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/nonlinear.cpp b/src/registration/nonlinear.cpp index 2a1f1bf37b..59f72b4015 100644 --- a/src/registration/nonlinear.cpp +++ b/src/registration/nonlinear.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/nonlinear.h b/src/registration/nonlinear.h index 0268fb409a..f4b52bbab5 100644 --- a/src/registration/nonlinear.h +++ b/src/registration/nonlinear.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/shared.h b/src/registration/shared.h index c11a4d418d..54daa08415 100644 --- a/src/registration/shared.h +++ b/src/registration/shared.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/affine.cpp b/src/registration/transform/affine.cpp index 504893f4b4..6e53341462 100644 --- a/src/registration/transform/affine.cpp +++ b/src/registration/transform/affine.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/affine.h b/src/registration/transform/affine.h index 67e0ec162e..c731d6ffcc 100644 --- a/src/registration/transform/affine.h +++ b/src/registration/transform/affine.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/base.h b/src/registration/transform/base.h index 88bbce87d0..627b2dbac7 100644 --- a/src/registration/transform/base.h +++ b/src/registration/transform/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/convergence_check.cpp b/src/registration/transform/convergence_check.cpp index bb2989a125..f2b9b1cefb 100644 --- a/src/registration/transform/convergence_check.cpp +++ b/src/registration/transform/convergence_check.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/convergence_check.h b/src/registration/transform/convergence_check.h index 2d26c97960..3f60fd89d0 100644 --- a/src/registration/transform/convergence_check.h +++ b/src/registration/transform/convergence_check.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser.cpp b/src/registration/transform/initialiser.cpp index a0ff6b1a1f..7aaa63d7af 100644 --- a/src/registration/transform/initialiser.cpp +++ b/src/registration/transform/initialiser.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser.h b/src/registration/transform/initialiser.h index 4c832856b2..d1db8a69a1 100644 --- a/src/registration/transform/initialiser.h +++ b/src/registration/transform/initialiser.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser_helpers.cpp b/src/registration/transform/initialiser_helpers.cpp index 46847b5bed..f5485b7f69 100644 --- a/src/registration/transform/initialiser_helpers.cpp +++ b/src/registration/transform/initialiser_helpers.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/initialiser_helpers.h b/src/registration/transform/initialiser_helpers.h index bdc7ab024f..e102d18de9 100644 --- a/src/registration/transform/initialiser_helpers.h +++ b/src/registration/transform/initialiser_helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/reorient.h b/src/registration/transform/reorient.h index 8d07d340d8..23d3910740 100644 --- a/src/registration/transform/reorient.h +++ b/src/registration/transform/reorient.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/rigid.cpp b/src/registration/transform/rigid.cpp index 1764e39ab3..e2aca642db 100644 --- a/src/registration/transform/rigid.cpp +++ b/src/registration/transform/rigid.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/rigid.h b/src/registration/transform/rigid.h index e8bd523ef5..d95dcca0e4 100644 --- a/src/registration/transform/rigid.h +++ b/src/registration/transform/rigid.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/transform/search.h b/src/registration/transform/search.h index e3db409f56..f266b62fdd 100644 --- a/src/registration/transform/search.h +++ b/src/registration/transform/search.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/compose.h b/src/registration/warp/compose.h index 22d66198e2..695c142044 100644 --- a/src/registration/warp/compose.h +++ b/src/registration/warp/compose.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/convert.h b/src/registration/warp/convert.h index d364985293..40574b412c 100644 --- a/src/registration/warp/convert.h +++ b/src/registration/warp/convert.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/helpers.h b/src/registration/warp/helpers.h index d98c986013..217dd1b134 100644 --- a/src/registration/warp/helpers.h +++ b/src/registration/warp/helpers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/registration/warp/invert.h b/src/registration/warp/invert.h index 727f6e3600..5cc79140b8 100644 --- a/src/registration/warp/invert.h +++ b/src/registration/warp/invert.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cfe.cpp b/src/stats/cfe.cpp index 6e6393e5cf..e84df1cc56 100644 --- a/src/stats/cfe.cpp +++ b/src/stats/cfe.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cfe.h b/src/stats/cfe.h index 3fbed0672b..31161c4e42 100644 --- a/src/stats/cfe.h +++ b/src/stats/cfe.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cluster.cpp b/src/stats/cluster.cpp index e9a30dcc5d..e89d9c9984 100644 --- a/src/stats/cluster.cpp +++ b/src/stats/cluster.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/cluster.h b/src/stats/cluster.h index d66c2146c9..9df6443b54 100644 --- a/src/stats/cluster.h +++ b/src/stats/cluster.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/enhance.h b/src/stats/enhance.h index 309ae97ae3..f99783e183 100644 --- a/src/stats/enhance.h +++ b/src/stats/enhance.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permtest.cpp b/src/stats/permtest.cpp index 836dba7165..79a40b19fe 100644 --- a/src/stats/permtest.cpp +++ b/src/stats/permtest.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/permtest.h b/src/stats/permtest.h index a49b685909..5ced0d078e 100644 --- a/src/stats/permtest.h +++ b/src/stats/permtest.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/tfce.cpp b/src/stats/tfce.cpp index 3e539b8f32..0665ba503d 100644 --- a/src/stats/tfce.cpp +++ b/src/stats/tfce.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/stats/tfce.h b/src/stats/tfce.h index e81895a246..b0b0fa8f4d 100644 --- a/src/stats/tfce.h +++ b/src/stats/tfce.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/image2mesh.h b/src/surface/algo/image2mesh.h index e0e5430401..a42337a122 100644 --- a/src/surface/algo/image2mesh.h +++ b/src/surface/algo/image2mesh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/mesh2image.cpp b/src/surface/algo/mesh2image.cpp index 76f4ca2462..562f71dffd 100644 --- a/src/surface/algo/mesh2image.cpp +++ b/src/surface/algo/mesh2image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/algo/mesh2image.h b/src/surface/algo/mesh2image.h index d9dd805cdb..464164423e 100644 --- a/src/surface/algo/mesh2image.h +++ b/src/surface/algo/mesh2image.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/base.cpp b/src/surface/filter/base.cpp index 80ab18fffa..00c19048ad 100644 --- a/src/surface/filter/base.cpp +++ b/src/surface/filter/base.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/base.h b/src/surface/filter/base.h index c1a675212b..47822a4de9 100644 --- a/src/surface/filter/base.h +++ b/src/surface/filter/base.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/smooth.cpp b/src/surface/filter/smooth.cpp index 19bbe150a1..b9295e7b79 100644 --- a/src/surface/filter/smooth.cpp +++ b/src/surface/filter/smooth.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/smooth.h b/src/surface/filter/smooth.h index 7361fc9644..e11bd4b310 100644 --- a/src/surface/filter/smooth.h +++ b/src/surface/filter/smooth.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/vertex_transform.cpp b/src/surface/filter/vertex_transform.cpp index c9195f31b5..b2900d3876 100644 --- a/src/surface/filter/vertex_transform.cpp +++ b/src/surface/filter/vertex_transform.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/filter/vertex_transform.h b/src/surface/filter/vertex_transform.h index 18745900b2..2c5056d20e 100644 --- a/src/surface/filter/vertex_transform.h +++ b/src/surface/filter/vertex_transform.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/freesurfer.cpp b/src/surface/freesurfer.cpp index 67931600a0..1a00fe0481 100644 --- a/src/surface/freesurfer.cpp +++ b/src/surface/freesurfer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/freesurfer.h b/src/surface/freesurfer.h index b991f91ec9..7d5bcb4d93 100644 --- a/src/surface/freesurfer.h +++ b/src/surface/freesurfer.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh.cpp b/src/surface/mesh.cpp index df6f50d1f9..60c98792f9 100644 --- a/src/surface/mesh.cpp +++ b/src/surface/mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh.h b/src/surface/mesh.h index c041f88a25..a55c4b54ac 100644 --- a/src/surface/mesh.h +++ b/src/surface/mesh.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh_multi.cpp b/src/surface/mesh_multi.cpp index 730782f768..a1ca0e13ad 100644 --- a/src/surface/mesh_multi.cpp +++ b/src/surface/mesh_multi.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/mesh_multi.h b/src/surface/mesh_multi.h index 61986fea13..13c08e5cda 100644 --- a/src/surface/mesh_multi.h +++ b/src/surface/mesh_multi.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/polygon.cpp b/src/surface/polygon.cpp index 712b14e0e8..f66a9acb92 100644 --- a/src/surface/polygon.cpp +++ b/src/surface/polygon.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/polygon.h b/src/surface/polygon.h index 75f0541132..cd0ce02fcc 100644 --- a/src/surface/polygon.h +++ b/src/surface/polygon.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/scalar.cpp b/src/surface/scalar.cpp index 34a11a32e8..418f3e5597 100644 --- a/src/surface/scalar.cpp +++ b/src/surface/scalar.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/scalar.h b/src/surface/scalar.h index 164ad9141b..86db504b43 100644 --- a/src/surface/scalar.h +++ b/src/surface/scalar.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/types.h b/src/surface/types.h index 51db2ea3fc..f56c8f4be7 100644 --- a/src/surface/types.h +++ b/src/surface/types.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/surface/utils.h b/src/surface/utils.h index e41139481b..a00dbe4c71 100644 --- a/src/surface/utils.h +++ b/src/surface/utils.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/src/wrap_r.h b/src/wrap_r.h index f0ff00280c..f287196322 100644 --- a/src/wrap_r.h +++ b/src/wrap_r.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/lib/diff_images.h b/testing/lib/diff_images.h index c4ad598b55..f61c7038dc 100644 --- a/testing/lib/diff_images.h +++ b/testing/lib/diff_images.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_dir.cpp b/testing/tools/testing_diff_dir.cpp index de442290d7..d4a13f55ef 100644 --- a/testing/tools/testing_diff_dir.cpp +++ b/testing/tools/testing_diff_dir.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_fixel.cpp b/testing/tools/testing_diff_fixel.cpp index 91952439f2..1e63381603 100644 --- a/testing/tools/testing_diff_fixel.cpp +++ b/testing/tools/testing_diff_fixel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_fixel_old.cpp b/testing/tools/testing_diff_fixel_old.cpp index c444bd475d..60ac39fb1c 100644 --- a/testing/tools/testing_diff_fixel_old.cpp +++ b/testing/tools/testing_diff_fixel_old.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_header.cpp b/testing/tools/testing_diff_header.cpp index 21c914f401..22745073d2 100644 --- a/testing/tools/testing_diff_header.cpp +++ b/testing/tools/testing_diff_header.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_image.cpp b/testing/tools/testing_diff_image.cpp index 92b5debcaf..e673a96adf 100644 --- a/testing/tools/testing_diff_image.cpp +++ b/testing/tools/testing_diff_image.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_matrix.cpp b/testing/tools/testing_diff_matrix.cpp index 1b473b847e..92a01a5c66 100644 --- a/testing/tools/testing_diff_matrix.cpp +++ b/testing/tools/testing_diff_matrix.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_mesh.cpp b/testing/tools/testing_diff_mesh.cpp index e184e63b06..3148f2a9ef 100644 --- a/testing/tools/testing_diff_mesh.cpp +++ b/testing/tools/testing_diff_mesh.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_peaks.cpp b/testing/tools/testing_diff_peaks.cpp index d9904e1860..dceaffb284 100644 --- a/testing/tools/testing_diff_peaks.cpp +++ b/testing/tools/testing_diff_peaks.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_tck.cpp b/testing/tools/testing_diff_tck.cpp index 6e22e575b9..3668853459 100644 --- a/testing/tools/testing_diff_tck.cpp +++ b/testing/tools/testing_diff_tck.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_diff_tsf.cpp b/testing/tools/testing_diff_tsf.cpp index a64e0fb451..cdf48d1771 100644 --- a/testing/tools/testing_diff_tsf.cpp +++ b/testing/tools/testing_diff_tsf.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_gen_data.cpp b/testing/tools/testing_gen_data.cpp index fd41238b44..b92317ba43 100644 --- a/testing/tools/testing_gen_data.cpp +++ b/testing/tools/testing_gen_data.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_unit_tests_npyread.cpp b/testing/tools/testing_unit_tests_npyread.cpp index e54501bb0e..2cebd97c87 100644 --- a/testing/tools/testing_unit_tests_npyread.cpp +++ b/testing/tools/testing_unit_tests_npyread.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/tools/testing_unit_tests_npywrite.cpp b/testing/tools/testing_unit_tests_npywrite.cpp index 264ce06915..ca22747f83 100644 --- a/testing/tools/testing_unit_tests_npywrite.cpp +++ b/testing/tools/testing_unit_tests_npywrite.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/bitset.cpp b/testing/unit_tests/bitset.cpp index 286daebc2e..7c41b6b151 100644 --- a/testing/unit_tests/bitset.cpp +++ b/testing/unit_tests/bitset.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/erfinv.cpp b/testing/unit_tests/erfinv.cpp index f5a4e3ef8f..37a1713774 100644 --- a/testing/unit_tests/erfinv.cpp +++ b/testing/unit_tests/erfinv.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/icls.cpp b/testing/unit_tests/icls.cpp index 977303c186..5d90ea5878 100644 --- a/testing/unit_tests/icls.cpp +++ b/testing/unit_tests/icls.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/ordered_include.cpp b/testing/unit_tests/ordered_include.cpp index 01dfc4e0ae..38269dcae1 100644 --- a/testing/unit_tests/ordered_include.cpp +++ b/testing/unit_tests/ordered_include.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/ordered_queue.cpp b/testing/unit_tests/ordered_queue.cpp index b0a3a834ac..96aecf46ef 100644 --- a/testing/unit_tests/ordered_queue.cpp +++ b/testing/unit_tests/ordered_queue.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/parse_ints.cpp b/testing/unit_tests/parse_ints.cpp index 59ca5a72c1..ecfd32a495 100644 --- a/testing/unit_tests/parse_ints.cpp +++ b/testing/unit_tests/parse_ints.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/sh_precomputer.cpp b/testing/unit_tests/sh_precomputer.cpp index 14943202c9..233e90ec55 100644 --- a/testing/unit_tests/sh_precomputer.cpp +++ b/testing/unit_tests/sh_precomputer.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/shuffle.cpp b/testing/unit_tests/shuffle.cpp index 35c6358f74..1d64833fb3 100644 --- a/testing/unit_tests/shuffle.cpp +++ b/testing/unit_tests/shuffle.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/testing/unit_tests/to.cpp b/testing/unit_tests/to.cpp index 9222af6c62..e2e5652ebd 100644 --- a/testing/unit_tests/to.cpp +++ b/testing/unit_tests/to.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2023 the MRtrix3 contributors. +/* Copyright (c) 2008-2024 the MRtrix3 contributors. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/update_copyright b/update_copyright index cc8d9fb2c5..c59453089c 100755 --- a/update_copyright +++ b/update_copyright @@ -1,6 +1,6 @@ #!/usr/bin/python3 -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/update_dev_doc b/update_dev_doc index 519bba9e8a..50761f831d 100755 --- a/update_dev_doc +++ b/update_dev_doc @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2008-2023 the MRtrix3 contributors. +# Copyright (c) 2008-2024 the MRtrix3 contributors. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this From 5b95b778005564e2a0124d747d32054ca0f91941 Mon Sep 17 00:00:00 2001 From: Robert Smith Date: Thu, 11 Jan 2024 14:11:54 +1100 Subject: [PATCH 05/12] Fix memory leaks related to PNG handling --- core/file/png.cpp | 1 + core/image_io/png.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/file/png.cpp b/core/file/png.cpp index 5a24ce6c36..04ade9ca04 100644 --- a/core/file/png.cpp +++ b/core/file/png.cpp @@ -289,6 +289,7 @@ void Writer::save(uint8_t *data) { row_pointers[row] = to_write + row * row_bytes; png_write_image(png_ptr, row_pointers); png_write_end(png_ptr, info_ptr); + delete[] row_pointers; }; if (bit_depth == 1 || data_type == DataType::UInt8 || data_type == DataType::UInt16BE) { diff --git a/core/image_io/png.cpp b/core/image_io/png.cpp index 8bf758f374..5a7b85e819 100644 --- a/core/image_io/png.cpp +++ b/core/image_io/png.cpp @@ -69,7 +69,7 @@ void PNG::unload(const Header &header) { } } DEBUG("deleting buffer for PNG image \"" + header.name() + "\"..."); - addresses[0].release(); + addresses[0].reset(); } } From dd6c453cced369661e4964358f24f8a1283a1f4b Mon Sep 17 00:00:00 2001 From: Daljit Singh <129752264+daljit46@users.noreply.github.com> Date: Fri, 12 Jan 2024 15:49:09 +0000 Subject: [PATCH 06/12] Output error messages in CI checks --- .github/workflows/checks.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index d4f9b20eaf..1243880dae 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -54,10 +54,10 @@ jobs: run: cmake --build build - name: unit tests - run: cd build && ctest -R unit + run: cd build && ctest -R unit --output-on-failure - name: binary tests - run: cd build && ctest -R bin + run: cd build && ctest -R bin --output-on-failure linux-gcc-build: @@ -103,10 +103,10 @@ jobs: run: cmake --build build - name: unit tests - run: cd build && ctest -R unit + run: cd build && ctest -R unit --output-on-failure - name: binary tests - run: cd build && ctest -R bin + run: cd build && ctest -R bin --output-on-failure macos-build: @@ -154,10 +154,10 @@ jobs: run: cmake --build build - name: unit tests - run: cd build && ctest -R unit + run: cd build && ctest -R unit --output-on-failure - name: binary tests - run: cd build && ctest -R bin + run: cd build && ctest -R bin --output-on-failure - name: check command documentation run: ./docs/generate_user_docs.sh --build-dir ./build && git diff --exit-code docs/ @@ -224,10 +224,10 @@ jobs: run: cmake --build build - name: unit tests - run: cd build && ctest -R unit + run: cd build && ctest -R unit --output-on-failure - name: binary tests - run: cd build && ctest -R bin + run: cd build && ctest -R bin --output-on-failure secondary-checks: runs-on: ubuntu-latest From 7d81f13d8ab4e71e0048d2b69c837d267a9b7e2d Mon Sep 17 00:00:00 2001 From: MRtrixBot Date: Thu, 30 Nov 2023 11:54:31 +0000 Subject: [PATCH 07/12] Replace MR::vector and MR::deque with std types --- cmd/afdconnectivity.cpp | 2 +- cmd/amp2response.cpp | 16 ++--- cmd/amp2sh.cpp | 12 ++-- cmd/connectome2tck.cpp | 18 +++--- cmd/connectomestats.cpp | 4 +- cmd/dcmedit.cpp | 4 +- cmd/dcminfo.cpp | 2 +- cmd/dirflip.cpp | 14 ++--- cmd/dirmerge.cpp | 16 ++--- cmd/dirorder.cpp | 12 ++-- cmd/dirsplit.cpp | 14 ++--- cmd/dirstat.cpp | 14 ++--- cmd/dwi2fod.cpp | 10 ++-- cmd/dwidenoise.cpp | 6 +- cmd/dwiextract.cpp | 4 +- cmd/fixel2sh.cpp | 2 +- cmd/fixelcfestats.cpp | 4 +- cmd/fixelconvert.cpp | 2 +- cmd/fixelcrop.cpp | 6 +- cmd/fixelfilter.cpp | 2 +- cmd/fod2fixel.cpp | 4 +- cmd/label2mesh.cpp | 6 +- cmd/labelstats.cpp | 2 +- cmd/maskdump.cpp | 2 +- cmd/maskfilter.cpp | 4 +- cmd/mraverageheader.cpp | 4 +- cmd/mrcalc.cpp | 24 ++++---- cmd/mrcat.cpp | 4 +- cmd/mrclusterstats.cpp | 4 +- cmd/mrcolour.cpp | 4 +- cmd/mrconvert.cpp | 20 +++---- cmd/mrdegibbs.cpp | 10 ++-- cmd/mredit.cpp | 2 +- cmd/mrfilter.cpp | 6 +- cmd/mrgrid.cpp | 23 ++++---- cmd/mrhistmatch.cpp | 4 +- cmd/mrinfo.cpp | 8 +-- cmd/mrmath.cpp | 4 +- cmd/mrregister.cpp | 26 ++++----- cmd/mrstats.cpp | 2 +- cmd/mrthreshold.cpp | 9 +-- cmd/mrtransform.cpp | 6 +- cmd/mrview.cpp | 2 +- cmd/mtnormalise.cpp | 2 +- cmd/peaks2fixel.cpp | 4 +- cmd/sh2amp.cpp | 6 +- cmd/sh2peaks.cpp | 10 ++-- cmd/shbasis.cpp | 6 +- cmd/shconv.cpp | 10 ++-- cmd/tck2connectome.cpp | 2 +- cmd/tck2fixel.cpp | 16 ++--- cmd/tckconvert.cpp | 12 ++-- cmd/tckdfc.cpp | 4 +- cmd/tckedit.cpp | 2 +- cmd/tckinfo.cpp | 2 +- cmd/tckmap.cpp | 2 +- cmd/tcksample.cpp | 4 +- cmd/tcksift.cpp | 2 +- cmd/tckstats.cpp | 10 ++-- cmd/tensor2metric.cpp | 6 +- cmd/transformcalc.cpp | 2 +- cmd/transformcompose.cpp | 2 +- cmd/transformconvert.cpp | 18 +++--- cmd/tsfinfo.cpp | 4 +- cmd/tsfsmooth.cpp | 2 +- cmd/vectorstats.cpp | 4 +- core/adapter/extract.h | 12 ++-- core/adapter/gaussian1D.h | 2 +- core/adapter/gradient1D.h | 4 +- core/adapter/median.h | 12 ++-- core/adapter/neighbourhood3D.h | 2 +- core/adapter/normalise3D.h | 10 ++-- core/adapter/permute_axes.h | 6 +- core/adapter/regrid.h | 14 ++--- core/adapter/replicate.h | 2 +- core/adapter/reslice.cpp | 2 +- core/adapter/reslice.h | 4 +- core/adapter/subset.h | 2 +- core/algo/histogram.cpp | 4 +- core/algo/histogram.h | 2 +- core/algo/iterator.h | 2 +- core/algo/loop.h | 16 ++--- core/algo/neighbourhooditerator.h | 4 +- core/algo/random_loop.h | 6 +- core/algo/random_threaded_loop.h | 58 +++++++++---------- core/algo/stochastic_threaded_loop.h | 36 ++++++------ core/algo/threaded_copy.h | 6 +- core/algo/threaded_loop.h | 51 ++++++++-------- core/app.cpp | 24 ++++---- core/app.h | 36 ++++++------ core/cmdline_option.h | 6 +- core/dwi/gradient.cpp | 4 +- core/dwi/shells.cpp | 28 ++++----- core/dwi/shells.h | 20 +++---- core/exception.h | 2 +- core/file/config.cpp | 2 +- core/file/dicom/csa_entry.h | 4 +- core/file/dicom/element.cpp | 16 ++--- core/file/dicom/element.h | 12 ++-- core/file/dicom/image.cpp | 20 +++---- core/file/dicom/image.h | 20 +++---- core/file/dicom/mapper.cpp | 14 ++--- core/file/dicom/mapper.h | 2 +- core/file/dicom/patient.h | 2 +- core/file/dicom/select_cmdline.cpp | 12 ++-- core/file/dicom/series.cpp | 6 +- core/file/dicom/series.h | 4 +- core/file/dicom/study.h | 2 +- core/file/dicom/tree.h | 4 +- core/file/json_utils.cpp | 16 ++--- core/file/matrix.h | 15 ++--- core/file/mgh.h | 10 ++-- core/file/name_parser.cpp | 24 ++++---- core/file/name_parser.h | 34 +++++------ core/file/nifti_utils.cpp | 12 ++-- core/file/nifti_utils.h | 6 +- core/file/npy.cpp | 4 +- core/file/npy.h | 4 +- core/file/path.h | 2 +- core/filter/connected_components.cpp | 16 ++--- core/filter/connected_components.h | 41 ++++++------- core/filter/fill.h | 4 +- core/filter/gradient.h | 4 +- core/filter/median.h | 9 +-- core/filter/normalise.h | 8 +-- core/filter/resize.h | 18 +++--- core/filter/reslice.h | 2 +- core/filter/smooth.h | 20 +++---- core/filter/warp.h | 2 +- core/filter/zclean.h | 2 +- core/fixel/helpers.h | 10 ++-- core/formats/mrtrix_utils.cpp | 4 +- core/formats/mrtrix_utils.h | 8 +-- core/formats/par.cpp | 4 +- core/header.cpp | 35 +++++------ core/header.h | 10 ++-- core/image.h | 10 ++-- core/image_helpers.h | 20 ++++--- core/image_io/base.h | 4 +- core/image_io/default.h | 2 +- core/image_io/variable_scaling.h | 2 +- core/interp/sinc.h | 2 +- core/math/SH.h | 6 +- core/math/Sn_scale_estimator.h | 2 +- core/math/average_space.cpp | 12 ++-- core/math/average_space.h | 10 ++-- core/math/constrained_least_squares.h | 2 +- core/math/erfinv.cpp | 4 +- core/math/gaussian.h | 9 +-- core/math/median.h | 2 +- core/math/rician.h | 12 ++-- core/math/sinc.h | 4 +- core/math/stats/fwe.cpp | 6 +- core/math/stats/glm.cpp | 38 ++++++------ core/math/stats/glm.h | 38 ++++++------ core/math/stats/import.h | 6 +- core/math/stats/shuffle.cpp | 24 ++++---- core/math/stats/shuffle.h | 8 +-- core/misc/voxel2vector.h | 6 +- core/mrtrix.cpp | 9 +-- core/mrtrix.h | 34 +++++------ core/ordered_thread_queue.h | 10 ++-- core/phase_encoding.h | 4 +- core/stats.h | 4 +- core/stride.cpp | 2 +- core/stride.h | 20 +++---- core/thread.h | 4 +- core/thread_queue.h | 6 +- core/types.h | 32 +--------- src/connectome/enhance.cpp | 8 +-- src/connectome/enhance.h | 2 +- src/connectome/lut.cpp | 10 ++-- src/connectome/lut.h | 2 +- src/degibbs/unring1d.h | 2 +- src/degibbs/unring2d.h | 8 +-- src/degibbs/unring3d.h | 4 +- src/dwi/bootstrap.h | 6 +- src/dwi/directions/mask.cpp | 9 ++- src/dwi/directions/set.cpp | 31 +++++----- src/dwi/directions/set.h | 10 ++-- src/dwi/fixel_map.h | 2 +- src/dwi/fmls.cpp | 16 ++--- src/dwi/fmls.h | 6 +- src/dwi/sdeconv/csd.h | 4 +- src/dwi/sdeconv/msmt_csd.h | 18 +++--- src/dwi/tractography/ACT/gmwmi.cpp | 7 ++- src/dwi/tractography/ACT/gmwmi.h | 6 +- src/dwi/tractography/ACT/shared.h | 2 +- src/dwi/tractography/GT/externalenergy.h | 8 +-- src/dwi/tractography/GT/gt.h | 2 +- src/dwi/tractography/GT/internalenergy.h | 2 +- src/dwi/tractography/GT/mhsampler.h | 2 +- src/dwi/tractography/GT/particlegrid.cpp | 2 +- src/dwi/tractography/GT/particlegrid.h | 4 +- src/dwi/tractography/GT/particlepool.h | 6 +- src/dwi/tractography/GT/spatiallock.h | 2 +- src/dwi/tractography/SIFT/gradient_sort.h | 2 +- src/dwi/tractography/SIFT/model.h | 30 +++++----- src/dwi/tractography/SIFT/output.h | 2 +- src/dwi/tractography/SIFT/sifter.cpp | 18 +++--- src/dwi/tractography/SIFT/sifter.h | 11 ++-- .../tractography/SIFT/track_contribution.h | 2 +- src/dwi/tractography/SIFT2/fixel_updater.h | 6 +- src/dwi/tractography/SIFT2/line_search.cpp | 4 +- src/dwi/tractography/SIFT2/line_search.h | 2 +- src/dwi/tractography/SIFT2/tckfactor.cpp | 22 +++---- src/dwi/tractography/algorithms/calibrator.h | 6 +- src/dwi/tractography/algorithms/iFOD1.h | 2 +- src/dwi/tractography/algorithms/iFOD2.h | 14 ++--- src/dwi/tractography/algorithms/nulldist.h | 2 +- src/dwi/tractography/algorithms/tensor_prob.h | 2 +- src/dwi/tractography/connectome/exemplar.cpp | 2 +- src/dwi/tractography/connectome/extract.cpp | 28 ++++----- src/dwi/tractography/connectome/extract.h | 24 ++++---- .../tractography/connectome/mapped_track.h | 8 +-- src/dwi/tractography/connectome/mapper.h | 2 +- src/dwi/tractography/connectome/matrix.cpp | 10 ++-- src/dwi/tractography/connectome/matrix.h | 6 +- src/dwi/tractography/connectome/metric.h | 4 +- src/dwi/tractography/connectome/streamline.h | 6 +- src/dwi/tractography/connectome/tck2nodes.cpp | 5 +- src/dwi/tractography/connectome/tck2nodes.h | 8 +-- src/dwi/tractography/editing/loader.h | 4 +- src/dwi/tractography/editing/worker.cpp | 4 +- src/dwi/tractography/file_base.cpp | 2 +- .../mapping/buffer_scratch_dump.h | 2 +- .../tractography/mapping/gaussian/mapper.cpp | 2 +- src/dwi/tractography/mapping/mapper.cpp | 8 +-- src/dwi/tractography/mapping/mapper.h | 4 +- .../tractography/mapping/mapper_plugins.cpp | 12 ++-- src/dwi/tractography/mapping/mapper_plugins.h | 14 ++--- src/dwi/tractography/mapping/mapping.cpp | 4 +- src/dwi/tractography/mapping/mapping.h | 4 +- src/dwi/tractography/properties.cpp | 2 +- src/dwi/tractography/properties.h | 2 +- src/dwi/tractography/resampling/arc.h | 2 +- .../resampling/fixed_num_points.cpp | 2 +- .../tractography/resampling/resampling.cpp | 2 +- src/dwi/tractography/roi.cpp | 2 +- src/dwi/tractography/roi.h | 4 +- src/dwi/tractography/scalar_file.h | 2 +- src/dwi/tractography/seeding/basic.cpp | 4 +- src/dwi/tractography/seeding/dynamic.cpp | 2 +- src/dwi/tractography/seeding/list.h | 2 +- src/dwi/tractography/streamline.h | 25 ++++---- src/dwi/tractography/tracking/exec.h | 4 +- .../tractography/tracking/generated_track.h | 4 +- src/fixel/filter/connect.cpp | 6 +- src/fixel/filter/smooth.h | 2 +- src/fixel/index_remapper.h | 4 +- src/fixel/matrix.h | 16 ++--- src/gui/dialog/dicom.cpp | 4 +- src/gui/dialog/dicom.h | 2 +- src/gui/dialog/file.cpp | 4 +- src/gui/dialog/file.h | 10 ++-- src/gui/dwi/renderer.cpp | 6 +- src/gui/dwi/renderer.h | 2 +- src/gui/mrview/colourmap_button.h | 6 +- src/gui/mrview/gui_image.cpp | 6 +- src/gui/mrview/gui_image.h | 6 +- src/gui/mrview/mode/ortho.h | 2 +- src/gui/mrview/mode/volume.cpp | 14 ++--- src/gui/mrview/mode/volume.h | 6 +- .../mrview/sync/interprocesscommunicator.cpp | 8 +-- .../mrview/sync/interprocesscommunicator.h | 16 ++--- src/gui/mrview/sync/localsocketreader.cpp | 2 +- src/gui/mrview/sync/localsocketreader.h | 2 +- src/gui/mrview/sync/syncmanager.cpp | 6 +- src/gui/mrview/sync/syncmanager.h | 2 +- src/gui/mrview/tool/connectome/connectome.cpp | 22 +++---- src/gui/mrview/tool/connectome/connectome.h | 8 +-- src/gui/mrview/tool/connectome/edge.cpp | 17 +++--- src/gui/mrview/tool/connectome/edge.h | 2 +- .../mrview/tool/connectome/matrix_list.cpp | 2 +- src/gui/mrview/tool/connectome/matrix_list.h | 4 +- src/gui/mrview/tool/connectome/node.cpp | 6 +- src/gui/mrview/tool/connectome/node_list.cpp | 4 +- .../mrview/tool/connectome/node_overlay.cpp | 2 +- src/gui/mrview/tool/fixel/base_fixel.cpp | 2 +- src/gui/mrview/tool/fixel/base_fixel.h | 28 ++++----- src/gui/mrview/tool/fixel/fixel.cpp | 10 ++-- src/gui/mrview/tool/fixel/fixel.h | 2 +- src/gui/mrview/tool/fixel/image4D.cpp | 4 +- src/gui/mrview/tool/fixel/vector_structs.h | 2 +- src/gui/mrview/tool/list_model_base.h | 4 +- src/gui/mrview/tool/odf/item.cpp | 4 +- src/gui/mrview/tool/odf/model.cpp | 4 +- src/gui/mrview/tool/odf/model.h | 4 +- src/gui/mrview/tool/odf/odf.cpp | 15 ++--- src/gui/mrview/tool/odf/odf.h | 2 +- src/gui/mrview/tool/overlay.cpp | 15 ++--- src/gui/mrview/tool/overlay.h | 2 +- src/gui/mrview/tool/roi_editor/item.cpp | 4 +- src/gui/mrview/tool/roi_editor/item.h | 2 +- src/gui/mrview/tool/roi_editor/model.cpp | 2 +- src/gui/mrview/tool/roi_editor/model.h | 2 +- src/gui/mrview/tool/roi_editor/roi.cpp | 12 ++-- src/gui/mrview/tool/roi_editor/roi.h | 2 +- src/gui/mrview/tool/roi_editor/undoentry.cpp | 2 +- src/gui/mrview/tool/roi_editor/undoentry.h | 2 +- .../mrview/tool/tractography/tractogram.cpp | 32 +++++----- src/gui/mrview/tool/tractography/tractogram.h | 34 ++++++----- .../mrview/tool/tractography/tractography.cpp | 16 ++--- .../mrview/tool/tractography/tractography.h | 4 +- src/gui/mrview/tool/view.cpp | 26 +++++---- src/gui/mrview/tool/view.h | 8 +-- src/gui/mrview/window.cpp | 28 ++++----- src/gui/mrview/window.h | 4 +- src/gui/projection.cpp | 2 +- src/gui/shapes/cylinder.cpp | 4 +- src/gui/shapes/halfsphere.cpp | 4 +- src/gui/shapes/halfsphere.h | 2 +- src/gui/shapes/sphere.cpp | 4 +- src/gui/shapes/sphere.h | 2 +- src/min_mem_array.h | 4 +- src/registration/linear.cpp | 4 +- src/registration/linear.h | 24 ++++---- src/registration/metric/cc_helper.h | 2 +- src/registration/metric/demons4D.h | 4 +- src/registration/metric/evaluate.h | 2 +- .../metric/local_cross_correlation.h | 6 +- src/registration/metric/params.h | 16 ++--- src/registration/metric/thread_kernel.h | 4 +- src/registration/multi_contrast.cpp | 8 ++- src/registration/multi_contrast.h | 8 ++- src/registration/multi_resolution_lmax.h | 14 ++--- src/registration/nonlinear.h | 24 ++++---- src/registration/transform/affine.cpp | 2 +- src/registration/transform/affine.h | 2 +- src/registration/transform/base.h | 2 +- src/registration/transform/initialiser.cpp | 8 +-- src/registration/transform/initialiser.h | 10 ++-- .../transform/initialiser_helpers.cpp | 20 +++---- .../transform/initialiser_helpers.h | 6 +- src/registration/transform/reorient.h | 30 +++++----- src/registration/transform/rigid.cpp | 2 +- src/registration/transform/rigid.h | 2 +- src/registration/transform/search.h | 12 ++-- src/registration/warp/compose.h | 4 +- src/stats/cfe.cpp | 6 +- src/stats/cfe.h | 2 +- src/stats/cluster.cpp | 4 +- src/surface/algo/image2mesh.h | 2 +- src/surface/algo/mesh2image.cpp | 26 ++++----- src/surface/filter/smooth.cpp | 14 ++--- src/surface/filter/vertex_transform.cpp | 2 +- src/surface/freesurfer.cpp | 2 +- src/surface/mesh.cpp | 20 +++---- src/surface/mesh_multi.cpp | 10 ++-- src/surface/mesh_multi.h | 4 +- src/surface/types.h | 6 +- testing/tools/testing_diff_tck.cpp | 4 +- testing/tools/testing_gen_data.cpp | 2 +- testing/tools/testing_unit_tests_npyread.cpp | 2 +- testing/unit_tests/bitset.cpp | 2 +- testing/unit_tests/parse_ints.cpp | 2 +- testing/unit_tests/shuffle.cpp | 8 +-- testing/unit_tests/to.cpp | 14 ++--- 358 files changed, 1519 insertions(+), 1507 deletions(-) diff --git a/cmd/afdconnectivity.cpp b/cmd/afdconnectivity.cpp index 1af66e22a8..471d414ff1 100644 --- a/cmd/afdconnectivity.cpp +++ b/cmd/afdconnectivity.cpp @@ -215,7 +215,7 @@ value_type AFDConnectivity::get(const std::string &path) { if (all_fixels) { // All fixels contribute to the result - for (vector::const_iterator i = fixels.begin(); i != fixels.end(); ++i) { + for (std::vector::const_iterator i = fixels.begin(); i != fixels.end(); ++i) { if (i->is_selected()) sum_volumes += i->get_FOD(); } diff --git a/cmd/amp2response.cpp b/cmd/amp2response.cpp index 03b1dab897..57eb4aab46 100644 --- a/cmd/amp2response.cpp +++ b/cmd/amp2response.cpp @@ -101,8 +101,8 @@ Eigen::Matrix gen_rotation_matrix(const Eigen::Vector3d &dir return R; } -vector all_volumes(const size_t num) { - vector result(num); +std::vector all_volumes(const size_t num) { + std::vector result(num); for (size_t i = 0; i != num; ++i) result[i] = i; return result; @@ -112,7 +112,7 @@ class Accumulator { public: class Shared { public: - Shared(int lmax, const vector &volumes, const Eigen::MatrixXd &dirs) + Shared(int lmax, const std::vector &volumes, const Eigen::MatrixXd &dirs) : lmax(lmax), dirs(dirs), volumes(volumes), @@ -122,7 +122,7 @@ class Accumulator { const int lmax; const Eigen::MatrixXd &dirs; - const vector &volumes; + const std::vector &volumes; Eigen::MatrixXd M; Eigen::VectorXd b; size_t count; @@ -196,8 +196,8 @@ void run() { auto header = Header::open(argument[0]); // May be dealing with multiple shells - vector dirs_azel; - vector> volumes; + std::vector dirs_azel; + std::vector> volumes; std::unique_ptr shells; auto opt = get_options("directions"); @@ -207,7 +207,7 @@ void run() { } else { auto hit = header.keyval().find("directions"); if (hit != header.keyval().end()) { - vector dir_vector; + std::vector dir_vector; for (auto line : split_lines(hit->second)) { auto v = parse_floats(line); dir_vector.insert(dir_vector.end(), v.begin(), v.end()); @@ -230,7 +230,7 @@ void run() { } } - vector lmax; + std::vector lmax; uint32_t max_lmax = 0; opt = get_options("lmax"); if (get_options("isotropic").size()) { diff --git a/cmd/amp2sh.cpp b/cmd/amp2sh.cpp index 2a2cb0de05..9f8024a320 100644 --- a/cmd/amp2sh.cpp +++ b/cmd/amp2sh.cpp @@ -81,14 +81,14 @@ class Amp2SHCommon { public: template Amp2SHCommon(const MatrixType &sh2amp, - const vector &bzeros, - const vector &dwis, + const std::vector &bzeros, + const std::vector &dwis, bool normalise_to_bzero) : sh2amp(sh2amp), amp2sh(Math::pinv(sh2amp)), bzeros(bzeros), dwis(dwis), normalise(normalise_to_bzero) {} Eigen::MatrixXd sh2amp, amp2sh; - const vector &bzeros; - const vector &dwis; + const std::vector &bzeros; + const std::vector &dwis; bool normalise; }; @@ -175,7 +175,7 @@ void run() { auto amp = Image::open(argument[0]).with_direct_io(3); Header header(amp); - vector bzeros, dwis; + std::vector bzeros, dwis; Eigen::MatrixXd dirs; auto opt = get_options("directions"); if (opt.size()) { @@ -185,7 +185,7 @@ void run() { } else { auto hit = header.keyval().find("directions"); if (hit != header.keyval().end()) { - vector dir_vector; + std::vector dir_vector; for (auto line : split_lines(hit->second)) { auto v = parse_floats(line); dir_vector.insert(dir_vector.end(), v.begin(), v.end()); diff --git a/cmd/connectome2tck.cpp b/cmd/connectome2tck.cpp index 9ff1b0255b..f9df163022 100644 --- a/cmd/connectome2tck.cpp +++ b/cmd/connectome2tck.cpp @@ -158,9 +158,9 @@ void run() { Tractography::Properties properties; Tractography::Reader reader(argument[0], properties); - vector> assignments_lists; + std::vector> assignments_lists; assignments_lists.reserve(to(properties["count"])); - vector assignments_pairs; + std::vector assignments_pairs; bool nonpair_found = false; node_t max_node_index = 0; { @@ -172,7 +172,7 @@ void run() { if (line.empty()) continue; std::stringstream line_stream(line); - vector nodes; + std::vector nodes; while (1) { node_t n; line_stream >> n; @@ -216,7 +216,7 @@ void run() { const bool keep_self = get_options("keep_self").size(); // Get the list of nodes of interest - vector nodes; + std::vector nodes; opt = get_options("nodes"); bool manual_node_list = false; if (opt.size()) { @@ -256,8 +256,8 @@ void run() { // Load the node image, get the centres of mass // Generate exemplars - these can _only_ be done per edge, and requires a mutex per edge to multi-thread auto image = Image::open(opt[0][0]); - vector COMs(max_node_index + 1, Eigen::Vector3f(0.0f, 0.0f, 0.0f)); - vector volumes(max_node_index + 1, 0); + std::vector COMs(max_node_index + 1, Eigen::Vector3f(0.0f, 0.0f, 0.0f)); + std::vector volumes(max_node_index + 1, 0); for (auto i = Loop()(image); i; ++i) { const node_t index = image.value(); if (index) { @@ -344,7 +344,7 @@ void run() { } else { // For each node in the list, write one file for an exemplar to every other node ProgressBar progress("writing exemplars to files", nodes.size() * COMs.size()); - for (vector::const_iterator n = nodes.begin(); n != nodes.end(); ++n) { + for (std::vector::const_iterator n = nodes.begin(); n != nodes.end(); ++n) { for (size_t i = first_node; i != COMs.size(); ++i) { generator.write(*n, i, @@ -356,7 +356,7 @@ void run() { } } else if (file_format == 1) { // One file per node ProgressBar progress("writing exemplars to files", nodes.size()); - for (vector::const_iterator n = nodes.begin(); n != nodes.end(); ++n) { + for (std::vector::const_iterator n = nodes.begin(); n != nodes.end(); ++n) { generator.write( *n, prefix + str(*n) + ".tck", weights_prefix.size() ? (weights_prefix + str(*n) + ".csv") : ""); ++progress; @@ -399,7 +399,7 @@ void run() { INFO("A total of " + str(writer.file_count()) + " output track files will be generated (one for each edge)"); break; case 1: // One file per node - for (vector::const_iterator i = nodes.begin(); i != nodes.end(); ++i) + for (std::vector::const_iterator i = nodes.begin(); i != nodes.end(); ++i) writer.add(*i, prefix + str(*i) + ".tck", weights_prefix.size() ? (weights_prefix + str(*i) + ".csv") : ""); INFO("A total of " + str(writer.file_count()) + " output track files will be generated (one for each node)"); break; diff --git a/cmd/connectomestats.cpp b/cmd/connectomestats.cpp index e9c415e7c5..d6315061aa 100644 --- a/cmd/connectomestats.cpp +++ b/cmd/connectomestats.cpp @@ -210,7 +210,7 @@ void run() { // Before validating the contrast matrix, we first need to see if there are any // additional design matrix columns coming from edge-wise subject data - vector extra_columns; + std::vector extra_columns; bool nans_in_columns = false; auto opt = get_options("column"); for (size_t i = 0; i != opt.size(); ++i) { @@ -236,7 +236,7 @@ void run() { CONSOLE("Number of variance groups: " + str(num_vgs)); // Load hypotheses - const vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[3]); + const std::vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[3]); const index_type num_hypotheses = hypotheses.size(); if (hypotheses[0].cols() != num_factors) throw Exception( diff --git a/cmd/dcmedit.cpp b/cmd/dcmedit.cpp index 3603bf9cd5..ef433af6cc 100644 --- a/cmd/dcmedit.cpp +++ b/cmd/dcmedit.cpp @@ -82,8 +82,8 @@ inline uint16_t read_hex(const std::string &m) { } void run() { - vector tags; - vector VRs; + std::vector tags; + std::vector VRs; auto opt = get_options("anonymise"); if (opt.size()) { diff --git a/cmd/dcminfo.cpp b/cmd/dcminfo.cpp index 457556f0ff..4326d11cd9 100644 --- a/cmd/dcminfo.cpp +++ b/cmd/dcminfo.cpp @@ -62,7 +62,7 @@ void run() { if (opt.size()) { std::istringstream hex; - vector tags(opt.size()); + std::vector tags(opt.size()); for (size_t n = 0; n < opt.size(); ++n) { tags[n].group = read_hex(opt[n][0]); tags[n].element = read_hex(opt[n][1]); diff --git a/cmd/dirflip.cpp b/cmd/dirflip.cpp index e1fd1e1083..924136be5c 100644 --- a/cmd/dirflip.cpp +++ b/cmd/dirflip.cpp @@ -61,7 +61,7 @@ class Shared { best_signs(directions.rows(), 1), best_eddy(std::numeric_limits::max()) {} - bool update(value_type eddy, const vector &signs) { + bool update(value_type eddy, const std::vector &signs) { std::lock_guard lock(mutex); if (eddy < best_eddy) { best_eddy = eddy; @@ -74,7 +74,7 @@ class Shared { return num_permutations < target_num_permutations; } - value_type eddy(size_t i, size_t j, const vector &signs) const { + value_type eddy(size_t i, size_t j, const std::vector &signs) const { vector3_type a = {directions(i, 0), directions(i, 1), directions(i, 2)}; vector3_type b = {directions(j, 0), directions(j, 1), directions(j, 2)}; if (signs[i] < 0) @@ -84,15 +84,15 @@ class Shared { return 1.0 / (a - b).norm(); } - vector get_init_signs() const { return vector(directions.rows(), 1); } - const vector &get_best_signs() const { return best_signs; } + std::vector get_init_signs() const { return std::vector(directions.rows(), 1); } + const std::vector &get_best_signs() const { return best_signs; } protected: const Eigen::MatrixXd &directions; const size_t target_num_permutations; size_t num_permutations; ProgressBar progress; - vector best_signs; + std::vector best_signs; value_type best_eddy; std::mutex mutex; }; @@ -121,7 +121,7 @@ class Processor { protected: Shared &shared; - vector signs; + std::vector signs; Math::RNG rng; std::uniform_int_distribution uniform; }; @@ -131,7 +131,7 @@ void run() { size_t num_permutations = get_option_value("permutations", default_permutations); - vector signs; + std::vector signs; { Shared eddy_shared(directions, num_permutations); Thread::run(Thread::multi(Processor(eddy_shared)), "eval thread"); diff --git a/cmd/dirmerge.cpp b/cmd/dirmerge.cpp index 770d15076d..c00bfebcfb 100644 --- a/cmd/dirmerge.cpp +++ b/cmd/dirmerge.cpp @@ -50,7 +50,7 @@ void usage() { using value_type = double; using Direction = Eigen::Matrix; -using DirectionSet = vector; +using DirectionSet = std::vector; struct OutDir { Direction d; @@ -68,8 +68,8 @@ void run() { value_type unipolar_weight = App::get_option_value("unipolar_weight", 0.2); value_type bipolar_weight = 1.0 - unipolar_weight; - vector> dirs; - vector bvalue((argument.size() - 2) / (1 + num_subsets)); + std::vector> dirs; + std::vector bvalue((argument.size() - 2) / (1 + num_subsets)); INFO("expecting " + str(bvalue.size()) + " b-values"); if (bvalue.size() * (1 + num_subsets) + 2 != argument.size()) throw Exception("inconsistent number of arguments"); @@ -78,7 +78,7 @@ void run() { size_t current = 1, nb = 0; while (current < argument.size() - 1) { bvalue[nb] = to(argument[current++]); - vector d; + std::vector d; for (size_t i = 0; i < num_subsets; ++i) { auto m = DWI::Directions::load_cartesian(argument[current++]); DirectionSet set; @@ -87,7 +87,7 @@ void run() { d.push_back(set); } INFO("found b = " + str(bvalue[nb]) + ", " + str([&] { - vector s; + std::vector s; for (auto &n : d) s.push_back(n.size()); return s; @@ -112,7 +112,7 @@ void run() { std::mt19937 rng(rd()); size_t first = std::uniform_int_distribution(0, dirs[0][0].size() - 1)(rng); - vector merged; + std::vector merged; auto push = [&](size_t b, size_t p, size_t n) { merged.push_back({Direction(dirs[b][p][n][0], dirs[b][p][n][1], dirs[b][p][n][2]), b, p}); @@ -149,7 +149,7 @@ void run() { return best; }; - vector fraction; + std::vector fraction; for (auto &d : dirs) { size_t n = 0; for (auto &m : d) @@ -159,7 +159,7 @@ void run() { push(0, 0, first); - vector counts(bvalue.size(), 0); + std::vector counts(bvalue.size(), 0); ++counts[0]; auto num_for_b = [&](size_t b) { diff --git a/cmd/dirorder.cpp b/cmd/dirorder.cpp index 8787447b21..99405bd1ae 100644 --- a/cmd/dirorder.cpp +++ b/cmd/dirorder.cpp @@ -47,9 +47,9 @@ void usage() { using value_type = double; -vector optimise(const Eigen::MatrixXd &directions, const size_t first_volume) { - vector indices(1, first_volume); - vector remaining; +std::vector optimise(const Eigen::MatrixXd &directions, const size_t first_volume) { + std::vector indices(1, first_volume); + std::vector remaining; for (size_t n = 0; n < size_t(directions.rows()); ++n) if (n != indices[0]) remaining.push_back(n); @@ -79,7 +79,7 @@ vector optimise(const Eigen::MatrixXd &directions, const size_t first_vo return indices; } -value_type calc_cost(const Eigen::MatrixXd &directions, const vector &order) { +value_type calc_cost(const Eigen::MatrixXd &directions, const std::vector &order) { const size_t start = Math::SH::NforL(2); if (size_t(directions.rows()) <= start) return value_type(0); @@ -112,10 +112,10 @@ void run() { } value_type min_cost = std::numeric_limits::infinity(); - vector best_order; + std::vector best_order; ProgressBar progress("Determining best reordering", directions.rows()); for (size_t first_volume = 0; first_volume != last_candidate_first_volume; ++first_volume) { - const vector order = optimise(directions, first_volume); + const std::vector order = optimise(directions, first_volume); const value_type cost = calc_cost(directions, order); if (cost < min_cost) { min_cost = cost; diff --git a/cmd/dirsplit.cpp b/cmd/dirsplit.cpp index 11fa8eb31b..c84afc034a 100644 --- a/cmd/dirsplit.cpp +++ b/cmd/dirsplit.cpp @@ -60,7 +60,7 @@ class Shared { s = 0; } INFO("split " + str(directions.rows()) + " directions into subsets with " + str([&] { - vector c; + std::vector c; for (auto &x : subset) c.push_back(x.size()); return c; @@ -68,7 +68,7 @@ class Shared { " volumes"); } - bool update(value_type energy, const vector> &set) { + bool update(value_type energy, const std::vector> &set) { std::lock_guard lock(mutex); if (!progress) progress.reset(new ProgressBar("distributing directions", target_num_permutations)); @@ -88,13 +88,13 @@ class Shared { return 1.0 / (a - b).norm() + 1.0 / (a + b).norm(); } - const vector> &get_init_subset() const { return subset; } - const vector> &get_best_subset() const { return best_subset; } + const std::vector> &get_init_subset() const { return subset; } + const std::vector> &get_best_subset() const { return best_subset; } protected: const Eigen::MatrixXd &directions; std::mutex mutex; - vector> subset, best_subset; + std::vector> subset, best_subset; value_type best_energy; const size_t target_num_permutations; size_t num_permutations; @@ -141,7 +141,7 @@ class EnergyCalculator { protected: Shared &shared; - vector> subset; + std::vector> subset; Math::RNG rng; }; @@ -154,7 +154,7 @@ void run() { const size_t num_permutations = get_option_value("permutations", default_permutations); - vector> best; + std::vector> best; { Shared shared(directions, num_subsets, num_permutations); Thread::run(Thread::multi(EnergyCalculator(shared)), "energy eval thread"); diff --git a/cmd/dirstat.cpp b/cmd/dirstat.cpp index c7c571196d..712b58cbd5 100644 --- a/cmd/dirstat.cpp +++ b/cmd/dirstat.cpp @@ -127,7 +127,7 @@ void run() { report(argument[0], directions); } -vector summarise_NN(const vector &NN) { +std::vector summarise_NN(const std::vector &NN) { double NN_min = std::numeric_limits::max(); double NN_mean = 0.0; double NN_max = 0.0; @@ -142,7 +142,7 @@ vector summarise_NN(const vector &NN) { return {NN_mean, NN_min, NN_max}; } -vector summarise_E(const vector &E) { +std::vector summarise_E(const std::vector &E) { double E_min = std::numeric_limits::max(); double E_total = 0.0; double E_max = 0.0; @@ -157,7 +157,7 @@ vector summarise_E(const vector &E) { class Metrics { public: - vector BN, UN, BE, UE, SH; + std::vector BN, UN, BE, UE, SH; default_type ASYM; size_t ndirs; }; @@ -167,11 +167,11 @@ Metrics compute(Eigen::MatrixXd &directions) { throw Exception("unexpected matrix size for scheme \"" + str(argument[0]) + "\""); Math::Sphere::normalise_cartesian(directions); - vector NN_bipolar(directions.rows(), -1.0); - vector NN_unipolar(directions.rows(), -1.0); + std::vector NN_bipolar(directions.rows(), -1.0); + std::vector NN_unipolar(directions.rows(), -1.0); - vector E_bipolar(directions.rows(), 0.0); - vector E_unipolar(directions.rows(), 0.0); + std::vector E_bipolar(directions.rows(), 0.0); + std::vector E_unipolar(directions.rows(), 0.0); for (ssize_t i = 0; i < directions.rows() - 1; ++i) { for (ssize_t j = i + 1; j < directions.rows(); ++j) { diff --git a/cmd/dwi2fod.cpp b/cmd/dwi2fod.cpp index 9534d5d5b1..8d6581ee95 100644 --- a/cmd/dwi2fod.cpp +++ b/cmd/dwi2fod.cpp @@ -163,7 +163,7 @@ class MSMT_Processor { public: MSMT_Processor(const DWI::SDeconv::MSMT_CSD::Shared &shared, Image &mask_image, - vector> odf_images, + std::vector> odf_images, Image dwi_modelled = Image()) : sdeconv(shared), mask_image(mask_image), @@ -204,7 +204,7 @@ class MSMT_Processor { private: DWI::SDeconv::MSMT_CSD sdeconv; Image mask_image; - vector> odf_images; + std::vector> odf_images; Image modelled_image; Eigen::VectorXd dwi_data; Eigen::VectorXd output_data; @@ -262,8 +262,8 @@ void run() { shared.parse_cmdline_options(); const size_t num_tissues = (argument.size() - 2) / 2; - vector response_paths; - vector odf_paths; + std::vector response_paths; + std::vector odf_paths; for (size_t i = 0; i < num_tissues; ++i) { response_paths.push_back(argument[i * 2 + 2]); odf_paths.push_back(argument[i * 2 + 3]); @@ -280,7 +280,7 @@ void run() { DWI::stash_DW_scheme(header_out, shared.grad); - vector> odfs; + std::vector> odfs; for (size_t i = 0; i < num_tissues; ++i) { header_out.size(3) = Math::SH::NforL(shared.lmax[i]); odfs.push_back(Image(Image::create(odf_paths[i], header_out))); diff --git a/cmd/dwidenoise.cpp b/cmd/dwidenoise.cpp index 3d3a4c0791..1ba660f2aa 100644 --- a/cmd/dwidenoise.cpp +++ b/cmd/dwidenoise.cpp @@ -134,7 +134,7 @@ template class DenoisingFunctor { using SValsType = Eigen::VectorXd; DenoisingFunctor(int ndwi, - const vector &extent, + const std::vector &extent, Image &mask, Image &noise, Image &rank, @@ -273,7 +273,7 @@ void process_image(Header &data, Image &noise, Image &rank, const std::string &output_name, - const vector &extent, + const std::vector &extent, bool exp1) { auto input = data.get_image().with_direct_io(3); // create output @@ -299,7 +299,7 @@ void run() { } opt = get_options("extent"); - vector extent; + std::vector extent; if (opt.size()) { extent = parse_ints(opt[0][0]); if (extent.size() == 1) diff --git a/cmd/dwiextract.cpp b/cmd/dwiextract.cpp index 2517dee799..d1c15478b3 100644 --- a/cmd/dwiextract.cpp +++ b/cmd/dwiextract.cpp @@ -65,7 +65,7 @@ void run() { // Want to support non-shell-like data if it's just a straight extraction // of all dwis or all bzeros i.e. don't initialise the Shells class - vector volumes; + std::vector volumes; bool bzero = get_options("bzero").size(); if (get_options("shells").size() || get_options("singleshell").size()) { DWI::Shells shells(grad); @@ -101,7 +101,7 @@ void run() { const auto filter = parse_floats(opt[0][0]); if (!(filter.size() == 3 || filter.size() == 4)) throw Exception("Phase encoding filter must be a comma-separated list of either 3 or 4 numbers"); - vector new_volumes; + std::vector new_volumes; for (const auto i : volumes) { bool keep = true; for (size_t axis = 0; axis != 3; ++axis) { diff --git a/cmd/fixel2sh.cpp b/cmd/fixel2sh.cpp index ad9240b2ef..741a7c149b 100644 --- a/cmd/fixel2sh.cpp +++ b/cmd/fixel2sh.cpp @@ -77,7 +77,7 @@ void run() { out_header.size(3) = n_sh_coeff; auto sh_image = Image::create(argument[1], out_header); - vector sh_values; + std::vector sh_values; Eigen::Matrix apsf_values; for (auto l1 = Loop("converting fixel image to spherical harmonic image", in_index_image)(in_index_image, sh_image); diff --git a/cmd/fixelcfestats.cpp b/cmd/fixelcfestats.cpp index dbfce56e5b..f88212acb9 100644 --- a/cmd/fixelcfestats.cpp +++ b/cmd/fixelcfestats.cpp @@ -251,7 +251,7 @@ void run() { // Before validating the contrast matrix, we first need to see if there are any // additional design matrix columns coming from fixel-wise subject data - vector extra_columns; + std::vector extra_columns; bool nans_in_columns = false; opt = get_options("column"); for (size_t i = 0; i != opt.size(); ++i) { @@ -292,7 +292,7 @@ void run() { CONSOLE("Number of variance groups: " + str(num_vgs)); // Load hypotheses - const vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[3]); + const std::vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[3]); const Math::Stats::index_type num_hypotheses = hypotheses.size(); if (hypotheses[0].cols() != num_factors) throw Exception( diff --git a/cmd/fixelconvert.cpp b/cmd/fixelconvert.cpp index cd105c7905..ebb1e7d79d 100644 --- a/cmd/fixelconvert.cpp +++ b/cmd/fixelconvert.cpp @@ -204,7 +204,7 @@ void convert_new2old() { Header H_index = Fixel::find_index_header(input_fixel_directory); Header H_dirs = Fixel::find_directions_header(input_fixel_directory); - vector
H_data = Fixel::find_data_headers(input_fixel_directory, H_index, false); + std::vector
H_data = Fixel::find_data_headers(input_fixel_directory, H_index, false); size_t size_index = H_data.size(), value_index = H_data.size(); for (size_t i = 0; i != H_data.size(); ++i) { diff --git a/cmd/fixelcrop.cpp b/cmd/fixelcrop.cpp index af9c346e0b..09d75344b1 100644 --- a/cmd/fixelcrop.cpp +++ b/cmd/fixelcrop.cpp @@ -77,9 +77,9 @@ void run() { Image::create(Path::join(out_fixel_directory, Path::basename(in_index_image.name())), out_header); // Open all data images and create output date images with size equal to expected number of fixels - vector
in_headers = Fixel::find_data_headers(in_directory, in_index_header, true); - vector> in_data_images; - vector> out_data_images; + std::vector
in_headers = Fixel::find_data_headers(in_directory, in_index_header, true); + std::vector> in_data_images; + std::vector> out_data_images; for (auto &in_data_header : in_headers) { in_data_images.push_back(in_data_header.get_image().with_direct_io()); check_dimensions(in_data_images.back(), mask_image, {0, 2}); diff --git a/cmd/fixelfilter.cpp b/cmd/fixelfilter.cpp index 16e673fde2..3b442c5a96 100644 --- a/cmd/fixelfilter.cpp +++ b/cmd/fixelfilter.cpp @@ -91,7 +91,7 @@ void run() { std::set option_list{"threhsold_value", "threshold_connectivity", "fwhm", "minweight", "mask"}; Image single_file; - vector
multiple_files; + std::vector
multiple_files; std::unique_ptr filter; { diff --git a/cmd/fod2fixel.cpp b/cmd/fod2fixel.cpp index 7900e7c64e..3edcd1d08d 100644 --- a/cmd/fod2fixel.cpp +++ b/cmd/fod2fixel.cpp @@ -125,7 +125,7 @@ class Segmented_FOD_receiver { : dir(dir), integral(integral), max_peak_amp(max_peak_amp) {} }; - class Primitive_FOD_lobes : public vector { + class Primitive_FOD_lobes : public std::vector { public: Primitive_FOD_lobes(const FOD_lobes &in, const index_type maxcount, bool dir_from_peak) : vox(in.vox) { const index_type N = maxcount ? std::min(index_type(in.size()), maxcount) : in.size(); @@ -142,7 +142,7 @@ class Segmented_FOD_receiver { Header H; std::string fixel_directory_path, index_path, dir_path, afd_path, peak_amp_path, disp_path; - vector lobes; + std::vector lobes; index_type fixel_count; index_type max_per_voxel; bool dir_from_peak; diff --git a/cmd/label2mesh.cpp b/cmd/label2mesh.cpp index b98a98756f..a843ecc132 100644 --- a/cmd/label2mesh.cpp +++ b/cmd/label2mesh.cpp @@ -60,7 +60,7 @@ void run() { using voxel_corner_t = Eigen::Array; - vector lower_corners, upper_corners; + std::vector lower_corners, upper_corners; { for (auto i = Loop("Importing label image", labels)(labels); i; ++i) { const uint32_t index = labels.value(); @@ -83,7 +83,7 @@ void run() { meshes[0].set_name("none"); const bool blocky = get_options("blocky").size(); - vector missing_nodes; + std::vector missing_nodes; for (uint32_t i = 1; i != upper_corners.size(); ++i) { if (upper_corners[i][0] < 0) missing_nodes.push_back(i); @@ -105,7 +105,7 @@ void run() { auto worker = [&](const size_t &in) { meshes[in].set_name(str(in)); - vector from, dimensions; + std::vector from, dimensions; for (size_t axis = 0; axis != 3; ++axis) { from.push_back(lower_corners[in][axis]); dimensions.push_back(upper_corners[in][axis] - lower_corners[in][axis] + 1); diff --git a/cmd/labelstats.cpp b/cmd/labelstats.cpp index b4f6533ebb..c552976799 100644 --- a/cmd/labelstats.cpp +++ b/cmd/labelstats.cpp @@ -96,7 +96,7 @@ void run() { Eigen::IOFormat fmt(Eigen::StreamPrecision, 0, ", ", "\n", "[ ", " ]", "", ""); std::stringstream com_stringstream; com_stringstream << coms.format(fmt); - const vector com_strings = split(com_stringstream.str(), "\n"); + const std::vector com_strings = split(com_stringstream.str(), "\n"); assert(com_strings.size() == size_t(masses.size())); // Find width of first non-empty string, in order to centralise header label diff --git a/cmd/maskdump.cpp b/cmd/maskdump.cpp index 761cd914c1..4ca47bac04 100644 --- a/cmd/maskdump.cpp +++ b/cmd/maskdump.cpp @@ -41,7 +41,7 @@ void run() { if (H.datatype() != DataType::Bit) WARN("Input is not a genuine boolean mask image"); auto in = H.get_image(); - vector locations; + std::vector locations; for (auto l = Loop(in)(in); l; ++l) { if (in.value()) { Eigen::ArrayXi this_voxel(in.ndim()); diff --git a/cmd/maskfilter.cpp b/cmd/maskfilter.cpp index 53693bd9bc..d090a70f43 100644 --- a/cmd/maskfilter.cpp +++ b/cmd/maskfilter.cpp @@ -125,7 +125,7 @@ void run() { input_image, std::string("applying connected-component filter to image ") + Path::basename(argument[0])); auto opt = get_options("axes"); if (opt.size()) { - const vector axes = opt[0][0]; + const std::vector axes = opt[0][0]; filter.set_axes(axes); } bool largest_only = false; @@ -188,7 +188,7 @@ void run() { Filter::Fill filter(input_image, std::string("filling interior of image ") + Path::basename(argument[0])); auto opt = get_options("axes"); if (opt.size()) { - const vector axes = opt[0][0]; + const std::vector axes = opt[0][0]; filter.set_axes(axes); } opt = get_options("connectivity"); diff --git a/cmd/mraverageheader.cpp b/cmd/mraverageheader.cpp index 27722cb921..c184ac00cb 100644 --- a/cmd/mraverageheader.cpp +++ b/cmd/mraverageheader.cpp @@ -66,7 +66,7 @@ void run() { bool fill = get_options("fill").size(); - vector
headers_in; + std::vector
headers_in; size_t dim(Header::open(argument[0]).ndim()); if (dim < 3 or dim > 4) throw Exception("Please provide 3D or 4D images"); @@ -82,7 +82,7 @@ void run() { } } - vector> transform_header_with; + std::vector> transform_header_with; auto H = compute_minimum_average_header(headers_in, transform_header_with, resolution, padding); H.datatype() = DataType::Bit; if (fill) { diff --git a/cmd/mrcalc.cpp b/cmd/mrcalc.cpp index 84b16798f7..d6c19aeb59 100644 --- a/cmd/mrcalc.cpp +++ b/cmd/mrcalc.cpp @@ -406,7 +406,7 @@ void usage() { class Evaluator; -class Chunk : public vector { +class Chunk : public std::vector { public: complex_type value; }; @@ -417,7 +417,7 @@ class ThreadLocalStorageItem { copy_ptr> image; }; -class ThreadLocalStorage : public vector { +class ThreadLocalStorage : public std::vector { public: void load(Chunk &chunk, Image &image) { for (size_t n = 0; n < image.ndim(); ++n) @@ -451,7 +451,7 @@ class ThreadLocalStorage : public vector { } const Iterator *iter; - vector axes, size; + std::vector axes, size; private: size_t current; @@ -547,7 +547,7 @@ class Evaluator { const std::string id; const char *format; bool ZtoR, RtoZ; - vector operands; + std::vector operands; Chunk &evaluate(ThreadLocalStorage &storage) const { Chunk &in1(operands[0].evaluate(storage)); @@ -717,7 +717,7 @@ template class TernaryEvaluator : public Evaluator { }; template -void unary_operation(const std::string &operation_name, vector &stack, Operation operation) { +void unary_operation(const std::string &operation_name, std::vector &stack, Operation operation) { if (stack.empty()) throw Exception("no operand in stack for operation \"" + operation_name + "\"!"); StackEntry &a(stack[stack.size() - 1]); @@ -735,7 +735,7 @@ void unary_operation(const std::string &operation_name, vector &stac } template -void binary_operation(const std::string &operation_name, vector &stack, Operation operation) { +void binary_operation(const std::string &operation_name, std::vector &stack, Operation operation) { if (stack.size() < 2) throw Exception("not enough operands in stack for operation \"" + operation_name + "\""); StackEntry &a(stack[stack.size() - 2]); @@ -754,7 +754,7 @@ void binary_operation(const std::string &operation_name, vector &sta } template -void ternary_operation(const std::string &operation_name, vector &stack, Operation operation) { +void ternary_operation(const std::string &operation_name, std::vector &stack, Operation operation) { if (stack.size() < 3) throw Exception("not enough operands in stack for operation \"" + operation_name + "\""); StackEntry &a(stack[stack.size() - 3]); @@ -815,7 +815,9 @@ void get_header(const StackEntry &entry, Header &header) { class ThreadFunctor { public: - ThreadFunctor(const vector &inner_axes, const StackEntry &top_of_stack, Image &output_image) + ThreadFunctor(const std::vector &inner_axes, + const StackEntry &top_of_stack, + Image &output_image) : top_entry(top_of_stack), image(output_image), loop(Loop(inner_axes)) { storage.axes = loop.axes; storage.size.push_back(image.size(storage.axes[0])); @@ -855,12 +857,12 @@ class ThreadFunctor { const StackEntry &top_entry; Image image; - decltype(Loop(vector())) loop; + decltype(Loop(std::vector())) loop; ThreadLocalStorage storage; size_t chunk_size; }; -void run_operations(const vector &stack) { +void run_operations(const std::vector &stack) { Header header; get_header(stack[0], header); @@ -966,7 +968,7 @@ class OpTernary : public OpBase { **********************************************************************/ void run() { - vector stack; + std::vector stack; for (int n = 1; n < App::argc; ++n) { diff --git a/cmd/mrcat.cpp b/cmd/mrcat.cpp index 75fd79acc3..da8d7348ce 100644 --- a/cmd/mrcat.cpp +++ b/cmd/mrcat.cpp @@ -55,7 +55,7 @@ void usage() { + DataType::options(); } -template void write(vector
&in, const size_t axis, Header &header_out) { +template void write(std::vector
&in, const size_t axis, Header &header_out) { auto image_out = Image::create(header_out.name(), header_out); size_t axis_offset = 0; @@ -81,7 +81,7 @@ template void write(vector
&in, const size_t axis, void run() { size_t num_images = argument.size() - 1; - vector
headers; + std::vector
headers; ssize_t max_axis_nonunity = 0; for (size_t i = 0; i != num_images; ++i) { Header H = Header::open(argument[i]); diff --git a/cmd/mrclusterstats.cpp b/cmd/mrclusterstats.cpp index 4b55f712ac..cd85405b76 100644 --- a/cmd/mrclusterstats.cpp +++ b/cmd/mrclusterstats.cpp @@ -199,7 +199,7 @@ void run() { // Before validating the contrast matrix, we first need to see if there are any // additional design matrix columns coming from voxel-wise subject data // TODO Functionalise this - vector extra_columns; + std::vector extra_columns; bool nans_in_columns = false; auto opt = get_options("column"); for (size_t i = 0; i != opt.size(); ++i) { @@ -225,7 +225,7 @@ void run() { CONSOLE("Number of variance groups: " + str(num_vgs)); // Load hypotheses - const vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[2]); + const std::vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[2]); const index_type num_hypotheses = hypotheses.size(); if (hypotheses[0].cols() != num_factors) throw Exception( diff --git a/cmd/mrcolour.cpp b/cmd/mrcolour.cpp index f4f43a75bb..1b3dc5ee3f 100644 --- a/cmd/mrcolour.cpp +++ b/cmd/mrcolour.cpp @@ -29,8 +29,8 @@ using namespace MR; using namespace App; -vector colourmap_choices_std; -vector colourmap_choices_cstr; +std::vector colourmap_choices_std; +std::vector colourmap_choices_cstr; void usage() { diff --git a/cmd/mrconvert.cpp b/cmd/mrconvert.cpp index 9f1a4ebf48..c8bbd84306 100644 --- a/cmd/mrconvert.cpp +++ b/cmd/mrconvert.cpp @@ -211,7 +211,7 @@ void usage() { + PhaseEncoding::ImportOptions + PhaseEncoding::ExportOptions; } -void permute_DW_scheme(Header &H, const vector &axes) { +void permute_DW_scheme(Header &H, const std::vector &axes) { auto in = DWI::parse_DW_scheme(H); if (!in.rows()) return; @@ -231,7 +231,7 @@ void permute_DW_scheme(Header &H, const vector &axes) { DWI::set_DW_scheme(H, out); } -void permute_PE_scheme(Header &H, const vector &axes) { +void permute_PE_scheme(Header &H, const std::vector &axes) { auto in = PhaseEncoding::parse_scheme(H); if (!in.rows()) return; @@ -249,7 +249,7 @@ void permute_PE_scheme(Header &H, const vector &axes) { PhaseEncoding::set_scheme(H, out); } -void permute_slice_direction(Header &H, const vector &axes) { +void permute_slice_direction(Header &H, const std::vector &axes) { auto it = H.keyval().find("SliceEncodingDirection"); if (it == H.keyval().end()) return; @@ -258,7 +258,7 @@ void permute_slice_direction(Header &H, const vector &axes) { it->second = Axes::dir2id(new_dir); } -template inline vector set_header(Header &header, const ImageType &input) { +template inline std::vector set_header(Header &header, const ImageType &input) { header.ndim() = input.ndim(); for (size_t n = 0; n < header.ndim(); ++n) { header.size(n) = input.size(n); @@ -268,7 +268,7 @@ template inline vector set_header(Header &header, const I header.transform() = input.transform(); auto opt = get_options("axes"); - vector axes; + std::vector axes; if (opt.size()) { axes = parse_ints(opt[0][0]); header.ndim() = axes.size(); @@ -292,7 +292,7 @@ template inline vector set_header(Header &header, const I opt = get_options("vox"); if (opt.size()) { - vector vox = parse_floats(opt[0][0]); + std::vector vox = parse_floats(opt[0][0]); if (vox.size() > header.ndim()) throw Exception("too many axes supplied to -vox option"); if (vox.size() == 1) @@ -321,7 +321,7 @@ void copy_permute(const InputType &in, Header &header_out, const std::string &ou template void extract(Header &header_in, Header &header_out, - const vector> &pos, + const std::vector> &pos, const std::string &output_filename) { auto in = header_in.get_image(); if (pos.empty()) { @@ -402,9 +402,9 @@ void run() { } opt = get_options("coord"); - vector> pos; + std::vector> pos; if (opt.size()) { - pos.assign(header_in.ndim(), vector()); + pos.assign(header_in.ndim(), std::vector()); for (size_t n = 0; n < opt.size(); n++) { size_t axis = opt[n][0]; if (axis >= header_in.ndim()) @@ -466,7 +466,7 @@ void run() { opt = get_options("scaling"); if (opt.size()) { if (header_out.datatype().is_integer()) { - vector scaling = opt[0][0]; + std::vector scaling = opt[0][0]; if (scaling.size() != 2) throw Exception("-scaling option expects comma-separated 2-vector of floating-point values"); header_out.intensity_offset() = scaling[0]; diff --git a/cmd/mrdegibbs.cpp b/cmd/mrdegibbs.cpp index b306d67aac..ab4f82c3f9 100644 --- a/cmd/mrdegibbs.cpp +++ b/cmd/mrdegibbs.cpp @@ -102,12 +102,12 @@ void run() { int mode = get_option_value("mode", 0); - vector slice_axes = {0, 1}; + std::vector slice_axes = {0, 1}; auto opt = get_options("axes"); const bool axes_set_manually = opt.size(); if (opt.size()) { - vector axes = parse_ints(opt[0][0]); - if (axes == vector({0, 1, 2})) { + std::vector axes = parse_ints(opt[0][0]); + if (axes == std::vector({0, 1, 2})) { mode = 1; } else { if (axes.size() != 2) @@ -128,7 +128,7 @@ void run() { } else { try { const Eigen::Vector3d slice_encoding_axis_onehot = Axes::id2dir(slice_encoding_it->second); - vector auto_slice_axes = {0, 0}; + std::vector auto_slice_axes = {0, 0}; if (slice_encoding_axis_onehot[0]) auto_slice_axes = {1, 2}; else if (slice_encoding_axis_onehot[1]) @@ -170,7 +170,7 @@ void run() { } // build vector of outer axes: - vector outer_axes(header.ndim()); + std::vector outer_axes(header.ndim()); std::iota(outer_axes.begin(), outer_axes.end(), 0); for (const auto axis : slice_axes) { auto it = std::find(outer_axes.begin(), outer_axes.end(), axis); diff --git a/cmd/mredit.cpp b/cmd/mredit.cpp index 8e8dc3645a..f392428b5d 100644 --- a/cmd/mredit.cpp +++ b/cmd/mredit.cpp @@ -136,7 +136,7 @@ void run() { else centre_scannerspace = transform.voxel2scanner * centre_voxelspace; std::set processed; - vector to_expand; + std::vector to_expand; const Vox seed_voxel(centre_voxelspace); processed.insert(seed_voxel); to_expand.push_back(seed_voxel); diff --git a/cmd/mrfilter.cpp b/cmd/mrfilter.cpp index c76ed35024..a6ba0b8627 100644 --- a/cmd/mrfilter.cpp +++ b/cmd/mrfilter.cpp @@ -154,7 +154,7 @@ void run() { // convert between cfloat and cdouble... auto input = Image::open(argument[0]); - vector axes = {0, 1, 2}; + std::vector axes = {0, 1, 2}; auto opt = get_options("axes"); if (opt.size()) { axes = parse_ints(opt[0][0]); @@ -204,7 +204,7 @@ void run() { auto input = Image::open(argument[0]); Filter::Gradient filter(input, get_options("magnitude").size()); - vector stdev; + std::vector stdev; auto opt = get_options("stdev"); if (opt.size()) { stdev = parse_floats(opt[0][0]); @@ -258,7 +258,7 @@ void run() { if (opt.size()) { if (stdev_supplied) throw Exception("the stdev and FWHM options are mutually exclusive."); - vector stdevs = parse_floats((opt[0][0])); + std::vector stdevs = parse_floats((opt[0][0])); for (size_t d = 0; d < stdevs.size(); ++d) stdevs[d] = stdevs[d] / 2.3548; // convert FWHM to stdev filter.set_stdev(stdevs); diff --git a/cmd/mrgrid.cpp b/cmd/mrgrid.cpp index fe26c8c2fd..d6912c8e13 100644 --- a/cmd/mrgrid.cpp +++ b/cmd/mrgrid.cpp @@ -198,7 +198,7 @@ void run() { } // over-sampling - vector oversample = Adapter::AutoOverSample; + std::vector oversample = Adapter::AutoOverSample; opt = get_options("oversample"); if (opt.size()) { oversample = parse_ints(opt[0][0]); @@ -223,7 +223,7 @@ void run() { regrid_filter.set_interp_type(interp); regrid_filter.set_oversample(oversample); - vector scale; + std::vector scale; opt = get_options("scale"); if (opt.size()) { scale = parse_floats(opt[0][0]); @@ -233,7 +233,7 @@ void run() { ++resize_option_count; } - vector image_size; + std::vector image_size; opt = get_options("size"); if (opt.size()) { image_size = parse_ints(opt[0][0]); @@ -241,7 +241,7 @@ void run() { ++resize_option_count; } - vector voxel_size; + std::vector voxel_size; opt = get_options("voxel"); if (opt.size()) { voxel_size = parse_floats(opt[0][0]); @@ -278,7 +278,7 @@ void run() { const size_t nd = get_options("nd").size() ? input_header.ndim() : 3; - vector> bounds(input_header.ndim(), vector(2)); + std::vector> bounds(input_header.ndim(), std::vector(2)); for (size_t axis = 0; axis < input_header.ndim(); axis++) { bounds[axis][0] = 0; bounds[axis][1] = input_header.size(axis) - 1; @@ -301,9 +301,10 @@ void run() { } struct BoundsCheck { - vector> &overall_bounds; - vector> bounds; - BoundsCheck(vector> &overall_bounds) : overall_bounds(overall_bounds), bounds(overall_bounds) {} + std::vector> &overall_bounds; + std::vector> bounds; + BoundsCheck(std::vector> &overall_bounds) + : overall_bounds(overall_bounds), bounds(overall_bounds) {} ~BoundsCheck() { for (size_t axis = 0; axis != 3; ++axis) { overall_bounds[axis][0] = std::min(bounds[axis][0], overall_bounds[axis][0]); @@ -395,7 +396,7 @@ void run() { std::string::size_type start = 0, end; end = spec.find_first_of(":", start); if (end == std::string::npos) { // spec = delta_lower,delta_upper - vector delta; // 0: not changed, > 0: pad, < 0: crop + std::vector delta; // 0: not changed, > 0: pad, < 0: crop try { delta = parse_ints(opt[i][1]); } catch (Exception &E) { @@ -433,8 +434,8 @@ void run() { if (crop_pad_option_count == 0) throw Exception("no crop or pad option supplied"); - vector from(input_header.ndim()); - vector size(input_header.ndim()); + std::vector from(input_header.ndim()); + std::vector size(input_header.ndim()); for (size_t axis = 0; axis < input_header.ndim(); axis++) { from[axis] = bounds[axis][0]; size[axis] = bounds[axis][1] - from[axis] + 1; diff --git a/cmd/mrhistmatch.cpp b/cmd/mrhistmatch.cpp index 5e982b9b31..9f18e75505 100644 --- a/cmd/mrhistmatch.cpp +++ b/cmd/mrhistmatch.cpp @@ -66,12 +66,12 @@ void match_linear(Image &input, Image &mask_input, Image &mask_target, const bool estimate_intercept) { - vector input_data, target_data; + std::vector input_data, target_data; { ProgressBar progress("Loading & sorting image data", 4); auto fill = [](Image &image, Image &mask) { - vector data; + std::vector data; if (mask.valid()) { Adapter::Replicate> mask_replicate(mask, image); for (auto l = Loop(image)(image, mask_replicate); l; ++l) { diff --git a/cmd/mrinfo.cpp b/cmd/mrinfo.cpp index b6cc6f943c..88368dd018 100644 --- a/cmd/mrinfo.cpp +++ b/cmd/mrinfo.cpp @@ -124,7 +124,7 @@ void print_spacing(const Header &header) { void print_strides(const Header &header) { std::string buffer; - vector strides(Stride::get(header)); + std::vector strides(Stride::get(header)); Stride::symbolise(strides); for (size_t i = 0; i < header.ndim(); ++i) { if (i) @@ -189,15 +189,15 @@ void print_properties(const Header &header, const std::string &key, const size_t void header2json(const Header &header, nlohmann::json &json) { // Capture _all_ header fields, not just the optional key-value pairs json["name"] = header.name(); - vector size(header.ndim()); - vector spacing(header.ndim()); + std::vector size(header.ndim()); + std::vector spacing(header.ndim()); for (size_t axis = 0; axis != header.ndim(); ++axis) { size[axis] = header.size(axis); spacing[axis] = header.spacing(axis); } json["size"] = size; json["spacing"] = spacing; - vector strides(Stride::get(header)); + std::vector strides(Stride::get(header)); Stride::symbolise(strides); json["strides"] = strides; json["format"] = header.format(); diff --git a/cmd/mrmath.cpp b/cmd/mrmath.cpp index 7d261f6a82..94a1abd685 100644 --- a/cmd/mrmath.cpp +++ b/cmd/mrmath.cpp @@ -119,7 +119,7 @@ class Median { values.push_back(val); } value_type result() { return Math::median(values); } - vector values; + std::vector values; }; class Sum { @@ -400,7 +400,7 @@ void run() { throw Exception("mrmath requires either multiple input images, or the -axis option to be provided"); // Pre-load all image headers - vector
headers_in(num_inputs); + std::vector
headers_in(num_inputs); // Header of first input image is the template to which all other input images are compared headers_in[0] = Header::open(argument[0]); diff --git a/cmd/mrregister.cpp b/cmd/mrregister.cpp index bc219a7ba0..dfe49c0cb0 100644 --- a/cmd/mrregister.cpp +++ b/cmd/mrregister.cpp @@ -149,7 +149,7 @@ using value_type = double; void run() { - vector
input1, input2; + std::vector
input1, input2; const size_t n_images = argument.size() / 2; { // parse arguments and load input headers if (n_images * 2 != argument.size()) { @@ -244,7 +244,7 @@ void run() { } // multi-contrast settings - vector mc_params(n_images); + std::vector mc_params(n_images); for (auto &mc : mc_params) { mc.do_reorientation = do_reorientation; } @@ -308,7 +308,7 @@ void run() { INFO("maximum input lmax: " + str(max_mc_image_lmax)); opt = get_options("transformed"); - vector im1_transformed_paths; + std::vector im1_transformed_paths; if (opt.size()) { if (opt.size() > n_images) throw Exception("number of -transformed images exceeds number of contrasts"); @@ -321,8 +321,8 @@ void run() { } } - vector input1_midway_transformed_paths; - vector input2_midway_transformed_paths; + std::vector input1_midway_transformed_paths; + std::vector input2_midway_transformed_paths; opt = get_options("transformed_midway"); if (opt.size()) { if (opt.size() > n_images) @@ -481,7 +481,7 @@ void run() { } opt = get_options("rigid_lmax"); - vector rigid_lmax; + std::vector rigid_lmax; if (opt.size()) { if (!do_rigid) throw Exception("the -rigid_lmax option has been set when no rigid registration is requested"); @@ -632,7 +632,7 @@ void run() { } opt = get_options("affine_lmax"); - vector affine_lmax; + std::vector affine_lmax; if (opt.size()) { if (!do_affine) throw Exception("the -affine_lmax option has been set when no affine registration is requested"); @@ -746,7 +746,7 @@ void run() { if (!do_nonlinear) throw Exception( "the non-linear multi-resolution scale factors were input when no non-linear registration is requested"); - vector scale_factors = parse_floats(opt[0][0]); + std::vector scale_factors = parse_floats(opt[0][0]); if (nonlinear_init) { WARN("-nl_scale option ignored since only the full resolution will be performed when initialising with " "non-linear warp"); @@ -760,7 +760,7 @@ void run() { if (!do_nonlinear) throw Exception( "the number of non-linear iterations have been input when no non-linear registration is requested"); - vector iterations_per_level = parse_ints(opt[0][0]); + std::vector iterations_per_level = parse_ints(opt[0][0]); if (nonlinear_init && iterations_per_level.size() > 1) throw Exception("when initialising the non-linear registration the max number of iterations can only be defined " "for a single level"); @@ -792,7 +792,7 @@ void run() { } opt = get_options("nl_lmax"); - vector nl_lmax; + std::vector nl_lmax; if (opt.size()) { if (!do_nonlinear) throw Exception("the -nl_lmax option has been set when no non-linear registration is requested"); @@ -810,7 +810,7 @@ void run() { opt = get_options("mc_weights"); if (opt.size()) { - vector mc_weights = parse_floats(opt[0][0]); + std::vector mc_weights = parse_floats(opt[0][0]); if (mc_weights.size() == 1) mc_weights.resize(n_images, mc_weights[0]); else if (mc_weights.size() != n_images) @@ -914,7 +914,7 @@ void run() { } else { // 3D if (rigid_metric == Registration::NCC) { Registration::Metric::LocalCrossCorrelation metric; - vector extent(3, 3); + std::vector extent(3, 3); rigid_registration.set_extent(extent); rigid_registration.run_masked(metric, rigid, images1, images2, im1_mask, im2_mask); } else if (rigid_metric == Registration::Diff) { @@ -989,7 +989,7 @@ void run() { } else { // 3D if (affine_metric == Registration::NCC) { Registration::Metric::LocalCrossCorrelation metric; - vector extent(3, 3); + std::vector extent(3, 3); affine_registration.set_extent(extent); affine_registration.run_masked(metric, affine, images1, images2, im1_mask, im2_mask); } else if (affine_metric == Registration::Diff) { diff --git a/cmd/mrstats.cpp b/cmd/mrstats.cpp index 5ca87177dd..7e9daefb41 100644 --- a/cmd/mrstats.cpp +++ b/cmd/mrstats.cpp @@ -106,7 +106,7 @@ void run() { check_dimensions(mask, header, 0, 3); } - vector fields; + std::vector fields; opt = get_options("output"); for (size_t n = 0; n < opt.size(); ++n) fields.push_back(opt[n][0]); diff --git a/cmd/mrthreshold.cpp b/cmd/mrthreshold.cpp index 131c24b9cf..82bdb9b989 100644 --- a/cmd/mrthreshold.cpp +++ b/cmd/mrthreshold.cpp @@ -141,8 +141,9 @@ Image get_mask(const Image &in) { return mask; } -vector get_data(Image &in, Image &mask, const size_t max_axis, const bool ignore_zero) { - vector data; +std::vector +get_data(Image &in, Image &mask, const size_t max_axis, const bool ignore_zero) { + std::vector data; data.reserve(voxel_count(in, 0, max_axis)); if (mask.valid()) { Adapter::Replicate> mask_replicate(mask, in); @@ -232,7 +233,7 @@ default_type calculate(Image &in, if (max_axis < in.ndim()) { // Need to extract just the current 3D volume - vector in_from(in.ndim()), in_size(in.ndim()); + std::vector in_from(in.ndim()), in_size(in.ndim()); size_t axis; for (axis = 0; axis != 3; ++axis) { in_from[axis] = 0; @@ -244,7 +245,7 @@ default_type calculate(Image &in, } Adapter::Subset> in_subset(in, in_from, in_size); if (mask.valid()) { - vector mask_from(mask.ndim()), mask_size(mask.ndim()); + std::vector mask_from(mask.ndim()), mask_size(mask.ndim()); for (axis = 0; axis != 3; ++axis) { mask_from[axis] = 0; mask_size[axis] = mask.size(axis); diff --git a/cmd/mrtransform.cpp b/cmd/mrtransform.cpp index 6ec1d9f49f..63fe703b9e 100644 --- a/cmd/mrtransform.cpp +++ b/cmd/mrtransform.cpp @@ -225,7 +225,7 @@ void apply_warp(Image &input, Image &warp, const int interp, const float out_of_bounds_value, - const vector &oversample, + const std::vector &oversample, const bool jacobian_modulate = false) { switch (interp) { case 0: @@ -373,7 +373,7 @@ void run() { // Flip opt = get_options("flip"); - vector axes; + std::vector axes; if (opt.size()) { axes = parse_ints(opt[0][0]); transform_type flip; @@ -550,7 +550,7 @@ void run() { } // over-sampling - vector oversample = Adapter::AutoOverSample; + std::vector oversample = Adapter::AutoOverSample; opt = get_options("oversample"); if (opt.size()) { if (!template_header.valid() && !warp) diff --git a/cmd/mrview.cpp b/cmd/mrview.cpp index 1cc5ae659a..fb19291fbf 100644 --- a/cmd/mrview.cpp +++ b/cmd/mrview.cpp @@ -82,7 +82,7 @@ void run() { GUI::App::setEventHandler([](QEvent *event) { if (event->type() == QEvent::FileOpen) { QFileOpenEvent *openEvent = static_cast(event); - vector> list; + std::vector> list; try { list.push_back(make_unique(MR::Header::open(openEvent->file().toUtf8().data()))); } catch (Exception &E) { diff --git a/cmd/mtnormalise.cpp b/cmd/mtnormalise.cpp index ed1895e133..4c10bfd6d8 100644 --- a/cmd/mtnormalise.cpp +++ b/cmd/mtnormalise.cpp @@ -473,7 +473,7 @@ void run() { size_t max_balance_iter = DEFAULT_BALANCE_MAXITER_VALUE; auto opt = get_options("niter"); if (opt.size()) { - vector num = parse_ints(opt[0][0]); + std::vector num = parse_ints(opt[0][0]); if (num.size() < 1 && num.size() > 2) throw Exception("unexpected number of entries provided to option \"-niter\""); for (auto n : num) diff --git a/cmd/peaks2fixel.cpp b/cmd/peaks2fixel.cpp index 129971f5df..4849d7467c 100644 --- a/cmd/peaks2fixel.cpp +++ b/cmd/peaks2fixel.cpp @@ -43,9 +43,9 @@ void usage() { +Option("dataname", "the name of the output fixel data file encoding peak amplitudes") + Argument("path").type_text(); } -vector get(Image &data) { +std::vector get(Image &data) { data.index(3) = 0; - vector result; + std::vector result; while (data.index(3) < data.size(3)) { Eigen::Vector3d direction; for (size_t axis = 0; axis != 3; ++axis) { diff --git a/cmd/sh2amp.cpp b/cmd/sh2amp.cpp index 5065d46ef0..b6cbc1045c 100644 --- a/cmd/sh2amp.cpp +++ b/cmd/sh2amp.cpp @@ -100,7 +100,7 @@ class SH2Amp { class SH2AmpMultiShell { public: - SH2AmpMultiShell(const vector &dirs, const DWI::Shells &shells, bool nonneg) + SH2AmpMultiShell(const std::vector &dirs, const DWI::Shells &shells, bool nonneg) : transforms(dirs), shells(shells), nonnegative(nonneg) {} void operator()(Image &in, Image &out) { @@ -122,7 +122,7 @@ class SH2AmpMultiShell { } private: - const vector &transforms; + const std::vector &transforms; const DWI::Shells &shells; const bool nonnegative; Eigen::VectorXd sh, amp; @@ -194,7 +194,7 @@ void run() { } else if (!(sh_data.ndim() == 4 || (sh_data.ndim() > 4 && (sh_data.size(4) != 1)))) throw Exception("number of shells differs between gradient scheme and input data"); - vector transforms; + std::vector transforms; for (size_t n = 0; n < shells.count(); ++n) { Eigen::MatrixXd dirs(shells[n].count(), 2); diff --git a/cmd/sh2peaks.cpp b/cmd/sh2peaks.cpp index f421e11b65..ac24af74f3 100644 --- a/cmd/sh2peaks.cpp +++ b/cmd/sh2peaks.cpp @@ -145,7 +145,7 @@ class Processor { Eigen::Matrix &directions, int lmax, int npeaks, - vector true_peaks, + std::vector true_peaks, value_type threshold, Image ipeaks_data, bool use_precomputer) @@ -171,7 +171,7 @@ class Processor { return true; } - vector all_peaks; + std::vector all_peaks; for (size_t i = 0; i < size_t(dirs.rows()); i++) { Direction p(dirs(i, 0), dirs(i, 1)); @@ -245,9 +245,9 @@ class Processor { Image dirs_vox; Eigen::Matrix dirs; int lmax, npeaks; - vector true_peaks; + std::vector true_peaks; value_type threshold; - vector peaks_out; + std::vector peaks_out; Image ipeaks_vox; Math::SH::PrecomputedAL *precomputer; @@ -299,7 +299,7 @@ void run() { int npeaks = get_option_value("num", DEFAULT_NPEAKS); opt = get_options("direction"); - vector true_peaks; + std::vector true_peaks; for (size_t n = 0; n < opt.size(); ++n) { Direction p(Math::pi * to(opt[n][0]) / 180.0, Math::pi * float(opt[n][1]) / 180.0); true_peaks.push_back(p); diff --git a/cmd/shbasis.cpp b/cmd/shbasis.cpp index 977834e84d..90ca33c268 100644 --- a/cmd/shbasis.cpp +++ b/cmd/shbasis.cpp @@ -69,7 +69,7 @@ void usage() { // Perform a linear regression on the power ratio in each order // Omit l=2 - tends to be abnormally small due to non-isotropic brain-wide fibre distribution -std::pair get_regression(const vector &ratios) { +std::pair get_regression(const std::vector &ratios) { const size_t n = ratios.size() - 1; Eigen::VectorXf Y(n), b(2); Eigen::MatrixXf A(n, 2); @@ -120,7 +120,7 @@ template void check_and_update(Header &H, const conv_t con if (App::log_level > 0 && App::log_level < 2) progress.reset(new ProgressBar("Evaluating SH basis of image \"" + H.name() + "\"", N - 1)); - vector ratios; + std::vector ratios; for (size_t l = 2; l <= lmax; l += 2) { @@ -317,7 +317,7 @@ void run() { } } - for (vector::const_iterator i = argument.begin(); i != argument.end(); ++i) { + for (std::vector::const_iterator i = argument.begin(); i != argument.end(); ++i) { const std::string path = *i; Header H = Header::open(path); diff --git a/cmd/shconv.cpp b/cmd/shconv.cpp index 2f9229341e..f1a888b319 100644 --- a/cmd/shconv.cpp +++ b/cmd/shconv.cpp @@ -58,7 +58,7 @@ using value_type = float; class SConvFunctor { public: - SConvFunctor(const vector &responses, vector> &inputs) + SConvFunctor(const std::vector &responses, std::vector> &inputs) : responses(responses), inputs(inputs) {} void operator()(Image &output) { @@ -78,8 +78,8 @@ class SConvFunctor { } protected: - const vector &responses; - vector> inputs; + const std::vector &responses; + std::vector> inputs; Eigen::VectorXd in, out; }; @@ -87,8 +87,8 @@ void run() { if (!(argument.size() & size_t(1U))) throw Exception("unexpected number of arguments"); - vector> inputs((argument.size() - 1) / 2); - vector responses(inputs.size()); + std::vector> inputs((argument.size() - 1) / 2); + std::vector responses(inputs.size()); size_t lmax = 0; for (size_t n = 0; n < inputs.size(); ++n) { diff --git a/cmd/tck2connectome.cpp b/cmd/tck2connectome.cpp index 11c62767db..dc9a91f845 100644 --- a/cmd/tck2connectome.cpp +++ b/cmd/tck2connectome.cpp @@ -182,7 +182,7 @@ void run() { // First, find out how many segmented nodes there are, so the matrix can be pre-allocated // Also check for node volume for all nodes - vector node_volumes(1, 0); + std::vector node_volumes(1, 0); node_t max_node_index = 0; for (auto i = Loop(node_image, 0, 3)(node_image); i; ++i) { if (node_image.value() > max_node_index) { diff --git a/cmd/tck2fixel.cpp b/cmd/tck2fixel.cpp index b2601cbc7f..df7e70ea7a 100644 --- a/cmd/tck2fixel.cpp +++ b/cmd/tck2fixel.cpp @@ -40,8 +40,8 @@ class TrackProcessor { using SetVoxelDir = DWI::Tractography::Mapping::SetVoxelDir; TrackProcessor(Image &fixel_indexer, - const vector &fixel_directions, - vector &fixel_TDI, + const std::vector &fixel_directions, + std::vector &fixel_TDI, const float angular_threshold) : fixel_indexer(fixel_indexer), fixel_directions(fixel_directions), @@ -50,7 +50,7 @@ class TrackProcessor { bool operator()(const SetVoxelDir &in) { // For each voxel tract tangent, assign to a fixel - vector tract_fixel_indices; + std::vector tract_fixel_indices; for (SetVoxelDir::const_iterator i = in.begin(); i != in.end(); ++i) { assign_pos_of(*i).to(fixel_indexer); fixel_indexer.index(3) = 0; @@ -80,8 +80,8 @@ class TrackProcessor { private: Image fixel_indexer; - const vector &fixel_directions; - vector &fixel_TDI; + const std::vector &fixel_directions; + std::vector &fixel_TDI; const float angular_threshold_dp; }; @@ -128,8 +128,8 @@ void run() { const float angular_threshold = get_option_value("angle", DEFAULT_ANGLE_THRESHOLD); - vector positions(num_fixels); - vector directions(num_fixels); + std::vector positions(num_fixels); + std::vector directions(num_fixels); const std::string output_fixel_folder = argument[2]; Fixel::copy_index_and_directions_file(input_fixel_folder, output_fixel_folder); @@ -151,7 +151,7 @@ void run() { } } - vector fixel_TDI(num_fixels, 0.0); + std::vector fixel_TDI(num_fixels, 0.0); const std::string track_filename = argument[0]; DWI::Tractography::Properties properties; DWI::Tractography::Reader track_file(track_filename, properties); diff --git a/cmd/tckconvert.cpp b/cmd/tckconvert.cpp index 3a6be0ecf7..24c86f821a 100644 --- a/cmd/tckconvert.cpp +++ b/cmd/tckconvert.cpp @@ -186,12 +186,12 @@ class VTKWriter : public WriterInterface { File::OFStream VTKout; const bool write_ascii; size_t offset_num_points; - vector> track_list; + std::vector> track_list; size_t current_index = 0; }; -template void loadLines(vector &lines, std::ifstream &input, int number_of_line_indices) { - vector buffer(number_of_line_indices); +template void loadLines(std::vector &lines, std::ifstream &input, int number_of_line_indices) { + std::vector buffer(number_of_line_indices); input.read((char *)&buffer[0], number_of_line_indices * sizeof(T)); lines.resize(number_of_line_indices); // swap from big endian @@ -254,8 +254,8 @@ class VTKReader : public ReaderInterface { } private: - vector points; - vector lines; + std::vector points; + std::vector lines; int lineIdx; int number_of_lines; int number_of_line_indices; @@ -308,7 +308,7 @@ class ASCIIWriter : public WriterInterface { private: File::NameParser parser; - vector count; + std::vector count; }; class PLYWriter : public WriterInterface { diff --git a/cmd/tckdfc.cpp b/cmd/tckdfc.cpp index 4695c2115c..03851397a7 100644 --- a/cmd/tckdfc.cpp +++ b/cmd/tckdfc.cpp @@ -212,7 +212,7 @@ class Count_receiver { void run() { bool is_static = get_options("static").size(); - vector window; + std::vector window; auto opt = get_options("dynamic"); if (opt.size()) { @@ -281,7 +281,7 @@ void run() { Image fmri_image(Image::open(argument[1]).with_direct_io(3)); - vector voxel_size; + std::vector voxel_size; opt = get_options("vox"); if (opt.size()) voxel_size = parse_floats(opt[0][0]); diff --git a/cmd/tckedit.cpp b/cmd/tckedit.cpp index 2fc2e3647b..317111f454 100644 --- a/cmd/tckedit.cpp +++ b/cmd/tckedit.cpp @@ -126,7 +126,7 @@ void run() { // Get the consensus streamline properties from among the multiple input files Tractography::Properties properties; size_t count = 0; - vector input_file_list; + std::vector input_file_list; for (size_t file_index = 0; file_index != num_inputs; ++file_index) { diff --git a/cmd/tckinfo.cpp b/cmd/tckinfo.cpp index 53e7b2d223..e894d2ed41 100644 --- a/cmd/tckinfo.cpp +++ b/cmd/tckinfo.cpp @@ -57,7 +57,7 @@ void run() { if (properties.comments.size()) { std::cout << " Comments: "; - for (vector::iterator i = properties.comments.begin(); i != properties.comments.end(); ++i) + for (std::vector::iterator i = properties.comments.begin(); i != properties.comments.end(); ++i) std::cout << (i == properties.comments.begin() ? "" : " ") << *i << "\n"; } diff --git a/cmd/tckmap.cpp b/cmd/tckmap.cpp index 891f25ac73..f831c4fe59 100644 --- a/cmd/tckmap.cpp +++ b/cmd/tckmap.cpp @@ -255,7 +255,7 @@ void run() { const size_t num_tracks = properties["count"].empty() ? 0 : to(properties["count"]); - vector voxel_size = get_option_value("vox", vector()); + std::vector voxel_size = get_option_value("vox", std::vector()); if (voxel_size.size() == 1) { auto v = voxel_size.front(); diff --git a/cmd/tcksample.cpp b/cmd/tcksample.cpp index 3e77b8e1d2..2f50903222 100644 --- a/cmd/tcksample.cpp +++ b/cmd/tcksample.cpp @@ -148,7 +148,7 @@ template class SamplerNonPrecise { } else { if (statistic == MEDIAN) { // Don't bother with a weighted median here - vector data; + std::vector data; data.assign(values.data(), values.data() + values.size()); out.second = Math::median(data); } else if (statistic == MIN) { @@ -234,7 +234,7 @@ class SamplerPrecise { bool operator<(const WeightSort &that) const { return value < that.value; } value_type value, length; }; - vector data; + std::vector data; for (const auto &v : voxels) { assign_pos_of(v).to(image); data.push_back(WeightSort(v, (image.value() * get_tdi_multiplier(v)))); diff --git a/cmd/tcksift.cpp b/cmd/tcksift.cpp index eabe023098..50397ed7f5 100644 --- a/cmd/tcksift.cpp +++ b/cmd/tcksift.cpp @@ -114,7 +114,7 @@ void run() { sifter.set_csv_path(opt[0][0]); opt = get_options("output_at_counts"); if (opt.size()) { - vector counts = parse_ints(opt[0][0]); + std::vector counts = parse_ints(opt[0][0]); sifter.set_regular_outputs(counts, debug_path); } diff --git a/cmd/tckstats.cpp b/cmd/tckstats.cpp index b0a4cdcbc4..3a614eabbf 100644 --- a/cmd/tckstats.cpp +++ b/cmd/tckstats.cpp @@ -96,8 +96,8 @@ void run() { float max_length = -std::numeric_limits::infinity(); size_t empty_streamlines = 0, zero_length_streamlines = 0; default_type sum_lengths = 0.0, sum_weights = 0.0; - vector histogram; - vector all_lengths; + std::vector histogram; + std::vector all_lengths; all_lengths.reserve(header_count); { @@ -113,7 +113,7 @@ void run() { "widths"); } - vector dump; + std::vector dump; dump.reserve(header_count); ProgressBar progress("Reading track file", header_count); @@ -184,11 +184,11 @@ void run() { } default_type ssd = 0.0; - for (vector::const_iterator i = all_lengths.begin(); i != all_lengths.end(); ++i) + for (std::vector::const_iterator i = all_lengths.begin(); i != all_lengths.end(); ++i) ssd += i->get_weight() * Math::pow2(i->get_length() - mean_length); const float stdev = sum_weights ? (std::sqrt(ssd / (((count - 1) / default_type(count)) * sum_weights))) : NaN; - vector fields; + std::vector fields; auto opt = get_options("output"); for (size_t n = 0; n < opt.size(); ++n) fields.push_back(opt[n][0]); diff --git a/cmd/tensor2metric.cpp b/cmd/tensor2metric.cpp index 0bd889ead8..340027f94f 100644 --- a/cmd/tensor2metric.cpp +++ b/cmd/tensor2metric.cpp @@ -143,7 +143,7 @@ class Processor { Image &mk_img, Image &ak_img, Image &rk_img, - vector &vals, + std::vector &vals, int modulate, Eigen::MatrixXd mk_dirs, int rk_ndirs) @@ -352,7 +352,7 @@ class Processor { Image mk_img; Image ak_img; Image rk_img; - vector vals; + std::vector vals; const int modulate; Eigen::MatrixXd mk_dirs; Eigen::MatrixXd mk_bmat, rk_bmat; @@ -443,7 +443,7 @@ void run() { metric_count++; } - vector vals = {1}; + std::vector vals = {1}; opt = get_options("num"); if (opt.size()) { vals = parse_ints(opt[0][0]); diff --git a/cmd/transformcalc.cpp b/cmd/transformcalc.cpp index 8db6977378..43bdffad9e 100644 --- a/cmd/transformcalc.cpp +++ b/cmd/transformcalc.cpp @@ -213,7 +213,7 @@ void run() { transform_type transform_out; Eigen::Transform Tin; Eigen::MatrixXd Min; - vector matrices; + std::vector matrices; for (size_t i = 0; i < num_inputs; i++) { DEBUG(str(argument[i])); Tin = File::Matrix::load_transform(argument[i]); diff --git a/cmd/transformcompose.cpp b/cmd/transformcompose.cpp index fddd6604d6..b2163f81e3 100644 --- a/cmd/transformcompose.cpp +++ b/cmd/transformcompose.cpp @@ -91,7 +91,7 @@ void usage() { using value_type = float; void run() { - vector> transform_list; + std::vector> transform_list; std::unique_ptr
template_header; for (size_t i = 0; i < argument.size() - 1; ++i) { diff --git a/cmd/transformconvert.cpp b/cmd/transformconvert.cpp index 385599e4dd..47ea0b605e 100644 --- a/cmd/transformconvert.cpp +++ b/cmd/transformconvert.cpp @@ -56,7 +56,7 @@ void usage() { } transform_type get_flirt_transform(const Header &header) { - vector axes; + std::vector axes; transform_type nifti_transform = File::NIfTI::adjust_transform(header, axes); if (nifti_transform.matrix().topLeftCorner<3, 3>().determinant() < 0.0) return nifti_transform; @@ -76,7 +76,7 @@ transform_type get_flirt_transform(const Header &header) { // template // transform_type parse_surfer_transform (const std::string& filename) { // std::ifstream stream (filename, std::ios_base::in | std::ios_base::binary); -// vector> V; +// std::vector> V; // std::string sbuf; // std::string file_version; // while (getline (stream, sbuf)) { @@ -97,7 +97,7 @@ transform_type get_flirt_transform(const Header &header) { // for (auto i = 0; i<4 && getline (stream, sbuf); ++i){ // // sbuf = strip (sbuf.substr (0, sbuf.find_first_of ('type'))); -// V.push_back (vector()); +// V.push_back (std::vector()); // const auto elements = MR::split (sbuf, " ,;\t", true); // for (const auto& entry : elements) // V.back().push_back (to (entry)); @@ -126,10 +126,10 @@ void parse_itk_trafo(const std::string &itk_file, TransformationType &transformation, Eigen::Vector3d ¢re_of_rotation) { const std::string first_line = "#Insight Transform File V1.0"; - vector supported_transformations = {"MatrixOffsetTransformBase_double_3_3", - "MatrixOffsetTransformBase_float_3_3", - "AffineTransform_double_3_3", - "AffineTransform_float_3_3"}; + std::vector supported_transformations = {"MatrixOffsetTransformBase_double_3_3", + "MatrixOffsetTransformBase_float_3_3", + "AffineTransform_double_3_3", + "AffineTransform_float_3_3"}; // TODO, support derived classes that are compatible // FixedCenterOfRotationAffineTransform_float_3_3? // QuaternionRigidTransform_double_3_3? @@ -146,7 +146,7 @@ void parse_itk_trafo(const std::string &itk_file, } else if (file.key() == "Parameters") { line = file.value(); std::replace(line.begin(), line.end(), ' ', ','); - vector parameters(parse_floats(line)); + std::vector parameters(parse_floats(line)); if (parameters.size() != 12) throw Exception("Expected itk file with 12 parameters but has " + str(parameters.size()) + " parameters."); transformation.linear().row(0) << parameters[0], parameters[1], parameters[2]; @@ -157,7 +157,7 @@ void parse_itk_trafo(const std::string &itk_file, } else if (file.key() == "FixedParameters") { line = file.value(); std::replace(line.begin(), line.end(), ' ', ','); - vector fixed_parameters(parse_floats(line)); + std::vector fixed_parameters(parse_floats(line)); centre_of_rotation << fixed_parameters[0], fixed_parameters[1], fixed_parameters[2]; invalid--; } diff --git a/cmd/tsfinfo.cpp b/cmd/tsfinfo.cpp index da0c88ea5c..170462f3a7 100644 --- a/cmd/tsfinfo.cpp +++ b/cmd/tsfinfo.cpp @@ -62,7 +62,7 @@ void run() { if (properties.comments.size()) { std::cout << " Comments: "; - for (vector::iterator i = properties.comments.begin(); i != properties.comments.end(); ++i) + for (std::vector::iterator i = properties.comments.begin(); i != properties.comments.end(); ++i) std::cout << (i == properties.comments.begin() ? "" : " ") << *i << "\n"; } @@ -94,7 +94,7 @@ void run() { filename.replace(filename.size() - 4 - num.size(), num.size(), num); File::OFStream out(filename); - for (vector::iterator i = tck.begin(); i != tck.end(); ++i) + for (std::vector::iterator i = tck.begin(); i != tck.end(); ++i) out << (*i) << "\n"; out.close(); diff --git a/cmd/tsfsmooth.cpp b/cmd/tsfsmooth.cpp index 94d1f87a8b..af50752ff6 100644 --- a/cmd/tsfsmooth.cpp +++ b/cmd/tsfsmooth.cpp @@ -51,7 +51,7 @@ void run() { float stdev = get_option_value("stdev", DEFAULT_SMOOTHING); - vector kernel(2 * ceil(2.5 * stdev) + 1, 0); + std::vector kernel(2 * ceil(2.5 * stdev) + 1, 0); float norm_factor = 0.0; float radius = (kernel.size() - 1.0) / 2.0; for (size_t c = 0; c < kernel.size(); ++c) { diff --git a/cmd/vectorstats.cpp b/cmd/vectorstats.cpp index f2c70bdbfb..a341ecef20 100644 --- a/cmd/vectorstats.cpp +++ b/cmd/vectorstats.cpp @@ -142,7 +142,7 @@ void run() { // Before validating the contrast matrix, we first need to see if there are any // additional design matrix columns coming from element-wise subject data - vector extra_columns; + std::vector extra_columns; bool nans_in_columns = false; auto opt = get_options("column"); for (size_t i = 0; i != opt.size(); ++i) { @@ -168,7 +168,7 @@ void run() { CONSOLE("Number of variance groups: " + str(num_vgs)); // Load hypotheses - const vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[2]); + const std::vector hypotheses = Math::Stats::GLM::load_hypotheses(argument[2]); const index_type num_hypotheses = hypotheses.size(); if (hypotheses[0].cols() != num_factors) throw Exception( diff --git a/core/adapter/extract.h b/core/adapter/extract.h index 54e4ebc914..4ec4c60a9d 100644 --- a/core/adapter/extract.h +++ b/core/adapter/extract.h @@ -31,7 +31,7 @@ template class Extract1D : public Base, I using base_type::parent; using base_type::spacing; - Extract1D(const ImageType &original, const size_t axis, const vector &indices) + Extract1D(const ImageType &original, const size_t axis, const std::vector &indices) : base_type(original), extract_axis(axis), indices(indices), nsize(indices.size()), trans(original.transform()) { reset(); @@ -77,7 +77,7 @@ template class Extract1D : public Base, I private: const size_t extract_axis; - vector indices; + std::vector indices; const ssize_t nsize; transform_type trans; ssize_t current_pos; @@ -92,7 +92,7 @@ template class Extract : public Base, Image using base_type::parent; using base_type::spacing; - Extract(const ImageType &original, const vector> &indices) + Extract(const ImageType &original, const std::vector> &indices) : base_type(original), current_pos(ndim()), indices(indices), trans(original.transform()) { reset(); trans.translation() = @@ -125,9 +125,9 @@ template class Extract : public Base, Image } private: - vector current_pos; - vector> indices; - vector sizes; + std::vector current_pos; + std::vector> indices; + std::vector sizes; transform_type trans; }; diff --git a/core/adapter/gaussian1D.h b/core/adapter/gaussian1D.h index 17a7758f29..e53ce90c23 100644 --- a/core/adapter/gaussian1D.h +++ b/core/adapter/gaussian1D.h @@ -95,7 +95,7 @@ template class Gaussian1D : public Base, default_type stdev; ssize_t radius; size_t axis; - vector kernel; + std::vector kernel; const bool zero_boundary; }; } // namespace Adapter diff --git a/core/adapter/gradient1D.h b/core/adapter/gradient1D.h index 3ddda2c975..639d941c87 100644 --- a/core/adapter/gradient1D.h +++ b/core/adapter/gradient1D.h @@ -79,8 +79,8 @@ template class Gradient1D : public Base, size_t axis; value_type result; const bool wrt_spacing; - vector derivative_weights; - vector half_derivative_weights; + std::vector derivative_weights; + std::vector half_derivative_weights; }; } // namespace Adapter } // namespace MR diff --git a/core/adapter/median.h b/core/adapter/median.h index bad0d094bf..9a75d2f4d5 100644 --- a/core/adapter/median.h +++ b/core/adapter/median.h @@ -33,18 +33,18 @@ template class Median : public Base, ImageTy using base_type::name; using base_type::size; - Median(const ImageType &parent) : base_type(parent) { set_extent(vector(1, 3)); } + Median(const ImageType &parent) : base_type(parent) { set_extent(std::vector(1, 3)); } - Median(const ImageType &parent, const vector &extent) : base_type(parent) { set_extent(extent); } + Median(const ImageType &parent, const std::vector &extent) : base_type(parent) { set_extent(extent); } - void set_extent(const vector &ext) { + void set_extent(const std::vector &ext) { for (size_t i = 0; i < ext.size(); ++i) if (!(ext[i] & uint32_t(1))) throw Exception("expected odd number for extent"); if (ext.size() != 1 && ext.size() != 3) throw Exception("unexpected number of elements specified in extent"); if (ext.size() == 1) - extent = vector(3, ext[0]); + extent = std::vector(3, ext[0]); else extent = ext; @@ -78,8 +78,8 @@ template class Median : public Base, ImageTy } protected: - vector extent; - vector values; + std::vector extent; + std::vector values; }; } // namespace Adapter diff --git a/core/adapter/neighbourhood3D.h b/core/adapter/neighbourhood3D.h index 6e7302822e..88fc7236d8 100644 --- a/core/adapter/neighbourhood3D.h +++ b/core/adapter/neighbourhood3D.h @@ -67,7 +67,7 @@ template class NeighbourhoodCoord : public Base from_, size_; + std::vector from_, size_; Iterator iter_; transform_type transform_; }; diff --git a/core/adapter/normalise3D.h b/core/adapter/normalise3D.h index 5b9e594c00..95d5891562 100644 --- a/core/adapter/normalise3D.h +++ b/core/adapter/normalise3D.h @@ -32,18 +32,18 @@ template class Normalise3D : public Base(1, 3)); } + Normalise3D(const ImageType &parent) : base_type(parent) { set_extent(std::vector(1, 3)); } - Normalise3D(const ImageType &parent, const vector &extent) : base_type(parent) { set_extent(extent); } + Normalise3D(const ImageType &parent, const std::vector &extent) : base_type(parent) { set_extent(extent); } - void set_extent(const vector &ext) { + void set_extent(const std::vector &ext) { for (size_t i = 0; i < ext.size(); ++i) if (!(ext[i] & uint32_t(1))) throw Exception("expected odd number for extent"); if (ext.size() != 1 && ext.size() != 3) throw Exception("unexpected number of elements specified in extent"); if (ext.size() == 1) - extent = vector(3, ext[0]); + extent = std::vector(3, ext[0]); else extent = ext; @@ -83,7 +83,7 @@ template class Normalise3D : public Base extent; + std::vector extent; value_type mean; value_type pos_value; size_t nelements; diff --git a/core/adapter/permute_axes.h b/core/adapter/permute_axes.h index cf1fb95b74..e3738dec97 100644 --- a/core/adapter/permute_axes.h +++ b/core/adapter/permute_axes.h @@ -30,7 +30,7 @@ template class PermuteAxes : public Base &axes) : base_type(original), axes_(axes) { + PermuteAxes(const ImageType &original, const std::vector &axes) : base_type(original), axes_(axes) { for (int i = 0; i < static_cast(parent().ndim()); ++i) { for (size_t a = 0; a < axes_.size(); ++a) { if (axes_[a] >= int(parent().ndim())) @@ -75,8 +75,8 @@ template class PermuteAxes : public Base axes_; - vector non_existent_axes; + std::vector axes_; + std::vector non_existent_axes; }; } // namespace Adapter diff --git a/core/adapter/regrid.h b/core/adapter/regrid.h index e23fad1f44..02a13ced74 100644 --- a/core/adapter/regrid.h +++ b/core/adapter/regrid.h @@ -37,14 +37,14 @@ template class Regrid : public Base, ImageTy from_(container_cast(from)), size_(container_cast(size)), index_invalid_lower_upper([&] { - vector> v; + std::vector> v; for (size_t d = 0; d < from_.size(); ++d) { - v.push_back(vector{from_[d] < 0 ? -(ssize_t)from_[d] - 1 : -1, original.size(d) - from_[d]}); + v.push_back(std::vector{from_[d] < 0 ? -(ssize_t)from_[d] - 1 : -1, original.size(d) - from_[d]}); } return v; }()), index_requires_bound_check([&] { - vector v; + std::vector v; for (size_t d = 0; d < from_.size(); ++d) { v.push_back(from_[d] < 0 || size_[d] > original.size(d) - from_[d]); } @@ -101,12 +101,12 @@ template class Regrid : public Base, ImageTy protected: using base_type::parent; - const vector from_, size_; - const vector> index_invalid_lower_upper; - const vector index_requires_bound_check; + const std::vector from_, size_; + const std::vector> index_invalid_lower_upper; + const std::vector index_requires_bound_check; const value_type fill_; transform_type transform_; - vector index_; + std::vector index_; }; } // namespace Adapter diff --git a/core/adapter/replicate.h b/core/adapter/replicate.h index 8d15e9206d..7bf40ae7af 100644 --- a/core/adapter/replicate.h +++ b/core/adapter/replicate.h @@ -59,7 +59,7 @@ template class Replicate : public Base, I protected: using base_type::parent; Header header_; - vector pos_; + std::vector pos_; }; } // namespace Adapter diff --git a/core/adapter/reslice.cpp b/core/adapter/reslice.cpp index 5855b1480b..5c79470c0c 100644 --- a/core/adapter/reslice.cpp +++ b/core/adapter/reslice.cpp @@ -19,6 +19,6 @@ namespace MR { namespace Adapter { const transform_type NoTransform = transform_type::Identity(); -const vector AutoOverSample; +const std::vector AutoOverSample; } // namespace Adapter } // namespace MR diff --git a/core/adapter/reslice.h b/core/adapter/reslice.h index aea8a42def..22f1dd91ad 100644 --- a/core/adapter/reslice.h +++ b/core/adapter/reslice.h @@ -52,7 +52,7 @@ typename std::enable_if::value, value_type>:: } // namespace extern const transform_type NoTransform; -extern const vector AutoOverSample; +extern const std::vector AutoOverSample; //! \addtogroup interp // @{ @@ -105,7 +105,7 @@ class Reslice : public ImageBase, typename Imag Reslice(const ImageType &original, const HeaderType &reference, const transform_type &transform = NoTransform, - const vector &oversample = AutoOverSample, + const std::vector &oversample = AutoOverSample, const value_type value_when_out_of_bounds = Interp::Base::default_out_of_bounds_value()) : interp(original, value_when_out_of_bounds), x{0, 0, 0}, diff --git a/core/adapter/subset.h b/core/adapter/subset.h index e2137bf2d4..13dc59c619 100644 --- a/core/adapter/subset.h +++ b/core/adapter/subset.h @@ -64,7 +64,7 @@ template class Subset : public Base, ImageTy protected: using base_type::parent; - const vector from_, size_; + const std::vector from_, size_; transform_type transform_; }; diff --git a/core/algo/histogram.cpp b/core/algo/histogram.cpp index 39226378b1..cac0137592 100644 --- a/core/algo/histogram.cpp +++ b/core/algo/histogram.cpp @@ -42,7 +42,7 @@ void Calibrator::from_file(const std::string &path) { M = File::Matrix::load_matrix(path); if (M.cols() == 1) throw Exception("Histogram template must have at least 2 columns"); - vector().swap(data); + std::vector().swap(data); auto V = M.row(0); num_bins = V.size(); bin_width = (V[num_bins - 1] - V[0]) / default_type(num_bins - 1); @@ -68,7 +68,7 @@ void Calibrator::finalize(const size_t num_volumes, const bool is_integer) { // Need to adjust the bin width accordingly... kinda ugly hack // Will need to revisit if mrstats gets capability to compute statistics across all volumes rather than splitting bin_width = 2.0 * get_iqr() * std::pow(static_cast(data.size() / num_volumes), -1.0 / 3.0); - vector().swap(data); // No longer required; free the memory used + std::vector().swap(data); // No longer required; free the memory used // If the input data are integers, the bin width should also be an integer, to avoid getting // regular spike artifacts in the histogram if (is_integer) { diff --git a/core/algo/histogram.h b/core/algo/histogram.h index 1a8f088465..5499d9128b 100644 --- a/core/algo/histogram.h +++ b/core/algo/histogram.h @@ -75,7 +75,7 @@ class Calibrator { default_type min, max, bin_width; size_t num_bins; const bool ignore_zero; - vector data; + std::vector data; default_type get_iqr(); }; diff --git a/core/algo/iterator.h b/core/algo/iterator.h index c777c96708..09c04d1a75 100644 --- a/core/algo/iterator.h +++ b/core/algo/iterator.h @@ -48,7 +48,7 @@ class Iterator { } private: - vector d, p; + std::vector d, p; void value() const { assert(0); } }; diff --git a/core/algo/loop.h b/core/algo/loop.h index 0b7c5f176d..37492225ea 100644 --- a/core/algo/loop.h +++ b/core/algo/loop.h @@ -132,7 +132,7 @@ struct inc_pos { * following example: * \code * float value = 0.0; - * vector order = { 1, 0, 2 }; + * std::vector order = { 1, 0, 2 }; * * LoopInOrder loop (vox, order); * for (auto i = loop.run (vox); i; ++i) @@ -306,15 +306,15 @@ struct LoopAlongAxesProgress { }; struct LoopAlongDynamicAxes { - const vector axes; + const std::vector axes; template struct Run { - const vector axes; + const std::vector axes; const std::tuple vox; const size_t from; const ssize_t size0; bool ok; - FORCE_INLINE Run(const vector &axes, const std::tuple &vox) + FORCE_INLINE Run(const std::vector &axes, const std::tuple &vox) : axes(axes), vox(vox), from(axes[0]), size0(std::get<0>(vox).size(from)), ok(true) { for (auto axis : axes) MR::apply(set_pos(axis, 0), vox); @@ -345,12 +345,12 @@ struct LoopAlongDynamicAxes { struct LoopAlongDynamicAxesProgress : public LoopAlongDynamicAxes { const std::string text; - LoopAlongDynamicAxesProgress(const std::string &text, const vector &axes) + LoopAlongDynamicAxesProgress(const std::string &text, const std::vector &axes) : LoopAlongDynamicAxes({axes}), text(text) {} template struct Run : public LoopAlongDynamicAxes::Run { MR::ProgressBar progress; - FORCE_INLINE Run(const std::string &text, const vector &axes, const std::tuple &vox) + FORCE_INLINE Run(const std::string &text, const std::vector &axes, const std::tuple &vox) : LoopAlongDynamicAxes::Run(axes, vox), progress(text, MR::voxel_count(std::get<0>(vox), axes)) {} FORCE_INLINE void operator++() { LoopAlongDynamicAxes::Run::operator++(); @@ -380,9 +380,9 @@ FORCE_INLINE LoopAlongAxisRangeProgress Loop(const std::string &progress_message return {progress_message, axis_from, axis_to}; } -FORCE_INLINE LoopAlongDynamicAxes Loop(const vector &axes) { return {axes}; } +FORCE_INLINE LoopAlongDynamicAxes Loop(const std::vector &axes) { return {axes}; } -FORCE_INLINE LoopAlongDynamicAxesProgress Loop(const std::string &progress_message, const vector &axes) { +FORCE_INLINE LoopAlongDynamicAxesProgress Loop(const std::string &progress_message, const std::vector &axes) { return {progress_message, axes}; } diff --git a/core/algo/neighbourhooditerator.h b/core/algo/neighbourhooditerator.h index 75259a1cf8..53bfb4dcc9 100644 --- a/core/algo/neighbourhooditerator.h +++ b/core/algo/neighbourhooditerator.h @@ -39,7 +39,7 @@ class NeighbourhoodIterator { public: NeighbourhoodIterator() = delete; template - NeighbourhoodIterator(const IteratorType &iter, const vector &extent) + NeighbourhoodIterator(const IteratorType &iter, const std::vector &extent) : dim(iter.ndim()), offset(iter.ndim()), // pos (iter.ndim()), @@ -105,7 +105,7 @@ class NeighbourhoodIterator { } private: - vector dim, offset, pos_orig, ext; + std::vector dim, offset, pos_orig, ext; Eigen::Matrix pos; bool has_next_; diff --git a/core/algo/random_loop.h b/core/algo/random_loop.h index d75197ff79..854ca415fd 100644 --- a/core/algo/random_loop.h +++ b/core/algo/random_loop.h @@ -70,9 +70,9 @@ template class Random_loop { ImageType ℑ RandomEngine &engine; size_t ax; - vector idx; - vector::iterator it; - vector::iterator stop; + std::vector idx; + std::vector::iterator it; + std::vector::iterator stop; size_t max_cnt; bool status; size_t cnt; diff --git a/core/algo/random_threaded_loop.h b/core/algo/random_threaded_loop.h index dffd307eda..4d6434a08c 100644 --- a/core/algo/random_threaded_loop.h +++ b/core/algo/random_threaded_loop.h @@ -32,19 +32,19 @@ namespace MR { namespace { template struct RandomThreadedLoopRunInner { - const vector &outer_axes; + const std::vector &outer_axes; decltype(Loop(outer_axes)) loop; typename std::remove_reference::type func; double density; Math::RNG::Uniform rng; - const vector dims; + const std::vector dims; std::tuple vox; - RandomThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + RandomThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, const double voxel_density, - const vector dimensions, + const std::vector dimensions, ImageType &...voxels) : outer_axes(outer_axes), loop(Loop(inner_axes)), @@ -67,8 +67,8 @@ template struct RandomThreadedLoopRun }; template struct RandomThreadedLoopRunInner<0, Functor, ImageType...> { - const vector &outer_axes; - const vector inner; + const std::vector &outer_axes; + const std::vector inner; decltype(Loop(outer_axes)) loop; // Random_loop random_loop; typename std::remove_reference::type func; @@ -77,21 +77,21 @@ template struct RandomThreadedLoopRunInner<0 size_t cnt; // Math::RNG::Uniform rng; std::default_random_engine random_engine; - vector idx; - vector::iterator it; - vector::iterator stop; - const vector dims; + std::vector idx; + std::vector::iterator it; + std::vector::iterator stop; + const std::vector dims; // ImageType& image; // RandomEngine& engine; // size_t max_cnt; // bool status; // size_t cnt; - RandomThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + RandomThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, const double voxel_density, - const vector &dimensions, + const std::vector &dimensions, ImageType &...voxels) : outer_axes(outer_axes), inner(inner_axes), @@ -105,7 +105,7 @@ template struct RandomThreadedLoopRunInner<0 Math::RNG rng; typename std::default_random_engine::result_type seed = rng.get_seed(); random_engine = std::default_random_engine{static_cast(seed)}; - idx = vector(dims[inner_axes[0]]); + idx = std::vector(dims[inner_axes[0]]); std::iota(std::begin(idx), std::end(idx), 0); } @@ -138,11 +138,11 @@ template struct RandomThreadedLoopRunInner<0 template struct RandomThreadedLoopRunOuter { Iterator iterator; OuterLoopType outer_loop; - vector inner_axes; + std::vector inner_axes; //! invoke \a functor (const Iterator& pos) per voxel in the outer axes only template - void run_outer(Functor &&functor, const double voxel_density, const vector &dimensions) { + void run_outer(Functor &&functor, const double voxel_density, const std::vector &dimensions) { if (Thread::threads_to_execute() == 0) { for (auto i = outer_loop(iterator); i; ++i) { // std::cerr << "outer: " << str(iterator) << " " << voxel_density << " " << dimensions << std::endl; @@ -181,7 +181,7 @@ template struct RandomThreadedLoopRunOuter { //! invoke \a functor (const Iterator& pos) per voxel in the outer axes only template - void run(Functor &&functor, const double voxel_density, vector dimensions, ImageType &&...vox) { + void run(Functor &&functor, const double voxel_density, std::vector dimensions, ImageType &&...vox) { RandomThreadedLoopRunInner::type, typename std::remove_reference::type...> @@ -193,19 +193,19 @@ template struct RandomThreadedLoopRunOuter { } // namespace template -inline RandomThreadedLoopRunOuter()))> -RandomThreadedLoop(const HeaderType &source, const vector &outer_axes, const vector &inner_axes) { +inline RandomThreadedLoopRunOuter()))> RandomThreadedLoop( + const HeaderType &source, const std::vector &outer_axes, const std::vector &inner_axes) { return {source, Loop(outer_axes), inner_axes}; } template -inline RandomThreadedLoopRunOuter()))> -RandomThreadedLoop(const HeaderType &source, const vector &axes, size_t num_inner_axes = 1) { +inline RandomThreadedLoopRunOuter()))> +RandomThreadedLoop(const HeaderType &source, const std::vector &axes, size_t num_inner_axes = 1) { return {source, Loop(get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } template -inline RandomThreadedLoopRunOuter()))> +inline RandomThreadedLoopRunOuter()))> RandomThreadedLoop(const HeaderType &source, size_t from_axis = 0, size_t to_axis = std::numeric_limits::max(), @@ -216,25 +216,25 @@ RandomThreadedLoop(const HeaderType &source, } template -inline RandomThreadedLoopRunOuter()))> +inline RandomThreadedLoopRunOuter()))> RandomThreadedLoop(const std::string &progress_message, const HeaderType &source, - const vector &outer_axes, - const vector &inner_axes) { + const std::vector &outer_axes, + const std::vector &inner_axes) { return {source, Loop(progress_message, outer_axes), inner_axes}; } template -inline RandomThreadedLoopRunOuter()))> +inline RandomThreadedLoopRunOuter()))> RandomThreadedLoop(const std::string &progress_message, const HeaderType &source, - const vector &axes, + const std::vector &axes, size_t num_inner_axes = 1) { return {source, Loop(progress_message, get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } template -inline RandomThreadedLoopRunOuter()))> +inline RandomThreadedLoopRunOuter()))> RandomThreadedLoop(const std::string &progress_message, const HeaderType &source, size_t from_axis = 0, diff --git a/core/algo/stochastic_threaded_loop.h b/core/algo/stochastic_threaded_loop.h index 9835107c0c..67bcf238b2 100644 --- a/core/algo/stochastic_threaded_loop.h +++ b/core/algo/stochastic_threaded_loop.h @@ -30,15 +30,15 @@ namespace MR { namespace { template struct StochasticThreadedLoopRunInner { - const vector &outer_axes; + const std::vector &outer_axes; decltype(Loop(outer_axes)) loop; typename std::remove_reference::type func; double density; Math::RNG::Uniform rng; std::tuple vox; - StochasticThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + StochasticThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, const double voxel_density, ImageType &...voxels) @@ -63,14 +63,14 @@ template struct StochasticThreadedLoo }; template struct StochasticThreadedLoopRunInner<0, Functor, ImageType...> { - const vector &outer_axes; + const std::vector &outer_axes; decltype(Loop(outer_axes)) loop; typename std::remove_reference::type func; double density; Math::RNG::Uniform rng; - StochasticThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + StochasticThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, const double voxel_density, ImageType &...voxels) @@ -95,7 +95,7 @@ template struct StochasticThreadedLoopRunInn template struct StochasticThreadedLoopRunOuter { Iterator iterator; OuterLoopType outer_loop; - vector inner_axes; + std::vector inner_axes; //! invoke \a functor (const Iterator& pos) per voxel in the outer axes only template void run_outer(Functor &&functor, const double voxel_density) { @@ -149,19 +149,19 @@ template struct StochasticThreadedLoopRunOuter { } // namespace template -inline StochasticThreadedLoopRunOuter()))> -StochasticThreadedLoop(const HeaderType &source, const vector &outer_axes, const vector &inner_axes) { +inline StochasticThreadedLoopRunOuter()))> StochasticThreadedLoop( + const HeaderType &source, const std::vector &outer_axes, const std::vector &inner_axes) { return {source, Loop(outer_axes), inner_axes}; } template -inline StochasticThreadedLoopRunOuter()))> -StochasticThreadedLoop(const HeaderType &source, const vector &axes, size_t num_inner_axes = 1) { +inline StochasticThreadedLoopRunOuter()))> +StochasticThreadedLoop(const HeaderType &source, const std::vector &axes, size_t num_inner_axes = 1) { return {source, Loop(get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } template -inline StochasticThreadedLoopRunOuter()))> +inline StochasticThreadedLoopRunOuter()))> StochasticThreadedLoop(const HeaderType &source, size_t from_axis = 0, size_t to_axis = std::numeric_limits::max(), @@ -172,25 +172,25 @@ StochasticThreadedLoop(const HeaderType &source, } template -inline StochasticThreadedLoopRunOuter()))> +inline StochasticThreadedLoopRunOuter()))> StochasticThreadedLoop(const std::string &progress_message, const HeaderType &source, - const vector &outer_axes, - const vector &inner_axes) { + const std::vector &outer_axes, + const std::vector &inner_axes) { return {source, Loop(progress_message, outer_axes), inner_axes}; } template -inline StochasticThreadedLoopRunOuter()))> +inline StochasticThreadedLoopRunOuter()))> StochasticThreadedLoop(const std::string &progress_message, const HeaderType &source, - const vector &axes, + const std::vector &axes, size_t num_inner_axes = 1) { return {source, Loop(progress_message, get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } template -inline StochasticThreadedLoopRunOuter()))> +inline StochasticThreadedLoopRunOuter()))> StochasticThreadedLoop(const std::string &progress_message, const HeaderType &source, size_t from_axis = 0, diff --git a/core/algo/threaded_copy.h b/core/algo/threaded_copy.h index f4d1ac6eeb..f1f2197097 100644 --- a/core/algo/threaded_copy.h +++ b/core/algo/threaded_copy.h @@ -38,7 +38,7 @@ struct __copy_func { template inline void threaded_copy(InputImageType &source, OutputImageType &destination, - const vector &axes, + const std::vector &axes, size_t num_axes_in_thread = 1) { ThreadedLoop(source, axes, num_axes_in_thread).run(__copy_func(), source, destination); } @@ -56,7 +56,7 @@ template inline void threaded_copy_with_progress_message(const std::string &message, InputImageType &source, OutputImageType &destination, - const vector &axes, + const std::vector &axes, size_t num_axes_in_thread = 1) { ThreadedLoop(message, source, axes, num_axes_in_thread).run(__copy_func(), source, destination); } @@ -74,7 +74,7 @@ inline void threaded_copy_with_progress_message(const std::string &message, template inline void threaded_copy_with_progress(InputImageType &source, OutputImageType &destination, - const vector &axes, + const std::vector &axes, size_t num_axes_in_thread = 1) { threaded_copy_with_progress_message("copying from \"" + shorten(source.name()) + "\" to \"" + shorten(destination.name()) + "\"", diff --git a/core/algo/threaded_loop.h b/core/algo/threaded_loop.h index dd21ea9ec6..08e6fa5020 100644 --- a/core/algo/threaded_loop.h +++ b/core/algo/threaded_loop.h @@ -239,34 +239,34 @@ namespace MR { namespace { -inline vector get_inner_axes(const vector &axes, size_t num_inner_axes) { +inline std::vector get_inner_axes(const std::vector &axes, size_t num_inner_axes) { return {axes.begin(), axes.begin() + num_inner_axes}; } -inline vector get_outer_axes(const vector &axes, size_t num_inner_axes) { +inline std::vector get_outer_axes(const std::vector &axes, size_t num_inner_axes) { return {axes.begin() + num_inner_axes, axes.end()}; } template -inline vector +inline std::vector get_inner_axes(const HeaderType &source, size_t num_inner_axes, size_t from_axis, size_t to_axis) { return get_inner_axes(Stride::order(source, from_axis, to_axis), num_inner_axes); } template -inline vector +inline std::vector get_outer_axes(const HeaderType &source, size_t num_inner_axes, size_t from_axis, size_t to_axis) { return get_outer_axes(Stride::order(source, from_axis, to_axis), num_inner_axes); } template struct ThreadedLoopRunInner { - const vector &outer_axes; + const std::vector &outer_axes; decltype(Loop(outer_axes)) loop; typename std::remove_reference::type func; std::tuple vox; - ThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + ThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, ImageType &...voxels) : outer_axes(outer_axes), loop(Loop(inner_axes)), func(functor), vox(voxels...) {} @@ -279,12 +279,12 @@ template struct ThreadedLoopRunInner }; template struct ThreadedLoopRunInner<0, Functor, ImageType...> { - const vector &outer_axes; + const std::vector &outer_axes; decltype(Loop(outer_axes)) loop; typename std::remove_reference::type func; - ThreadedLoopRunInner(const vector &outer_axes, - const vector &inner_axes, + ThreadedLoopRunInner(const std::vector &outer_axes, + const std::vector &inner_axes, const Functor &functor, ImageType &.../*voxels*/) : outer_axes(outer_axes), loop(Loop(inner_axes)), func(functor) {} @@ -305,7 +305,7 @@ inline auto __manage_progress(const LoopType *loop, const ThreadType *threads) template struct ThreadedLoopRunOuter { Iterator iterator; OuterLoopType outer_loop; - vector inner_axes; + std::vector inner_axes; //! invoke \a functor (const Iterator& pos) per voxel in the outer axes only template void run_outer(Functor &&functor) { @@ -364,23 +364,23 @@ template struct ThreadedLoopRunOuter { //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> -ThreadedLoop(const HeaderType &source, const vector &outer_axes, const vector &inner_axes) { +inline ThreadedLoopRunOuter()))> +ThreadedLoop(const HeaderType &source, const std::vector &outer_axes, const std::vector &inner_axes) { return {source, Loop(outer_axes), inner_axes}; } //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> -ThreadedLoop(const HeaderType &source, const vector &axes, size_t num_inner_axes = 1) { +inline ThreadedLoopRunOuter()))> +ThreadedLoop(const HeaderType &source, const std::vector &axes, size_t num_inner_axes = 1) { return {source, Loop(get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> +inline ThreadedLoopRunOuter()))> ThreadedLoop(const HeaderType &source, size_t from_axis = 0, size_t to_axis = std::numeric_limits::max(), @@ -393,27 +393,28 @@ ThreadedLoop(const HeaderType &source, //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> ThreadedLoop(const std::string &progress_message, - const HeaderType &source, - const vector &outer_axes, - const vector &inner_axes) { +inline ThreadedLoopRunOuter()))> +ThreadedLoop(const std::string &progress_message, + const HeaderType &source, + const std::vector &outer_axes, + const std::vector &inner_axes) { return {source, Loop(progress_message, outer_axes), inner_axes}; } //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> ThreadedLoop(const std::string &progress_message, - const HeaderType &source, - const vector &axes, - size_t num_inner_axes = 1) { +inline ThreadedLoopRunOuter()))> ThreadedLoop(const std::string &progress_message, + const HeaderType &source, + const std::vector &axes, + size_t num_inner_axes = 1) { return {source, Loop(progress_message, get_outer_axes(axes, num_inner_axes)), get_inner_axes(axes, num_inner_axes)}; } //! Multi-threaded loop object //* \sa image_thread_looping for details */ template -inline ThreadedLoopRunOuter()))> +inline ThreadedLoopRunOuter()))> ThreadedLoop(const std::string &progress_message, const HeaderType &source, size_t from_axis = 0, diff --git a/core/app.cpp b/core/app.cpp index 803dff2ad3..ae94f2aa96 100644 --- a/core/app.cpp +++ b/core/app.cpp @@ -90,8 +90,8 @@ const char *SYNOPSIS = nullptr; std::string NAME; std::string command_history_string; -vector argument; -vector option; +std::vector argument; +std::vector option; // ENVVAR name: MRTRIX_QUIET // ENVVAR Do not display information messages or progress status. This has @@ -121,7 +121,7 @@ void (*check_overwrite_files_func)(const std::string &name) = nullptr; namespace { -inline void get_matches(vector &candidates, const OptionGroup &group, const std::string &stub) { +inline void get_matches(std::vector &candidates, const OptionGroup &group, const std::string &stub) { for (size_t i = 0; i < group.size(); ++i) { if (stub.compare(0, stub.size(), std::string(group[i].id), 0, stub.size()) == 0) candidates.push_back(&group[i]); @@ -139,11 +139,11 @@ std::string paragraph(const std::string &header, const std::string &text, int he if (size(line) < indent) resize(line, indent, ' '); - vector paragraphs = split(text, "\n"); + std::vector paragraphs = split(text, "\n"); for (size_t n = 0; n < paragraphs.size(); ++n) { size_t i = 0; - vector words = split(paragraphs[n]); + std::vector words = split(paragraphs[n]); while (i < words.size()) { do { line += " " + words[i++]; @@ -370,7 +370,7 @@ std::string OptionGroup::contents(int format) const { std::string OptionGroup::footer(int format) { return format ? "" : "\n"; } std::string OptionList::syntax(int format) const { - vector group_names; + std::vector group_names; for (size_t i = 0; i < size(); ++i) { if (std::find(group_names.begin(), group_names.end(), (*this)[i].name) == group_names.end()) group_names.push_back((*this)[i].name); @@ -606,7 +606,7 @@ std::string markdown_usage() { } } - vector group_names; + std::vector group_names; for (size_t i = 0; i < OPTIONS.size(); ++i) { if (std::find(group_names.begin(), group_names.end(), OPTIONS[i].name) == group_names.end()) group_names.push_back(OPTIONS[i].name); @@ -734,7 +734,7 @@ std::string restructured_text_usage() { } } - vector group_names; + std::vector group_names; for (size_t i = 0; i < OPTIONS.size(); ++i) { if (std::find(group_names.begin(), group_names.end(), OPTIONS[i].name) == group_names.end()) group_names.push_back(OPTIONS[i].name); @@ -795,7 +795,7 @@ const Option *match_option(const char *arg) { if (consume_dash(arg) && *arg && !isdigit(*arg) && *arg != '.') { while (consume_dash(arg)) ; - vector candidates; + std::vector candidates; std::string root(arg); for (size_t i = 0; i < OPTIONS.size(); ++i) @@ -944,7 +944,7 @@ void parse() { s += " " + std::string(a); e.push_back(s); if (argument.size() > num_args_required) { - vector potential_options; + std::vector potential_options; for (const auto &a : argument) { for (const auto &og : OPTIONS) { for (const auto &o : og) { @@ -1139,8 +1139,8 @@ void init(int cmdline_argc, const char *const *cmdline_argv) { srand(time(nullptr)); } -const vector get_options(const std::string &name) { - vector matches; +const std::vector get_options(const std::string &name) { + std::vector matches; for (size_t i = 0; i < option.size(); ++i) { assert(option[i].opt); if (option[i].opt->is(name)) diff --git a/core/app.h b/core/app.h index 05b5e5111a..56f6422ccc 100644 --- a/core/app.h +++ b/core/app.h @@ -65,7 +65,7 @@ std::string usage_syntax(int format); // @{ //! vector of strings to hold more comprehensive command description -class Description : public vector { +class Description : public std::vector { public: Description &operator+(const char *text) { push_back(text); @@ -93,7 +93,7 @@ class Example { }; //! a class to hold the list of Example's -class ExampleList : public vector { +class ExampleList : public std::vector { public: ExampleList &operator+(const Example &example) { push_back(example); @@ -104,7 +104,7 @@ class ExampleList : public vector { }; //! a class to hold the list of Argument's -class ArgumentList : public vector { +class ArgumentList : public std::vector { public: ArgumentList &operator+(const Argument &argument) { push_back(argument); @@ -115,7 +115,7 @@ class ArgumentList : public vector { }; //! a class to hold the list of option groups -class OptionList : public vector { +class OptionList : public std::vector { public: OptionList &operator+(const OptionGroup &option_group) { push_back(option_group); @@ -135,7 +135,7 @@ class OptionList : public vector { OptionGroup &back() { if (empty()) push_back(OptionGroup()); - return vector::back(); + return std::vector::back(); } std::string syntax(int format) const; @@ -184,34 +184,34 @@ class ParsedArgument { uint64_t as_uint() const { return uint64_t(as_int()); } default_type as_float() const; - vector as_sequence_int() const { + std::vector as_sequence_int() const { assert(arg->type == IntSeq); try { return parse_ints(p); } catch (Exception &e) { error(e); } - return vector(); + return std::vector(); } - vector as_sequence_uint() const { + std::vector as_sequence_uint() const { assert(arg->type == IntSeq); try { return parse_ints(p); } catch (Exception &e) { error(e); } - return vector(); + return std::vector(); } - vector as_sequence_float() const { + std::vector as_sequence_float() const { assert(arg->type == FloatSeq); try { return parse_floats(p); } catch (Exception &e) { error(e); } - return vector(); + return std::vector(); } operator bool() const { return as_bool(); } @@ -223,9 +223,9 @@ class ParsedArgument { operator long long unsigned int() const { return as_uint(); } operator float() const { return as_float(); } operator double() const { return as_float(); } - operator vector() const { return as_sequence_int(); } - operator vector() const { return as_sequence_uint(); } - operator vector() const { return as_sequence_float(); } + operator std::vector() const { return as_sequence_int(); } + operator std::vector() const { return as_sequence_uint(); } + operator std::vector() const { return as_sequence_float(); } const char *c_str() const { return p; } @@ -298,9 +298,9 @@ class ParsedOption { }; //! the list of arguments parsed from the command-line -extern vector argument; +extern std::vector argument; //! the list of options parsed from the command-line -extern vector option; +extern std::vector option; //! additional description of the command over and above the synopsis /*! This is designed to be used within each command's usage() function. Add @@ -409,11 +409,11 @@ extern OptionGroup __standard_options; * std::string arg1 = opt[0][0]; * int arg2 = opt[0][1]; * float arg3 = opt[0][2]; - * vector arg4 = opt[0][3]; + * std::vector arg4 = opt[0][3]; * auto values = opt[0][4].as_sequence_float(); * } * \endcode */ -const vector get_options(const std::string &name); +const std::vector get_options(const std::string &name); //! Returns the option value if set, and the default otherwise. /*! Only be used for command-line options that do not specify diff --git a/core/cmdline_option.h b/core/cmdline_option.h index 42bc1929cf..51718042f9 100644 --- a/core/cmdline_option.h +++ b/core/cmdline_option.h @@ -326,7 +326,7 @@ class Argument { * Options can also be specified as required (see required() function), or * as multiple (see allow_multiple() function). */ -class Option : public vector { +class Option : public std::vector { public: Option() : id(nullptr), flags(Optional) {} @@ -391,7 +391,7 @@ class Option : public vector { * } * \endcode */ -class OptionGroup : public vector