ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/python/l1MuonRecoTreeProducer_cfi.py
(Generate patch)

Comparing UserCode/L1TriggerDPG/python/l1MuonRecoTreeProducer_cfi.py (file contents):
Revision 1.3 by alebihan, Wed Aug 25 07:40:36 2010 UTC vs.
Revision 1.4 by jlingema, Wed Aug 22 15:37:11 2012 UTC

# Line 1 | Line 1
1   import FWCore.ParameterSet.Config as cms
2  
3   l1MuonRecoTreeProducer = cms.EDAnalyzer("L1MuonRecoTreeProducer",
4 <  maxMuon = cms.uint32(20)
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines