本文整理汇总了Python中EDPluginMOSFLMv10.EDPluginMOSFLMv10.postProcess方法的典型用法代码示例。如果您正苦于以下问题:Python EDPluginMOSFLMv10.postProcess方法的具体用法?Python EDPluginMOSFLMv10.postProcess怎么用?Python EDPluginMOSFLMv10.postProcess使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类EDPluginMOSFLMv10.EDPluginMOSFLMv10
的用法示例。
在下文中一共展示了EDPluginMOSFLMv10.postProcess方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: postProcess
# 需要导入模块: from EDPluginMOSFLMv10 import EDPluginMOSFLMv10 [as 别名]
# 或者: from EDPluginMOSFLMv10.EDPluginMOSFLMv10 import postProcess [as 别名]
def postProcess(self, _edObject=None):
EDPluginMOSFLMv10.postProcess(self)
self.DEBUG("EDPluginMOSFLMIntegrationv10.postProcess")
xsDataMOSFLMOutputIntegration = self.createDataMOSFLMOutputIntegration()
if (xsDataMOSFLMOutputIntegration is None):
strError = "MOSFLM integration error : no integration results obtained."
self.addExecutiveSummaryLine(strError)
self.ERROR(strError)
self.setFailure()
else:
self.setDataOutput(xsDataMOSFLMOutputIntegration)
示例2: postProcess
# 需要导入模块: from EDPluginMOSFLMv10 import EDPluginMOSFLMv10 [as 别名]
# 或者: from EDPluginMOSFLMv10.EDPluginMOSFLMv10 import postProcess [as 别名]
def postProcess(self, _edObject=None):
EDPluginMOSFLMv10.postProcess(self)
EDVerbose.DEBUG("EDPluginMOSFLMGeneratePredictionv10.postProcess")
xsDataMOSFLMOutputGeneratePrediction = self.createDataMOSFLMOutputGeneratePrediction()
self.setDataOutput(xsDataMOSFLMOutputGeneratePrediction)
示例3: finallyProcess
# 需要导入模块: from EDPluginMOSFLMv10 import EDPluginMOSFLMv10 [as 别名]
# 或者: from EDPluginMOSFLMv10.EDPluginMOSFLMv10 import postProcess [as 别名]
def finallyProcess(self, _edObject=None):
EDPluginMOSFLMv10.postProcess(self)
EDVerbose.DEBUG("EDPluginMOSFLMIndexingv10.finallyProcess")
xsDataMOSFLMOutputIndexing = self.createDataMOSFLMOutputIndexing()
self.setDataOutput(xsDataMOSFLMOutputIndexing)