ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/JetFitAnalyzer/python/cambridgeGenJetSelector_cfi.py
Revision: 1.1
Committed: Thu Sep 17 20:16:15 2009 UTC (15 years, 7 months ago) by vasquez
Content type: text/x-python
Branch: MAIN
Log Message:
To create a collection of cambridge aachen jets

File Contents

# User Rev Content
1 vasquez 1.1 import FWCore.ParameterSet.Config as cms
2     import copy
3    
4     # require generator level Top Jets to be within jets acceptance
5     selectedcambridgeGenJetsEta25 = cms.EDFilter("GenJetSelector",
6     src = cms.InputTag("cambridge10GenJets"),
7     cut = cms.string('abs(eta) < 2.5'),
8     filter = cms.bool(False)
9     )
10    
11     # require generator level Top Jets to be within jets acceptance
12     selectedcambridgeGenJetsPt250Cumulative = cms.EDFilter("GenJetSelector",
13     src = cms.InputTag("selectedcambrigeGenJetsEta25"),
14     cut = cms.string('pt > 250.'),
15     filter = cms.bool(False)
16     )
17