当前位置: 首页>>代码示例>>Python>>正文


Python CombineToolBase.attach_intercept_args方法代码示例

本文整理汇总了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')
开发者ID:cms-analysis,项目名称:CombineHarvester,代码行数:9,代码来源:Impacts.py

示例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')
开发者ID:rcl11,项目名称:CombineHarvester,代码行数:10,代码来源:EnhancedCombine.py

示例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')
开发者ID:truggles,项目名称:CombineHarvester,代码行数:14,代码来源:EnhancedCombine.py

示例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')
开发者ID:capalmer85,项目名称:CombineHarvester,代码行数:18,代码来源:EnhancedCombine.py

示例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)
开发者ID:cms-analysis,项目名称:CombineHarvester,代码行数:6,代码来源:LimitGrids.py

示例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""")
开发者ID:AlexandreMertens,项目名称:CombineHarvester,代码行数:7,代码来源:T2W.py

示例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)
开发者ID:rcl11,项目名称:CombineHarvester,代码行数:4,代码来源:LimitGrids.py

示例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)
开发者ID:AlexandreMertens,项目名称:CombineHarvester,代码行数:6,代码来源:ImpactsFromScans.py


注:本文中的CombineHarvester.CombineTools.combine.CombineToolBase.CombineToolBase.attach_intercept_args方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。