1 |
guiducci |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
alebihan |
1.3 |
l1MuonRecoTreeProducer = cms.EDAnalyzer("L1MuonRecoTreeProducer",
|
4 |
jlingema |
1.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 |
guiducci |
1.1 |
)
|
29 |
|
|
|