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


Python ConfigSection.steps方法代码示例

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


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

示例1:

# 需要导入模块: from WMCore.Configuration import ConfigSection [as 别名]
# 或者: from WMCore.Configuration.ConfigSection import steps [as 别名]
FrameworkJobReport.logArch1.output.logArchive.files.file0.checksums = {
    "adler32": "47ae1f48",
    "cksum": "1500280488",
    "md5": "d47b198efa54e0432c346169ae36bfb5",
}
FrameworkJobReport.logArch1.output.logArchive.files.file0.events = 0
FrameworkJobReport.logArch1.output.logArchive.files.file0.merged = False
FrameworkJobReport.logArch1.output.logArchive.files.file0.size = 0
FrameworkJobReport.logArch1.output.logArchive.files.fileCount = 1
FrameworkJobReport.logArch1.output.logArchive.section_("dataset")
FrameworkJobReport.logArch1.id = None
FrameworkJobReport.logArch1.counter = 2
FrameworkJobReport.WMAgentJobName = "d0080012-ae33-11e1-a16b-003048c9c3fe-0"
FrameworkJobReport.seName = "srmcms.pic.es"
FrameworkJobReport.WMAgentJobID = 43441
FrameworkJobReport.steps = ["cmsRun1", "stageOut1", "logArch1"]
FrameworkJobReport.section_("stageOut1")
FrameworkJobReport.stageOut1.status = 0
FrameworkJobReport.stageOut1.section_("cleanup")
FrameworkJobReport.stageOut1.cleanup.section_("unremoved")
FrameworkJobReport.stageOut1.cleanup.section_("removed")
FrameworkJobReport.stageOut1.cleanup.removed.fileCount = 0
FrameworkJobReport.stageOut1.section_("errors")
FrameworkJobReport.stageOut1.section_("logs")
FrameworkJobReport.stageOut1.section_("parameters")
FrameworkJobReport.stageOut1.outputModules = []
FrameworkJobReport.stageOut1.stopTime = 1338808536.02
FrameworkJobReport.stageOut1.section_("site")
FrameworkJobReport.stageOut1.section_("analysis")
FrameworkJobReport.stageOut1.analysis.section_("files")
FrameworkJobReport.stageOut1.analysis.files.fileCount = 0
开发者ID:pietverwilligen,项目名称:WMCore,代码行数:33,代码来源:MergeSample.py

示例2:

# 需要导入模块: from WMCore.Configuration import ConfigSection [as 别名]
# 或者: from WMCore.Configuration.ConfigSection import steps [as 别名]
FrameworkJobReport.logArch1.output.logArchive.files.file0.lfn = '/store/unmerged/logs/prod/2012/6/4/Run195376-MuEG-Run2012B-PromptReco-v1-MuEG/DataProcessing/DataProcessingMergeSKIMStreamLogError/0000/0/d0080012-ae33-11e1-a16b-003048c9c3fe-0-0-logArchive.tar.gz'
FrameworkJobReport.logArch1.output.logArchive.files.file0.pfn = 'srm://srmcms.pic.es:8443/srm/managerv2?SFN=/pnfs/pic.es/data/cms/store/unmerged/logs/prod/2012/6/4/Run195376-MuEG-Run2012B-PromptReco-v1-MuEG/DataProcessing/DataProcessingMergeSKIMStreamLogError/0000/0/d0080012-ae33-11e1-a16b-003048c9c3fe-0-0-logArchive.tar.gz'
FrameworkJobReport.logArch1.output.logArchive.files.file0.module_label = 'logArchive'
FrameworkJobReport.logArch1.output.logArchive.files.file0.location = 'srmcms.pic.es'
FrameworkJobReport.logArch1.output.logArchive.files.file0.checksums = {'adler32': '47ae1f48', 'cksum': '1500280488', 'md5': 'd47b198efa54e0432c346169ae36bfb5'}
FrameworkJobReport.logArch1.output.logArchive.files.file0.events = 0
FrameworkJobReport.logArch1.output.logArchive.files.file0.merged = False
FrameworkJobReport.logArch1.output.logArchive.files.file0.size = 0
FrameworkJobReport.logArch1.output.logArchive.files.fileCount = 1
FrameworkJobReport.logArch1.output.logArchive.section_('dataset')
FrameworkJobReport.logArch1.id = None
FrameworkJobReport.logArch1.counter = 2
FrameworkJobReport.WMAgentJobName = 'd0080012-ae33-11e1-a16b-003048c9c3fe-0'
FrameworkJobReport.seName = 'srmcms.pic.es'
FrameworkJobReport.WMAgentJobID = 43441
FrameworkJobReport.steps = ['cmsRun1', 'stageOut1', 'logArch1']
FrameworkJobReport.section_('stageOut1')
FrameworkJobReport.stageOut1.status = 0
FrameworkJobReport.stageOut1.section_('cleanup')
FrameworkJobReport.stageOut1.cleanup.section_('unremoved')
FrameworkJobReport.stageOut1.cleanup.section_('removed')
FrameworkJobReport.stageOut1.cleanup.removed.fileCount = 0
FrameworkJobReport.stageOut1.section_('errors')
FrameworkJobReport.stageOut1.section_('logs')
FrameworkJobReport.stageOut1.section_('parameters')
FrameworkJobReport.stageOut1.outputModules = []
FrameworkJobReport.stageOut1.stopTime = 1338808536.02
FrameworkJobReport.stageOut1.section_('site')
FrameworkJobReport.stageOut1.section_('analysis')
FrameworkJobReport.stageOut1.analysis.section_('files')
FrameworkJobReport.stageOut1.analysis.files.fileCount = 0
开发者ID:stuartw,项目名称:WMCore,代码行数:33,代码来源:MergeSample.py

示例3: Report

# 需要导入模块: from WMCore.Configuration import ConfigSection [as 别名]
# 或者: from WMCore.Configuration.ConfigSection import steps [as 别名]
FrameworkJobReport.cmsRun1.skipped.files.fileCount = 0
FrameworkJobReport.cmsRun1.skipped.section_('events')
FrameworkJobReport.cmsRun1.section_('input')
FrameworkJobReport.cmsRun1.input.section_('source')
FrameworkJobReport.cmsRun1.input.source.section_('files')
FrameworkJobReport.cmsRun1.input.source.files.section_('file0')
FrameworkJobReport.cmsRun1.input.source.files.file0.section_('runs')
FrameworkJobReport.cmsRun1.input.source.files.file0.input_source_class = 'PoolSource'
FrameworkJobReport.cmsRun1.input.source.files.file0.input_type = 'primaryFiles'
FrameworkJobReport.cmsRun1.input.source.files.file0.lfn = '/store/data/Run2012D/SingleElectron/AOD/PromptReco-v1/000/207/279/D43A5B72-1831-E211-895D-001D09F24763.root'
FrameworkJobReport.cmsRun1.input.source.files.file0.pfn = 'root://xrootd.unl.edu//store/data/Run2012D/SingleElectron/AOD/PromptReco-v1/000/207/279/D43A5B72-1831-E211-895D-001D09F24763.root'
FrameworkJobReport.cmsRun1.input.source.files.file0.catalog = ''
FrameworkJobReport.cmsRun1.input.source.files.file0.module_label = 'source'
FrameworkJobReport.cmsRun1.input.source.files.file0.guid = 'D43A5B72-1831-E211-895D-001D09F24763'
FrameworkJobReport.cmsRun1.input.source.files.file0.events = 1215
FrameworkJobReport.cmsRun1.input.source.files.fileCount = 1
FrameworkJobReport.cmsRun1.section_('output')
FrameworkJobReport.cmsRun1.section_('fallback')
FrameworkJobReport.cmsRun1.fallback.section_('files')
FrameworkJobReport.cmsRun1.fallback.files.section_('file0')
FrameworkJobReport.cmsRun1.fallback.files.file0.PhysicalFileName = 'root://xrootd.unl.edu//store/data/Run2012D/SingleElectron/AOD/PromptReco-v1/000/207/279/D43A5B72-1831-E211-895D-001D09F24763.root'
FrameworkJobReport.cmsRun1.fallback.files.file0.LogicalFileName = '/store/data/Run2012D/SingleElectron/AOD/PromptReco-v1/000/207/279/D43A5B72-1831-E211-895D-001D09F24763.root'
FrameworkJobReport.cmsRun1.fallback.files.fileCount = 1
FrameworkJobReport.cmsRun1.id = None
FrameworkJobReport.workload = 'Unknown'
FrameworkJobReport.steps = ['cmsRun1']

report = Report()
report.data = FrameworkJobReport

开发者ID:BrunoCoimbra,项目名称:WMCore,代码行数:31,代码来源:FallbackSample.py


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