Revision: | 1.1 |
Committed: | Thu Mar 11 13:56:38 2010 UTC (15 years, 1 month ago) by alebihan |
Content type: | text/x-python |
Branch: | MAIN |
CVS Tags: | V20-00-00 |
Log Message: | general clean-up of prompt analysis code, migration to PromptL1 classes |
# | User | Rev | Content |
---|---|---|---|
1 | alebihan | 1.1 | import FWCore.ParameterSet.Config as cms |
2 | |||
3 | l1RecoTreeProducer = cms.EDFilter("L1RecoTreeProducer", | ||
4 | jetTag = cms.untracked.InputTag("sisCone5CaloJets"), | ||
5 | metTag = cms.untracked.InputTag("met"), | ||
6 | superClustersTag = cms.untracked.InputTag("islandSuperClusters:islandBarrelSuperClusters"), | ||
7 | basicClustersTag = cms.untracked.InputTag("islandBasicClusters:islandBarrelBasicClusters"), | ||
8 | maxCl = cms.uint32(20), | ||
9 | maxJet = cms.uint32(20) | ||
10 | ) | ||
11 |