ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/HbbAnalysis/python/metSelection_cff.py
Revision: 1.3
Committed: Wed Jun 9 14:34:17 2010 UTC (14 years, 10 months ago) by amagnan
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
clean up histogram code, moved to analysis in UserCode/amagnan

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 selectedMet = cms.EDFilter(
4 "PATMETSelector",
5 src = cms.InputTag("allLayer1METsForTauAnalyses"),
6 cut = cms.string(''),
7 filter = cms.bool(False)
8 )
9
10 selectedMet40 = cms.EDFilter(
11 "PATMETSelector",
12 src = cms.InputTag("selectedMet"),
13 cut = cms.string('et<40'),
14 filter = cms.bool(True)
15 )
16
17 selectedMet60 = cms.EDFilter(
18 "PATMETSelector",
19 src = cms.InputTag("selectedMet"),
20 cut = cms.string('et<60'),
21 filter = cms.bool(True)
22 )
23