Commits
Kumar Golap authored 5c4ef325f2d Merge
140 140 | ###commenting this out so that tuneSelect is done after weighting |
141 141 | ###CAS-11687 |
142 142 | # For cube imaging: align the data selections and image setup |
143 143 | |
144 144 | #if self.allimpars['0']['specmode'] != 'mfs' and self.allimpars['0']['specmode'] != 'cubedata': |
145 145 | # self.SItool.tuneselectdata() |
146 146 | ###For cubes create cfcache ahead of each partition trying |
147 147 | ### to create it as it is not multiprocess safe |
148 148 | if(("cube" in self.allimpars['0']['specmode']) or ("awphpg" in self.allgridpars['0']['gridder'])): |
149 149 | self.makeCFCache(exists); |
150 + | ### Warning about awp2/mosaic not having conjbeam thus will not be correct on first major cycles |
151 + | ## CAS-14146 : Krishna : Moved this warning to task_tclean.py along with the other warnings there. |
152 + | #if( ("mfs" in self.allimpars['0']['specmode']) and ("mtmfs" in self.allimpars['0']['deconvolver']) and (self.allgridpars['0']['gridder'] in ['awp2', 'mosaic']) ): |
153 + | # casalog.post( |
154 + | # "You may consider using specmode=mvc with "+self.allgridpars['0']['gridder'] |
155 + | # +" as this gridder does not use conjbeams \n thus need a couple of major cycle to converge to the correct answer", |
156 + | # "WARN" |
157 + | # ) |
158 + | |
150 159 | |
151 160 | ############################################# |
152 161 | |
153 162 | def initializeDeconvolvers(self): |
154 163 | for immod in range(0, self.NF): |
155 164 | self.SDtools.append(synthesisdeconvolver()) |
156 165 | self.SDtools[immod].setupdeconvolution(decpars=self.alldecpars[str(immod)]) |
157 166 | |
158 167 | ############################################# |
159 168 | ## Overloaded by ParallelCont |