Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 process = cms.Process("ProcessOne")
00004
00005 process.MessageLogger = cms.Service("MessageLogger",
00006 debugModules = cms.untracked.vstring('*'),
00007 cout = cms.untracked.PSet(
00008 threshold = cms.untracked.string('DEBUG')
00009 ),
00010 destinations = cms.untracked.vstring('cout')
00011 )
00012
00013
00014 process.source = cms.Source("EmptyIOVSource",
00015 lastValue = cms.uint64(1),
00016 timetype = cms.string('runnumber'),
00017 firstValue = cms.uint64(1),
00018 interval = cms.uint64(1)
00019 )
00020
00021 process.load("CondCore.DBCommon.CondDBCommon_cfi")
00022
00023 process.CondDBCommon.connect = 'sqlite_file:DB.db'
00024 process.CondDBCommon.DBParameters.authenticationPath = '/nfshome0/popcondev/conddb'
00025
00026 print 'avant PoolDBOutputService'
00027
00028 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
00029 process.CondDBCommon,
00030 logconnect = cms.untracked.string('sqlite_file:log.db'),
00031 toPut = cms.VPSet(cms.PSet(
00032 record = cms.string('EcalTPGWeightIdMapRcd'),
00033
00034 tag = cms.string('EcalTPGWeightIdMap_TPGTrivial_config')
00035 ))
00036 )
00037
00038
00039 process.Test1 = cms.EDAnalyzer("ExTestEcalTPGWeightIdMapAnalyzer",
00040 record = cms.string('EcalTPGWeightIdMapRcd'),
00041 loggingOn= cms.untracked.bool(True),
00042 IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
00043 SinceAppendMode=cms.bool(True),
00044 Source=cms.PSet(
00045 firstRun = cms.string('98273'),
00046 lastRun = cms.string('10000000'),
00047 OnlineDBSID = cms.string('cms_omds_lb'),
00048 OnlineDBUser = cms.string('cms_ecal_conf'),
00049 OnlineDBPassword = cms.string('*************'),
00050 LocationSource = cms.string('P5'),
00051 Location = cms.string('P5_Co'),
00052 GenTag = cms.string('GLOBAL'),
00053 RunType = cms.string('COSMICS')
00054 )
00055 )
00056
00057 process.p = cms.Path(process.Test1)