Commits
Vincent Geers authored 80b3bbc88f2
32 32 | outframe = vdp.VisDependentProperty(default='LSRK') |
33 33 | phasecenter = vdp.VisDependentProperty(default='') |
34 34 | start = vdp.VisDependentProperty(default='') |
35 35 | uvrange = vdp.VisDependentProperty(default='') |
36 36 | width = vdp.VisDependentProperty(default='') |
37 37 | clearlist = vdp.VisDependentProperty(default=True) |
38 38 | per_eb = vdp.VisDependentProperty(default=False) |
39 39 | calcsb = vdp.VisDependentProperty(default=False) |
40 40 | datacolumn = vdp.VisDependentProperty(default='') |
41 41 | parallel = vdp.VisDependentProperty(default='automatic') |
42 + | robust = vdp.VisDependentProperty(default=None) |
43 + | uvtaper = vdp.VisDependentProperty(default=None) |
42 44 | |
43 45 | # properties requiring some processing or MS-dependent logic ------------------------------------------------------- |
44 46 | |
45 47 | contfile = vdp.VisDependentProperty(default='cont.dat') |
46 48 | |
47 49 | postprocess | .
48 50 | def contfile(self, unprocessed): |
49 51 | return os.path.join(self.context.output_dir, unprocessed) |
50 52 | |
51 53 | VisDependentProperty | .