Revision: | 1.1 |
Committed: | Tue Sep 20 22:25:34 2011 UTC (13 years, 7 months ago) by yilmaz |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | hi441_0, hi413_11, hi413_10, hi413_09 |
Log Message: | option for neutral components only |
# | User | Rev | Content |
---|---|---|---|
1 | yilmaz | 1.1 | import FWCore.ParameterSet.Config as cms |
2 | |||
3 | pfcandAnalyzer = cms.EDAnalyzer('HiPFCandAnalyzer', | ||
4 | pfCandidateLabel = cms.InputTag("particleFlow"), | ||
5 | jetLabel = cms.InputTag("ak5patJets"), | ||
6 | genLabel = cms.InputTag("hiGenParticles"), | ||
7 | # debug | ||
8 | pfPtMin = cms.double(0.5), | ||
9 | genPtMin = cms.double(0.5), | ||
10 | jetPtMin = cms.double(20.0), | ||
11 | verbosity = cms.untracked.int32(0), | ||
12 | skipCharged = cms.untracked.bool(False) | ||
13 | ) | ||
14 |