CMS 3D CMS Logo

heavyFlavorValidation_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 heavyFlavorValidation = DQMEDAnalyzer('HeavyFlavorValidation',
5  DQMFolder = cms.untracked.string("HLT/BPH"),
6  TriggerProcessName = cms.untracked.string("HLT"),
7  TriggerPathName = cms.untracked.string("HLT_Mu5"),
8  TriggerSummaryRAW = cms.untracked.string("hltTriggerSummaryRAW"),
9  TriggerSummaryAOD = cms.untracked.string("hltTriggerSummaryAOD"),
10  TriggerResults = cms.untracked.string("TriggerResults"),
11  RecoMuons = cms.InputTag("muons"),
12  GenParticles = cms.InputTag("genParticles"),
13 # list IDs of muon mothers, -1:don't check, 0:particle gun, 23:Z, 443:J/psi, 553:Upsilon, 531:Bs, 333:Phi
14  MotherIDs = cms.untracked.vint32(23,443,553,531,333,0),
15  GenGlobDeltaRMatchingCut = cms.untracked.double(0.1),
16  GlobL1DeltaRMatchingCut = cms.untracked.double(0.3),
17  GlobL2DeltaRMatchingCut = cms.untracked.double(0.3),
18  GlobL3DeltaRMatchingCut = cms.untracked.double(0.1),
19  DeltaEtaBins = cms.untracked.vdouble(100, -.5, .5),
20  DeltaPhiBins = cms.untracked.vdouble(100, -.5, .5),
21  MuonPtBins = cms.untracked.vdouble(1., 3., 5., 9., 15., 32., 64., 128., 256., 512., 1024., 2048.),
22  MuonEtaBins = cms.untracked.vdouble(16, -2.4, 2.4),
23  MuonPhiBins = cms.untracked.vdouble(12, -3.15, 3.15),
24  DimuonPtBins = cms.untracked.vdouble(0., 2., 4., 6., 8., 10., 15., 25., 50., 100.),
25  DimuonEtaBins = cms.untracked.vdouble(16, -2.4, 2.4),
26  DimuonDRBins = cms.untracked.vdouble(10, 0., 1.)
27 )