CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
copyBadXT_cfg.py
Go to the documentation of this file.
2 
3 process = cms.Process("ProcessOne")
4 
5 process.MessageLogger = cms.Service("MessageLogger",
6  debugModules = cms.untracked.vstring('*'),
7  cout = cms.untracked.PSet(
8  threshold = cms.untracked.string('DEBUG')
9  ),
10  destinations = cms.untracked.vstring('cout')
11 )
12 
13 process.source = cms.Source("EmptyIOVSource",
14  lastValue = cms.uint64(100000000000),
15  timetype = cms.string('runnumber'),
16  firstValue = cms.uint64(100000000000),
17  interval = cms.uint64(1)
18 )
19 
20 process.load("CondCore.DBCommon.CondDBCommon_cfi")
21 
22 process.CondDBCommon.connect = 'sqlite_file:DB.db'
23 process.CondDBCommon.DBParameters.authenticationPath = '/nfshome0/popcondev/conddb'
24 
25 process.PoolDBOutputService = cms.Service("PoolDBOutputService",
26  process.CondDBCommon,
27  logconnect = cms.untracked.string('sqlite_file:log.db'),
28  toPut = cms.VPSet(cms.PSet(
29  record = cms.string('EcalTPGCrystalStatusRcd'),
30  tag = cms.string('EcalTPGCrystalStatus_craft')
31  ))
32 )
33 
34 process.Test1 = cms.EDAnalyzer("ExTestEcalTPGBadXTAnalyzer",
35  record = cms.string('EcalTPGCrystalStatusRcd'),
36  loggingOn= cms.untracked.bool(True),
37  IsDestDbCheckedInQueryLog=cms.untracked.bool(True),
38  SinceAppendMode=cms.bool(True),
39  Source=cms.PSet(
40  firstRun = cms.string('98273'),
41  lastRun = cms.string('10000000'),
42  OnlineDBSID = cms.string('cms_omds_lb'),
43  OnlineDBUser = cms.string('cms_ecal_conf'),
44  OnlineDBPassword = cms.string('************'),
45  LocationSource = cms.string('P5'),
46  Location = cms.string('P5_Co'),
47  GenTag = cms.string('GLOBAL'),
48  RunType = cms.string('COSMICS')
49  )
50 )
51 
52 process.p = cms.Path(process.Test1)