(self)
| 286 | return fitIDs |
| 287 | |
| 288 | def processTargetProfileChange(self): |
| 289 | fitIDs = set() |
| 290 | for fit in set(self._loadedFits): |
| 291 | if fit is None: |
| 292 | continue |
| 293 | if not fit.targetProfile: |
| 294 | continue |
| 295 | if fit.calculated: |
| 296 | self.recalc(fit) |
| 297 | fitIDs.add(fit.ID) |
| 298 | return fitIDs |
| 299 | |
| 300 | def switchFit(self, fitID): |
| 301 | pyfalog.debug("Switching fit to fit ID: {0}", fitID) |