CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DPGAnalysis/Skims/python/ecalSkim_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 skimming = cms.EDFilter("EcalSkim",
00004     #cosmic cluster energy threshold in GeV
00005     energyCutEB = cms.untracked.double(2.0),
00006     energyCutEE = cms.untracked.double(2.0),
00007     endcapClusterCollection = cms.InputTag("cosmicSuperClusters","CosmicEndcapSuperClusters"),
00008     barrelClusterCollection = cms.InputTag("cosmicSuperClusters","CosmicBarrelSuperClusters")
00009 )
00010 
00011