CMS 3D CMS Logo

DiMuonMassBiasMonitor_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 DiMuonMassBiasMonitor = DQMEDAnalyzer('DiMuonMassBiasMonitor',
5  muonTracks = cms.InputTag('ALCARECOTkAlDiMuon'),
6  vertices = cms.InputTag('offlinePrimaryVertices'),
7  FolderName = cms.string('DiMuonMassBiasMonitor'),
8  decayMotherName = cms.string('Z'),
9  distanceScaleFactor = cms.double(0.1), # for the Z->mm
10  DiMuMassConfig = cms.PSet(
11  name = cms.string('DiMuMass'),
12  title = cms.string('M(#mu#mu)'),
13  yUnits = cms.string('[GeV]'),
14  NxBins = cms.int32(24),
15  NyBins = cms.int32(50),
16  # defaults for the Z->mm decay
17  ymin = cms.double(65.),
18  ymax = cms.double(115.),
19  maxDeltaEta = cms.double(3.7),
20  ))