Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from DQMOffline.Trigger.BPAGTrigRateAnalyzer_cfi import *
00004
00005 JpsiMuMu = bpagTrigOffDQM.clone(
00006 MassParameters = cms.untracked.vdouble(120, 2.8, 3.4),
00007 PtParameters = cms.untracked.vdouble(1., 3., 4., 5., 6., 8., 10., 20.)
00008 )
00009 JpsiMuMu.customCollection[0].collectionName = cms.untracked.string ("probeJpsiMuon")
00010
00011 UpsilonMuMu = bpagTrigOffDQM.clone(
00012 MassParameters = cms.untracked.vdouble(100, 8.5, 10.5),
00013 PtParameters = cms.untracked.vdouble(1., 3., 4., 5., 6., 8., 10., 20., 50.)
00014 )
00015 UpsilonMuMu.customCollection[0].collectionName = cms.untracked.string ("probeUpsilonMuon")
00016
00017 ZMuMu = bpagTrigOffDQM.clone(
00018 MassParameters = cms.untracked.vdouble(100, 65, 115),
00019 PtParameters = cms.untracked.vdouble(10.0, 30.0, 40., 50., 60., 100.0)
00020 )
00021 ZMuMu.customCollection[0].collectionName = cms.untracked.string ("probeZMuon")
00022
00023 TnPEfficiency = cms.Sequence(JpsiMuMu*UpsilonMuMu*ZMuMu)
00024