本文整理汇总了Python中CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase.attach_intercept_args方法的典型用法代码示例。如果您正苦于以下问题:Python CombineToolBase.attach_intercept_args方法的具体用法?Python CombineToolBase.attach_intercept_args怎么用?Python CombineToolBase.attach_intercept_args使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase
的用法示例。
在下文中一共展示了CombineToolBase.attach_intercept_args方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument('-m', '--mass', required=True)
group.add_argument('-d', '--datacard', required=True)
group.add_argument('--redefineSignalPOIs')
group.add_argument('--setPhysicsModelParameters')
group.add_argument('--name', '-n', default='Test')
示例2: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument(
'-m', '--mass', help='Supports range strings for multiple masses, e.g. "120:130:5,140 will produce three combine calls with mass values of 120, 125, 130 and 140"')
group.add_argument(
'--points', help='For use with "-M MultiDimFit --algo grid" to split scan points into separate jobs')
group.add_argument('--name', '-n', default='.Test',
help='Name used to label the combine output file, can be modified by other options')
示例3: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument(
'-m', '--mass', help='Supports range strings for multiple masses, e.g. "120:130:5,140 will produce three combine calls with mass values of 120, 125, 130 and 140"')
group.add_argument(
'--points', help='For use with "-M MultiDimFit --algo grid" to split scan points into separate jobs')
group.add_argument(
'--singlePoint', help='Supports range strings for multiple points to test, uses the same format as the --mass argument')
group.add_argument(
'--boundlist', help='Name of json-file which contains the ranges of physical parameters depending on the given mass and given physics model')
group.add_argument('--name', '-n', default='.Test',
help='Name used to label the combine output file, can be modified by other options')
示例4: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument(
'-m', '--mass', help='Supports range strings for multiple masses, e.g. "120:130:5,140 will produce three combine calls with mass values of 120, 125, 130 and 140"')
group.add_argument(
'--points', help='For use with "-M MultiDimFit --algo grid" to split scan points into separate jobs')
group.add_argument(
'--singlePoint', help='Supports range strings for multiple points to test, uses the same format as the --mass argument')
group.add_argument(
'-s', '--seed', help='Supports range strings for multiple RNG seeds, uses the same format as the --mass argument')
group.add_argument(
'-d', '--datacard', nargs='*', default=[], help='Operate on multiple datacards')
group.add_argument('--name', '-n', default='.Test',
help='Name used to label the combine output file, can be modified by other options')
group.add_argument(
'--setPhysicsModelParameterRanges', help='Some other options will modify or add to the list of parameter ranges')
示例5: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument('--setPhysicsModelParameters', default=None)
group.add_argument('--freezeNuisances', default=None)
示例6: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument(
'-m', '--mass', help="""
The mass value to set in the text2workspace.py call""")
示例7: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
示例8: attach_intercept_args
# 需要导入模块: from CombineHarvester.CombineTools.combine.CombineToolBase import CombineToolBase [as 别名]
# 或者: from CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase import attach_intercept_args [as 别名]
def attach_intercept_args(self, group):
CombineToolBase.attach_intercept_args(self, group)
group.add_argument('--name', '-n', default='Test')
group.add_argument('-m', '--mass', required=True)