本文整理汇总了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)