/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentProducer/test/GlobalPositionRcd-write_cfg.py
77 строк
2 KB
Giacomo Govi
Removed dependecies on conddb V1 packages
05 ноя 2015, 17:03
05 ноя 2015, 17:03
334d629
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms process = cms.Process("write") process.load("CondCore.CondDB.CondDB_cfi") process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(1) ) process.source = cms.Source("EmptySource") process.PoolDBOutputService = cms.Service("PoolDBOutputService", process.CondDBSetup, # Writing to oracle needs the following shell variable setting (in zsh): # export CORAL_AUTH_PATH=/afs/cern.ch/cms/DB/conddb # string connect = "oracle://cms_orcoff_int2r/CMS_COND_ALIGNMENT" timetype = cms.untracked.string('runnumber'), connect = cms.string('sqlite_file:output.db'), # untracked uint32 authenticationMethod = 1 toPut = cms.VPSet(cms.PSet( record = cms.string('GlobalPositionRcd'), tag = cms.string('IdealGeometry') )) ) process.GlobalPositionRcdWrite = cms.EDAnalyzer("GlobalPositionRcdWrite", # setting 'useEulerAngles' to 'True' lets the module interpret the angles # 'alpha', 'beta' and 'gamma' as Euler angles. This is the original behavior # of the module. If 'useEulerAngles' is 'False' the angles 'alpha', 'beta' # and 'gamma' are interpreted as rotations around the X, Y and Z axes, # respectively. useEulerAngles = cms.bool(False), tracker = cms.PSet( y = cms.double(0.0), x = cms.double(0.0), z = cms.double(0.0), alpha = cms.double(0.0), beta = cms.double(0.0), gamma = cms.double(0.0) ), muon = cms.PSet( y = cms.double(0.0), x = cms.double(0.0), z = cms.double(0.0), alpha = cms.double(0.0), beta = cms.double(0.0), gamma = cms.double(0.0) ), ecal = cms.PSet( y = cms.double(0.0), x = cms.double(0.0), z = cms.double(0.0), alpha = cms.double(0.0), beta = cms.double(0.0), gamma = cms.double(0.0) ), hcal = cms.PSet( y = cms.double(0.0), x = cms.double(0.0), z = cms.double(0.0), alpha = cms.double(0.0), beta = cms.double(0.0), gamma = cms.double(0.0) ), calo = cms.PSet( y = cms.double(0.0), x = cms.double(0.0), z = cms.double(0.0), alpha = cms.double(0.0), beta = cms.double(0.0), gamma = cms.double(0.0) ) ) process.p = cms.Path(process.GlobalPositionRcdWrite) process.CondDBSetup.DBParameters.messageLevel = 2