ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/JetFitAnalyzer/python/cambridgeGenJetSelector_cfi.py
Revision: 1.3
Committed: Fri Feb 26 04:42:09 2010 UTC (15 years, 2 months ago) by dnisson
Content type: text/x-python
Branch: MAIN
CVS Tags: V02-04-04, V02-04-01, V02-04-00, V02-03-03, V02-03-01, V02-03-00, V02-01-00, HEAD
Changes since 1.2: +9 -0 lines
Error occurred while calculating annotation data.
Log Message:
Added the ability to set what to fix the Gaussian sigmas at

File Contents

# Content
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("selectedcambridgeGenJetsEta25"),
14 cut = cms.string('pt > 250.'),
15 filter = cms.bool(False)
16 )
17
18 # require generator level Top Jets to be within jets acceptance
19 selectedcambridgeGenJetsPt100Cumulative = cms.EDFilter("GenJetSelector",
20 src = cms.InputTag("selectedcambridgeGenJetsEta25"),
21 cut = cms.string('pt > 100.'),
22 filter = cms.bool(False)
23 )
24
25
26