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


Python BetterConfigParser.remove_section方法代码示例

本文整理汇总了Python中myutils.BetterConfigParser.remove_section方法的典型用法代码示例。如果您正苦于以下问题:Python BetterConfigParser.remove_section方法的具体用法?Python BetterConfigParser.remove_section怎么用?Python BetterConfigParser.remove_section使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在myutils.BetterConfigParser的用法示例。


在下文中一共展示了BetterConfigParser.remove_section方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: get_weights

# 需要导入模块: from myutils import BetterConfigParser [as 别名]
# 或者: from myutils.BetterConfigParser import remove_section [as 别名]
    canvas = ROOT.TCanvas("lheV_pt","lheV_pt",600,600)
    ROOT.gPad.SetLogy()
    histo.Draw()
    histo1.Draw('SAME')

    #print histo.Integral(100,300)
    #print histo1.Integral(100,300)

    histo1.SetLineColor(ROOT.kRed)

    canvas.Print("validation_lheV_pt.pdf","pdf")

if opts.weights:
    weight_map = get_weights(fileList,lheBin)
    config.set('lheWeights', 'weights_per_bin', '%s' %weight_map)
    f = open('13TeVconfig/lheWeights', 'w')
    for section in config.sections():
        if not section == 'lheWeights':
            config.remove_section(section)
    config.write(f)
    f.close()

elif opts.apply:
    weight_map = eval(config.get('lheWeights', 'weights_per_bin'))

if opts.apply:
    apply_weights(fileList,weight_map,prefix+inclusive,newpostfix)

if opts.validate:
    do_validation(fileList,inclusive,newpostfix)
开发者ID:dcurry09,项目名称:Heppy,代码行数:32,代码来源:addingSamples.py


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