CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Variables
PixelPopConCalibAnalyzer_cfi Namespace Reference

Variables

tuple PixelPopConCalibAnalyzer
 
tuple PoolDBOutputService
 

Detailed Description

PixelPopConCalibAnalyzer_cfi.py

Python cfi file for the PixelPopConCalib application.

Original version: Sep 2008, M. Eads

Variable Documentation

tuple PixelPopConCalibAnalyzer_cfi.PixelPopConCalibAnalyzer
Initial value:
1 = cms.EDAnalyzer('PixelPopConCalibAnalyzer',
2  # record name - this is defined in CMSSW and shouldn't be changed
3  record = cms.string('SiPixelCalibConfigurationRcd'),
4  # choose whether to log the transfer - defaults to true
5  loggingOn = cms.untracked.bool(True),
6  # SinceAppendMode controls how the IOV given is interpreted.
7  # If "true", the sinceIOV parameter will be appended to the IOV.
8  # So, if sinceIOV is 10, then the IOV written will be from run 10 to infinity
9  SinceAppendMode = cms.bool(True),
10  Source = cms.PSet(
11  # ?
12  firstSince = cms.untracked.double(300),
13  # connectString controls where the calib.dat information is read from
14  # to read from a file, it should begin with "file://"
15  # to read from the database, it should start with "oracle://"
16  # NOTE: READING THE CALIB.DAT FROM THE DATABASE IS NOT CURRENTLY IMPLEMENTED
17  connectString = cms.string('file:///afs/cern.ch/user/m/meads/test_calib.dat'),
18  # schemaName, viewName, runNumber, and configKeyName are only used when reading from the database
19  # (and are not currently used)
20  schemaName = cms.string('CMS_PXL_PIXEL_VIEW_OWNER'),
21  viewName = cms.string('CONF_KEY_PIXEL)CALIB_V'),
22  runNumber = cms.int32(-1),
23  configKeyName = cms.string('pixel-config-key-demo2'),
24  # sinceIOV (together with SinceAppendMode above) control the IOV that is assigned to this calib configuration object
25  sinceIOV = cms.uint32(1)
26  )

Definition at line 12 of file PixelPopConCalibAnalyzer_cfi.py.

tuple PixelPopConCalibAnalyzer_cfi.PoolDBOutputService
Initial value:
1 = cms.Service("PoolDBOutputService",
2  CondDBCommon,
3  # connection string for the log database
4  logconnect = cms.untracked.string('sqlite_file:log.db'),
5  # records to put into the database
6  toPut = cms.VPSet(cms.PSet(
7  # record name - this is set in CMSSW and shouldn't be changed
8  record = cms.string('SiPixelCalibConfigurationRcd'),
9  # tag name
10  tag = cms.string('Pxl_tst_tag1')
11  ))
12 )

Definition at line 46 of file PixelPopConCalibAnalyzer_cfi.py.