Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:52

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 # upload to database 
0004 
0005 #string timetype = "timestamp"    
0006 
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 process = cms.Process("Builder")
0010 
0011 process.MessageLogger = cms.Service("MessageLogger",
0012     cerr = cms.untracked.PSet(
0013         enable = cms.untracked.bool(False)
0014     ),
0015     debugModules = cms.untracked.vstring('siStripBackPlaneCorrectionDummyDBWriter'),
0016     files = cms.untracked.PSet(
0017         BackPlaneCorrectionBuilder = cms.untracked.PSet(
0018 
0019         )
0020     ),
0021     threshold = cms.untracked.string('DEBUG')
0022 )
0023 
0024 process.maxEvents = cms.untracked.PSet(
0025     input = cms.untracked.int32(1)
0026 )
0027 process.source = cms.Source("EmptySource",
0028     numberEventsInRun = cms.untracked.uint32(1),
0029     firstRun = cms.untracked.uint32(1)
0030 )
0031 
0032 process.load("Geometry.CMSCommonData.cmsIdealGeometryXML_cfi")
0033 
0034 process.load("CalibTracker.SiStripESProducers.fake.SiStripBackPlaneCorrectionFakeESSource_cfi")
0035 process.load("CalibTracker.SiStripESProducers.DBWriter.SiStripBackPlaneCorrectionDummyDBWriter_cfi")
0036 
0037 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
0038     connect = cms.string('sqlite_file:dbfile.db'),
0039     timetype = cms.untracked.string('runnumber'),    
0040     BlobStreamerName = cms.untracked.string('TBufferBlobStreamingService'),
0041     DBParameters = cms.PSet(
0042         messageLevel = cms.untracked.int32(2),
0043         authenticationPath = cms.untracked.string('/afs/cern.ch/cms/DB/conddb')
0044     ),
0045     
0046     toPut = cms.VPSet(cms.PSet(
0047         record = cms.string('SiStripBackPlaneCorrectionRcd'),
0048         tag = cms.string('SiStripBackPlaneCorrection_peak_31X')
0049     ))
0050 )
0051 
0052 process.siStripBackPlaneCorrectionDummyDBWriter.record=process.PoolDBOutputService.toPut[0].record
0053 
0054 from CalibTracker.SiStripESProducers.fake.SiStripBackPlaneCorrectionFakeESSource_cfi import siStripBackPlaneCorrectionFakeESSource
0055 #BackPlaneCorrection values for each module geometry: IB1, IB2, OB1, OB2, W1A, W1B, W2A, W2B, W3A, W3B, W4, W5, W6, W7
0056 #siStripBackPlaneCorrectionFakeESSource.BackPlaneCorrection_PerModuleGeometry = cms.vdouble(0.034, 0.034, 0.05, 0.05, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
0057 siStripBackPlaneCorrectionFakeESSource.BackPlaneCorrection_PerModuleGeometry = cms.vdouble(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0)
0058 
0059 process.p1 = cms.Path(process.siStripBackPlaneCorrectionDummyDBWriter)