本文整理汇总了Python中icf.core.PSet.DirName方法的典型用法代码示例。如果您正苦于以下问题:Python PSet.DirName方法的具体用法?Python PSet.DirName怎么用?Python PSet.DirName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类icf.core.PSet
的用法示例。
在下文中一共展示了PSet.DirName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: PSet
# 需要导入模块: from icf.core import PSet [as 别名]
# 或者: from icf.core.PSet import DirName [as 别名]
pset = PSet(
DirName = "275_infGev",
MinObjects = 1,
MaxObjects = 2,
StandardPlots = True,
)
Npset = PSet(
DirName = "n275_infGev",
MinObjects = 1,
MaxObjects = 2,
StandardPlots = True,
)
pset2 = deepcopy(pset)
pset2.DirName = "275_375Gev"
Npset2 = deepcopy(Npset)
Npset2.DirName = "n275_375Gev"
pset3 = deepcopy(pset)
pset3.DirName = "375GeVafterDeadEcal"
Npset3 = deepcopy(Npset)
Npset3.DirName = "n375GeVafterDeadEcal"
pset4 = deepcopy(pset)
pset4.DirName = "allCuts"
Npset4 = deepcopy(Npset)
Npset4.DirName = "nAllCuts"
# Define a crap load more plotting ops, for HT exclusive bins
Plot_275_325_Fail_pset = deepcopy(genericPSet)
示例2: PSet
# 需要导入模块: from icf.core import PSet [as 别名]
# 或者: from icf.core.PSet import DirName [as 别名]
pset = PSet(
DirName = "250_infGev",
MinObjects = 1,
MaxObjects = 2,
StandardPlots = True,
)
Npset = PSet(
DirName = "n250_infGev",
MinObjects = 3,
MaxObjects = 15,
StandardPlots = True,
)
pset2 = deepcopy(pset)
pset2.DirName = "250_350Gev"
Npset2 = deepcopy(Npset)
Npset2.DirName = "n250_350Gev"
pset3 = deepcopy(pset)
pset3.DirName = "350GeVafterDeadEcal"
Npset3 = deepcopy(Npset)
Npset3.DirName = "n350GeVafterDeadEcal"
pset4 = deepcopy(pset)
pset4.DirName = "allCuts"
Npset4 = deepcopy(Npset)
Npset4.DirName = "nAllCuts"
HTplot = WeeklyUpdatePlots(pset.ps())