test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1MuonRecoTree_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1MuonRecoTree = cms.EDAnalyzer("L1Muon2RecoTreeProducer",
4  maxMuon = cms.uint32(20),
5  MuonTag = cms.untracked.InputTag("muons"),
6  #---------------------------------------------------------------------
7  # TRIGGER MATCHING CONFIGURATION
8  #---------------------------------------------------------------------
9  # flag to turn trigger matching on / off
10  triggerMatching = cms.untracked.bool(True),
11  # maximum delta R between trigger object and muon
12  triggerMaxDeltaR = cms.double(0.1),
13  # trigger to match to, may use regexp wildcard as supported by ROOT's
14  # TString; up to now the first found match (per run) is used.
15  isoTriggerNames = cms.vstring(
16  "HLT_IsoMu18_v*",
17  "HLT_IsoMu22_v*"
18  #"HLT_IsoMu24_eta2p1_v*",
19  #"HLT_IsoMu24_v*"
20  ),
21  triggerNames = cms.vstring(
22  "HLT_Mu30_v*",
23  "HLT_Mu40_v*"
24  ),
25 
26  # data best guess: change for MC!
27  triggerResults = cms.InputTag("TriggerResults", "", "HLT"),
28  triggerSummaryLabel = cms.InputTag("hltTriggerSummaryAOD", "", "HLT"),
29  # name of the hlt process (same as above):
30  triggerProcessLabel = cms.untracked.string("HLT"),
31 )
32