ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/python/l1MuonRecoTreeProducer_cfi.py
Revision: 1.4
Committed: Wed Aug 22 15:37:11 2012 UTC (12 years, 8 months ago) by jlingema
Content type: text/x-python
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, V01-00-00, HEAD
Changes since 1.3: +24 -1 lines
Log Message:
Added functionality to do trigger matching to L1 muon tree producer. The matching may be configured using the python configuration files.

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 l1MuonRecoTreeProducer = cms.EDAnalyzer("L1MuonRecoTreeProducer",
4 maxMuon = cms.uint32(20),
5
6 #---------------------------------------------------------------------
7 # TRIGGER MATCHING CONFIGURATION
8 #---------------------------------------------------------------------
9 # flag to turn trigger matching on / off
10 triggerMatching = cms.untracked.bool(False),
11 # maximum delta R between trigger object and muon
12 triggerMaxDeltaR = cms.double(.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_IsoMu24_eta2p1_v*",
17 "HLT_IsoMu24_v*"
18 ),
19 triggerNames = cms.vstring(
20 "HLT_Mu30_v*",
21 "HLT_Mu40_v*"
22 ),
23
24 # data best guess: change for MC!
25 triggerSummaryLabel = cms.InputTag("hltTriggerSummaryAOD", "", "HLT"),
26 # name of the hlt process (same as above):
27 triggerProcessLabel = cms.untracked.string("HLT"),
28 )
29