ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/grogg/python/CaloJetCollections_cfi.py
Revision: 1.2
Committed: Fri Sep 3 09:21:17 2010 UTC (14 years, 7 months ago) by grogg
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +9 -43 lines
Error occurred while calculating annotation data.
Log Message:
Cleanup of jet and W collections

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3
4 ak5CaloJetsClean = cms.EDProducer("JetViewCleaner",
5 srcJets = cms.InputTag("ak5CaloJets"),
6 module_label = cms.string(""),
7 srcObjects = cms.VInputTag(cms.InputTag("triggeredPatRecoElectrons")),
8 deltaRMin = cms.double(0.5)
9 )
10
11
12 ak5CaloCorJetsClean = cms.EDProducer("JetViewCleaner",
13 srcJets = cms.InputTag("ak5CaloJetsL2L3"),
14 module_label = cms.string(""),
15 srcObjects = cms.VInputTag(cms.InputTag("triggeredPatRecoElectrons")),
16 deltaRMin = cms.double(0.5)
17 )
18
19 ############################################
20
21 CaloJetPath = cms.Sequence(ak5CaloJetsClean + ak5CaloCorJetsClean)
22