/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Validation/L1T/python/test_cfg.py
19 строк
776 B
Scott Wilbur
Modified to use getByToken
18 дек 2013, 01:01
18 дек 2013, 01:01
33df5b7
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("L1Val") process.load("Validation.L1T.L1Validator_cfi") process.load("FWCore.MessageService.MessageLogger_cfi") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10000) ) process.source = cms.Source("PoolSource", # replace 'myfile.root' with the source file you want to use fileNames = cms.untracked.vstring( # 'file:step2_RAW2DIGI_RECO_VALIDATION_DQM.root' '/store/relval/CMSSW_6_2_0_pre8/RelValZMM/GEN-SIM-DIGI-RAW-HLTDEBUG/PRE_ST62_V8-v1/00000/3AFDBE70-E2E0-E211-B9A5-003048F179C2.root' # '/store/relval/CMSSW_7_0_0_pre1/RelValZMM/GEN-SIM-DIGI-RAW-HLTDEBUG/PRE_ST62_V8-v1/00000/A8B55F84-2E0F-E311-8F27-003048D15E24.root' ) ) process.p = cms.Path(process.L1Validator)