From 233ff3174f5453245edda551f3492e7fc233ef09 Mon Sep 17 00:00:00 2001
From: Michiel Cottaar <michiel.cottaar@ndcn.ox.ac.uk>
Date: Thu, 15 Feb 2024 16:38:14 +0000
Subject: [PATCH] Remove unused symmetric parameter

---
 src/components/pulses/sinc_pulses.jl | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/components/pulses/sinc_pulses.jl b/src/components/pulses/sinc_pulses.jl
index 8e19aa3..9ffebfb 100644
--- a/src/components/pulses/sinc_pulses.jl
+++ b/src/components/pulses/sinc_pulses.jl
@@ -25,7 +25,6 @@ Represents a radio-frequency pulse with a sinc-like amplitude and constant frequ
 - [`bandwidth`](@ref): width of the rectangular function in frequency space (in kHz). If the `duration` is short (compared with 1/`bandwidth`), this bandwidth will only be approximate.
 """
 struct SincPulse <: RFPulseComponent
-    symmetric :: Bool
     apodise :: Bool
     Nzeros :: Tuple{Integer, Integer}
     norm_flip_angle :: Tuple{Float64, Float64}
@@ -44,7 +43,6 @@ function SincPulse(;
         Nzeros = (Nzeros, Nzeros)
     end
     res = SincPulse(
-        symmetric,
         apodise,
         Nzeros,
         integral_nzero.(Nzeros, apodise),
-- 
GitLab