CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/HLTriggerOffline/Muon/python/hltMuonValidator_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HLTMuonValidator = cms.EDAnalyzer("HLTMuonValidator",
00004 
00005     hltProcessName = cms.string("HLT"),
00006     hltPathsToCheck = cms.vstring(
00007         "HLT_(L[12])?(Double)?(Iso)?Mu[0-9]*(Open)?(_NoVertex)?(_eta2p1)?(_v[0-9]*)?$",
00008         "HLT_Dimuon0_Jpsi_v10",
00009         "HLT_Dimuon13_Jpsi_Barrel_v5",
00010         ),
00011 
00012     genParticleLabel = cms.string("genParticles"       ),
00013         recMuonLabel = cms.string("muons"              ),
00014 
00015     parametersTurnOn = cms.vdouble(0,
00016                                    1,  2,  3,  4,  5,  6,  7,  8,  9, 10,
00017                                    11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
00018                                    22, 24, 26, 28, 30, 32, 34, 36, 38, 40,
00019                                    45, 50, 55, 60, 65, 70,
00020                                    80, 100, 200, 500, 1000, 2000,
00021                                    ), 
00022     parametersEta      = cms.vdouble(48, -2.400, 2.400),
00023     parametersPhi      = cms.vdouble(50, -3.142, 3.142),
00024 
00025     # set criteria for matching at L1, L2, L3
00026     cutsDr = cms.vdouble(0.4, 0.4, 0.015),
00027     # parameters for attempting an L1 match using a propagator
00028     maxDeltaPhi = cms.double(0.4),
00029     maxDeltaR   = cms.double(0.4),
00030     useSimpleGeometry = cms.bool(True),
00031     useTrack = cms.string("none"),
00032     useState = cms.string("atVertex"),
00033 
00034     # set cuts on generated and reconstructed muons
00035     genMuonCut  = cms.string("abs(pdgId) == 13 && status == 1"),
00036     recMuonCut  = cms.string("isGlobalMuon"),
00037 
00038 )