本文整理汇总了Python中diffpy.srfit.fitbase.FitContribution.__init__方法的典型用法代码示例。如果您正苦于以下问题:Python FitContribution.__init__方法的具体用法?Python FitContribution.__init__怎么用?Python FitContribution.__init__使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类diffpy.srfit.fitbase.FitContribution
的用法示例。
在下文中一共展示了FitContribution.__init__方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from diffpy.srfit.fitbase import FitContribution [as 别名]
# 或者: from diffpy.srfit.fitbase.FitContribution import __init__ [as 别名]
def __init__(self, name):
"""Create the PDFContribution.
name -- The name of the contribution.
"""
FitContribution.__init__(self, name)
self._meta = {}
# Add the profile
profile = Profile()
self.setProfile(profile, xname = "r")
# Need a parameter for the overall scale, in the case that this is a
# multi-phase fit.
self.newParameter("scale", 1.0)
# Profile-related parameters that will be shared between the generators
self.newParameter("qdamp", 0)
self.newParameter("qbroad", 0)
return