@@ -21,6 +21,7 @@ def __init__(self):
21
21
self .initUI ()
22
22
23
23
def initUI (self ):
24
+ """Initialize the GUI for fourigui"""
24
25
25
26
self .loaded = False # denotes whether a dataset is loaded
26
27
self .transformed = False # denotes whether dataset is Fourier transformed
@@ -501,6 +502,9 @@ def applycutoff(self):
501
502
self .intensity_upd_global ()
502
503
503
504
def redocutuff (self ):
505
+ """
506
+ Redo the cutoff operation depending on the current space (real or reciprocal).
507
+ """
504
508
if self .space .get (): # in real space
505
509
self .cube_realcut = self .cube
506
510
if not self .transformed :
@@ -513,6 +517,9 @@ def redocutuff(self):
513
517
self .intensity_upd_global ()
514
518
515
519
def newcutoff (self ):
520
+ """
521
+ Apply a new cutoff based on the current space and cutoff settings.
522
+ """
516
523
if self .cutoff .get ():
517
524
if self .space .get () and self .transformed :
518
525
self .cube = self .cube_real
@@ -523,6 +530,9 @@ def newcutoff(self):
523
530
self .applycutoff ()
524
531
525
532
def plot_next_plane (self ):
533
+ """
534
+ Plot the next plane in the dataset, looping back to the first if at the end.
535
+ """
526
536
n = self .plane_num .get ()
527
537
if n == len (self .cube [self .axis .get ()]) - 1 :
528
538
n = 0
@@ -533,7 +543,7 @@ def plot_next_plane(self):
533
543
534
544
def animation (self ):
535
545
"""
536
- slices through the 3D array along the selcted axis
546
+ slices through the 3D array along the selected axis
537
547
"""
538
548
try :
539
549
if not self .anientry .get ():
@@ -548,6 +558,9 @@ def animation(self):
548
558
self .plot_next_plane ()
549
559
550
560
def multiple_funcs (* funcs ):
561
+ """
562
+ Executes multiple functions passed as arguments in sequence.
563
+ """
551
564
for func in funcs :
552
565
func
553
566
0 commit comments