Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions benchmarks/calc_signal_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
# Defining defaults
###################

_LRES = [-3,-3,0]
_LLOS = [5,5,0]
_LT = [3,3,0]
_LRES = [-3, -3, 0]
_LLOS = [5, 5, 0]
_LT = [3, 3, 0]
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Useless but ok

_NREP = 2

_DRES = abs(_LRES[1] - _LRES[0])
Expand Down
14 changes: 1 addition & 13 deletions tofu/geom/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1500,22 +1500,10 @@ class PFC(StructOut):
class CoilPF(StructOut):
_color = 'r'

def __init__(self, Poly=None, Type=None, Lim=None, pos=None, extent=None,
Id=None, Name=None, Exp=None, shot=None,
sino_RefPt=None, sino_nP=_def.TorNP,
Clock=False, arrayorder='C', fromdict=None,
nturns=None, superconducting=None, active=None,
SavePath=os.path.abspath('./'),
SavePath_Include=tfpf.defInclude, color=None):
kwdargs = locals()
del kwdargs['self'], kwdargs['__class__']
# super()
super(CoilPF,self).__init__(mobile=False, **kwdargs)

def __init__(self, nturns=None, superconducting=None, active=None,
**kwdargs):
# super()
super(CoilPF,self).__init__(**kwdargs)
super(CoilPF, self).__init__(mobile=False, **kwdargs)

def _reset(self):
# super()
Expand Down
2 changes: 1 addition & 1 deletion tofu/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Do not edit, pipeline versioning governed by git tags!
__version__ = '1.4.1-52-g6f060e3'
__version__ = '1.4.1-52-g6f060e3'