Skip to content
Snippets Groups Projects
Commit 2f0797d2 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

Convert np.float and np.complex to python default

np.float and np.complex are deprecated since NumPy 1.20.
parent d756f5a2
No related branches found
No related tags found
No related merge requests found
...@@ -119,12 +119,12 @@ class Bunch: ...@@ -119,12 +119,12 @@ class Bunch:
current = 0 current = 0
self._mp_number = int(mp_number) self._mp_number = int(mp_number)
self.dtype = np.dtype([('x',np.float), self.dtype = np.dtype([('x', float),
('xp',np.float), ('xp', float),
('y',np.float), ('y', float),
('yp',np.float), ('yp', float),
('tau',np.float), ('tau', float),
('delta',np.float)]) ('delta', float)])
self.particles = np.zeros(self.mp_number, self.dtype) self.particles = np.zeros(self.mp_number, self.dtype)
self.track_alive = track_alive self.track_alive = track_alive
......
...@@ -200,8 +200,8 @@ class CavityResonator(): ...@@ -200,8 +200,8 @@ class CavityResonator():
self.detune = detune self.detune = detune
self.Vc = Vc self.Vc = Vc
self.theta = theta self.theta = theta
self.beam_phasor = np.zeros(1, dtype=np.complex) self.beam_phasor = np.zeros(1, dtype=complex)
self.beam_phasor_record = np.zeros((self.ring.h), dtype=np.complex) self.beam_phasor_record = np.zeros((self.ring.h), dtype=complex)
self.tracking = False self.tracking = False
self.Vg = 0 self.Vg = 0
self.theta_g = 0 self.theta_g = 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment