CMS 3D CMS Logo

dumpDBToFile_noise_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.Process("DumpDBToFile")
4 
5 process.load("CondCore.CondDB.CondDB_cfi")
6 
7 process.source = cms.Source("EmptySource",
8  numberEventsInRun = cms.untracked.uint32(1),
9  firstRun = cms.untracked.uint32(1)
10 )
11 
12 process.maxEvents = cms.untracked.PSet(
13  input = cms.untracked.int32(1)
14 )
15 
16 process.calibDB = cms.ESSource("PoolDBESSource",
17  process.CondDB,
18  toGet = cms.VPSet(cms.PSet(
19  # Noise
20  record = cms.string('DTStatusFlagRcd'),
21  tag = cms.string('noise')
22  )),
23 )
24 process.calibDB.connect = cms.string('sqlite_file:noise.db')
25 
26 process.dumpToFile = cms.EDAnalyzer("DumpDBToFile",
27  # Choose what database you want to write
28  dbToDump = cms.untracked.string('NoiseDB'),
29  dbLabel = cms.untracked.string(''),
30  calibFileConfig = cms.untracked.PSet(
31  # Noise
32  nFields = cms.untracked.int32(7),
33  calibConstGranularity = cms.untracked.string('byWire')
34  ),
35  outputFileName = cms.untracked.string('noise.txt')
36 )
37 
38 process.p = cms.Path(process.dumpToFile)