/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/CSCGeometry/test/testCSCGeometryFromDB_cfg.py
33 строки
1 KB
Christopher Jones
Add back explicit categories where needed
07 дек 2020, 21:42
07 дек 2020, 21:42
bbaa939
Код
Авторство
О чём код?
# Configuration file to run stubs/CSCGeometryAnalyser import FWCore.ParameterSet.Config as cms process = cms.Process("GeometryTest") process.load("Configuration.StandardSequences.GeometryDB_cff") process.load('CondCore.CondDB.CondDB_cfi') process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff') from Configuration.AlCa.autoCond import autoCond process.GlobalTag.globaltag = autoCond['mc'] process.load("Alignment.CommonAlignmentProducer.FakeAlignmentSource_cfi") process.preferFakeAlign = cms.ESPrefer("FakeAlignmentSource") process.source = cms.Source("EmptySource") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) process.load("FWCore.MessageLogger.MessageLogger_cfi") process.MessageLogger.debugModules.append('CSCGeometryESModule') process.MessageLogger.cout = cms.untracked.PSet( threshold = cms.untracked.string('DEBUG'), default = cms.untracked.PSet( limit = cms.untracked.int32(0) ), CSCGeometry = cms.untracked.PSet( limit = cms.untracked.int32(-1) ), CSCGeometryBuilder = cms.untracked.PSet( limit = cms.untracked.int32(-1) ) ) process.producer = cms.EDAnalyzer("CSCGeometryAnalyzer") process.p1 = cms.Path(process.producer) process.CSCGeometryESModule.debugV = True