-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37749 from afrankenthal/skim_EXOHighMET
Skim EXO HighMET
- Loading branch information
Showing
3 changed files
with
582 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
|
||
## select events with at least one good PV | ||
from RecoMET.METFilters.primaryVertexFilter_cfi import * | ||
|
||
## select events with high MET dependent on PF and Calo MET Conditions | ||
CondMETSelectorEXOHighMETSkim = cms.EDProducer( | ||
"CandViewShallowCloneCombiner", | ||
decay = cms.string("pfMet caloMetM"), | ||
cut = cms.string(" (daughter(0).pt > 200) || (daughter(0).pt/daughter(1).pt > 2 && daughter(1).pt > 150 ) || (daughter(1).pt/daughter(0).pt > 2 && daughter(0).pt > 150 ) " ) | ||
) | ||
|
||
CondMETCounterEXOHighMETSkim = cms.EDFilter( | ||
"CandViewCountFilter", | ||
src = cms.InputTag("CondMETSelectorEXOHighMETSkim"), | ||
minNumber = cms.uint32(1), | ||
) | ||
|
||
EXOHighMETSequence = cms.Sequence( | ||
primaryVertexFilter* | ||
CondMETSelectorEXOHighMETSkim* | ||
CondMETCounterEXOHighMETSkim | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.