Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:08

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # not used in reconstruction
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 # for this to work need the following:
0008 # setenv POOL_CATALOG relationalcatalog_oracle://orcon/CMS_COND_GENERAL
0009 # setenv CORAL_AUTH_PATH /afs/cern.ch/cms/DB/conddb
0010 hcal_db_producer = cms.ESProducer("HcalDbProducer")
0011 
0012 es_pool = cms.ESSource("PoolDBESSource",
0013     timetype = cms.string('runnumber'),
0014     toGet = cms.VPSet(cms.PSet(
0015         record = cms.string('HcalPedestalsRcd'),
0016         tag = cms.string('pedestals_mtcc2_v1')
0017     ), 
0018         cms.PSet(
0019             record = cms.string('HcalGainsRcd'),
0020             tag = cms.string('hcal_gains_hardcoded_v1')
0021         ), 
0022         cms.PSet(
0023             record = cms.string('HcalQIEDataRcd'),
0024             tag = cms.string('hcal_qie_hardcoded_v1')
0025         ), 
0026         cms.PSet(
0027             record = cms.string('HcalElectronicsMapRcd'),
0028             tag = cms.string('emap_mtcc2_v3')
0029         ), 
0030         cms.PSet(
0031             record = cms.string('HcalPedestalWidthsRcd'),
0032             tag = cms.string('hcal_pwidths_hardcoded_v1')
0033         ), 
0034         cms.PSet(
0035             record = cms.string('HcalGainWidthsRcd'),
0036             tag = cms.string('hcal_gwidths_hardcoded_v1')
0037         )),
0038     connect = cms.string('oracle://orcon/CMS_COND_HCAL'), ##orcon/CMS_COND_HCAL"
0039 
0040     authenticationMethod = cms.untracked.uint32(1)
0041 )
0042 
0043 es_hardcode = cms.ESSource("HcalHardcodeCalibrations",
0044     toGet = cms.untracked.vstring('channelQuality')
0045 )
0046 
0047