CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
DQMGenericTnPClient_cfi.py
Go to the documentation of this file.
2 
3 DQMGenericTnPClientPars = cms.untracked.PSet(
4  MassDimension = cms.untracked.int32(2),
5  FitFunction = cms.untracked.string("GaussianPlusLinear"),
6  ExpectedMean = cms.untracked.double(91.),
7  ExpectedSigma = cms.untracked.double(1.),
8  Width = cms.untracked.double(2.5),
9  FitRangeLow = cms.untracked.double(65),
10  FitRangeHigh = cms.untracked.double(115),
11  SignalRangeLow = cms.untracked.double(81),
12  SignalRangeHigh = cms.untracked.double(101)
13 )
14 
15 DQMGenericTnPClient = cms.EDAnalyzer("DQMGenericTnPClient",
16  MyDQMrootFolder = cms.untracked.string("HLT/Muon/"),
17  # Set this if you want to save the fitting plots
18  #SavePlotsInRootFileName = cms.untracked.string("fittingPlots.root"),
19  Verbose = cms.untracked.bool(False),
20  Efficiencies = cms.untracked.VPSet(
21  DQMGenericTnPClientPars.clone(
22  NumeratorMEname = cms.untracked.string("globalMuons"),
23  DenominatorMEname = cms.untracked.string("tracks"),
24  EfficiencyMEname = cms.untracked.string("effGlobal")
25  ),
26  )
27 )
28