1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
HcalIterativePhiSymMon = DQMEDAnalyzer('DQMHcalIterativePhiSymAlCaReco',
folderName = cms.string('ALCAStreamHcalIterativePhiSym'),
hbheInput = cms.InputTag('hbhereco'),
hfInput = cms.InputTag('hfreco'),
hoInput = cms.InputTag('horeco'),
hiDistr_y_nbin = cms.untracked.int32(72),
hiDistr_y_min = cms.untracked.double(0.5),
hiDistr_y_max = cms.untracked.double(72.5),
hiDistr_x_nbin = cms.untracked.int32(83),
hiDistr_x_min = cms.untracked.double(-41.5),
hiDistr_x_max = cms.untracked.double(41.5),
mightGet = cms.optional.untracked.vstring
)
|