Variables | |
tuple | PixelPopConCalibAnalyzer |
tuple | PoolDBOutputService |
PixelPopConCalibAnalyzer_cfi.py Python cfi file for the PixelPopConCalib application. Original version: Sep 2008, M. Eads
00001 cms.EDAnalyzer('PixelPopConCalibAnalyzer', 00002 # record name - this is defined in CMSSW and shouldn't be changed 00003 record = cms.string('SiPixelCalibConfigurationRcd'), 00004 # choose whether to log the transfer - defaults to true 00005 loggingOn = cms.untracked.bool(True), 00006 # SinceAppendMode controls how the IOV given is interpreted. 00007 # If "true", the sinceIOV parameter will be appended to the IOV. 00008 # So, if sinceIOV is 10, then the IOV written will be from run 10 to infinity 00009 SinceAppendMode = cms.bool(True), 00010 Source = cms.PSet( 00011 # ? 00012 firstSince = cms.untracked.double(300), 00013 # connectString controls where the calib.dat information is read from 00014 # to read from a file, it should begin with "file://" 00015 # to read from the database, it should start with "oracle://" 00016 # NOTE: READING THE CALIB.DAT FROM THE DATABASE IS NOT CURRENTLY IMPLEMENTED 00017 connectString = cms.string('file:///afs/cern.ch/user/m/meads/test_calib.dat'), 00018 # schemaName, viewName, runNumber, and configKeyName are only used when reading from the database 00019 # (and are not currently used) 00020 schemaName = cms.string('CMS_PXL_PIXEL_VIEW_OWNER'), 00021 viewName = cms.string('CONF_KEY_PIXEL)CALIB_V'), 00022 runNumber = cms.int32(-1), 00023 configKeyName = cms.string('pixel-config-key-demo2'), 00024 # sinceIOV (together with SinceAppendMode above) control the IOV that is assigned to this calib configuration object 00025 sinceIOV = cms.uint32(1) 00026 )
Definition at line 12 of file PixelPopConCalibAnalyzer_cfi.py.
00001 cms.Service("PoolDBOutputService", 00002 CondDBCommon, 00003 # connection string for the log database 00004 logconnect = cms.untracked.string('sqlite_file:log.db'), 00005 # records to put into the database 00006 toPut = cms.VPSet(cms.PSet( 00007 # record name - this is set in CMSSW and shouldn't be changed 00008 record = cms.string('SiPixelCalibConfigurationRcd'), 00009 # tag name 00010 tag = cms.string('Pxl_tst_tag1') 00011 )) 00012 )
Definition at line 46 of file PixelPopConCalibAnalyzer_cfi.py.