Closed skrbcr closed 1 day ago
At Step 5-1, No-avg do mstransform
whereas Avg do split
. In my experience, split
complements lacked columns. Using it in no-avg may solve the problem...???
At Step 5-1, No-avg do
mstransform
whereas Avg dosplit
. In my experience,split
complements lacked columns. Using it in no-avg may solve the problem...???
Though this turns out to be nothing, I will keep this change because of the symmetry between avg and no-avg.
I noticed that avg do Step 5-2 uvfit_createcol(dryrun=dryrun)
created CORRECTED_DATA
:
# step5-2: create model column
def uvfit_createcol(self, modelcol=True, dryrun=False):
if not dryrun:
kw_clearcal = {
'vis': f'calibrated/{self.visname}.split.{self.field}.spw_{self.spw}',
'addmodel': modelcol,
}
from casatasks import clearcal
clearcal(**kw_clearcal)
Actually, clearcal generates this column. I'll try to add this Step to no-avg.
An error occurred at Step 5-3 of
QSOanalysis
. I doubt the cause is Step 5-1 since no-avg is running into this problem (not found in theCORRECTED_DATA
column) whereasavg
is processed normally.