Revision: | 1.1 |
Committed: | Thu Sep 24 22:10:25 2009 UTC (15 years, 7 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, V02-00-00, V01-00-01, V01-00-00, V00-01-03, V00-01-02, V00-01-01, HEAD |
Branch point for: | V01-00-01-SPECTRUM, V00-01-03-branch |
Error occurred while calculating annotation data. | |
Log Message: | Ready for a sub-jet reclustering producer. |
# | Content |
---|---|
1 | import FWCore.ParameterSet.Config as cms |
2 | import copy |
3 | |
4 | # require generator level Top Jets to be within jets acceptance |
5 | selectedcambridgeGenSubJetsEta25 = cms.EDFilter("GenJetSelector", |
6 | src = cms.InputTag("cambridge4GenSubJets"), |
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 | selectedcambridgeGenSubJetsPt50Cumulative = cms.EDFilter("GenJetSelector", |
13 | src = cms.InputTag("selectedcambridgeGenSubJetsEta25"), |
14 | cut = cms.string('pt > 50.'), |
15 | filter = cms.bool(False) |
16 | ) |
17 |