CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/CondTools/Ecal/python/copyLutIdMap_cfg.py

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 process.source = cms.Source("EmptyIOVSource",
00014     lastValue = cms.uint64(1),
00015     timetype = cms.string('runnumber'),
00016     firstValue = cms.uint64(1),
00017     interval = cms.uint64(1)
00018 )
00019 
00020 process.load("CondCore.DBCommon.CondDBCommon_cfi")
00021 
00022 process.CondDBCommon.connect = 'sqlite_file:DB.db'
00023 process.CondDBCommon.DBParameters.authenticationPath = '/nfshome0/popcondev/conddb'
00024 
00025 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
00026     process.CondDBCommon, 
00027     logconnect = cms.untracked.string('sqlite_file:log.db'),   
00028     toPut = cms.VPSet(cms.PSet(
00029         record = cms.string('EcalTPGLutIdMapRcd'),
00030 #        tag = cms.string('EcalTPGLutIdMap_craft')
00031         tag = cms.string('EcalTPGLutIdMap_TPGTrivial_config')
00032     ))
00033 )
00034 
00035 
00036 process.Test1 = cms.EDAnalyzer("ExTestEcalTPGLutIdMapAnalyzer",
00037     record = cms.string('EcalTPGLutIdMapRcd'),
00038     loggingOn= cms.untracked.bool(True),
00039     IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
00040     SinceAppendMode=cms.bool(True),
00041     Source=cms.PSet(
00042      firstRun = cms.string('98273'),
00043      lastRun = cms.string('10000000'),
00044      OnlineDBSID = cms.string('cms_omds_lb'),
00045      OnlineDBUser = cms.string('cms_ecal_conf'),
00046      OnlineDBPassword = cms.string('*************'),
00047      LocationSource = cms.string('P5'),
00048      Location = cms.string('P5_Co'),
00049      GenTag = cms.string('GLOBAL'),
00050      RunType = cms.string('COSMICS')
00051     )                            
00052 )
00053 
00054 process.p = cms.Path(process.Test1)