@@ -629,9 +629,6 @@ class WfsConfig(ConfigObj):
629
629
``GSPosition`` tuple: position of GS on-sky in arc-secs
630
630
``wavelength`` float: wavelength of GS light in metres
631
631
``nxSubaps`` int: number of SH sub-apertures
632
- ``pxlsPerSubap`` int: number of pixels per sub-apertures
633
- ``subapFOV`` float: Field of View of sub-aperture in
634
- arc-secs
635
632
================== ===================
636
633
637
634
Optional:
@@ -701,6 +698,10 @@ class WfsConfig(ConfigObj):
701
698
system processor number. ``1``
702
699
``fftwFlag`` str: Flag to pass to FFTW
703
700
when preparing plan. ``FFTW_PATIENT``
701
+ ``pxlsPerSubap`` int: number of pixels per
702
+ sub-apertures ``10``
703
+ ``subapFOV`` float: Field of View of
704
+ sub-aperture in arc-secs ``5``
704
705
=================== ================================== ===========
705
706
706
707
@@ -709,8 +710,6 @@ class WfsConfig(ConfigObj):
709
710
requiredParams = [ "GSPosition" ,
710
711
"wavelength" ,
711
712
"nxSubaps" ,
712
- "pxlsPerSubap" ,
713
- "subapFOV" ,
714
713
]
715
714
optionalParams = [ ("propagationMode" , "Geometric" ),
716
715
("fftwThreads" , 1 ),
@@ -734,6 +733,8 @@ class WfsConfig(ConfigObj):
734
733
("GSMag" , 0.0 ),
735
734
("wvlBandWidth" , 100. ),
736
735
("extendedObject" , None ),
736
+ ("pxlsPerSubap" , 10 ),
737
+ ("subapFOV" , 5 ),
737
738
]
738
739
739
740
# Parameters which may be Set at some point and are allowed
0 commit comments