1 |
auterman |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
|
|
from RA2.Selection.RA2SelectionDefault_cfi import *
|
4 |
|
|
|
5 |
|
|
SelectionDefault = cms.EDFilter("Selection",
|
6 |
|
|
selections = RA2SelectionDefault,
|
7 |
|
|
|
8 |
|
|
# only store what passes these selections
|
9 |
|
|
# If empty, stores information on all events
|
10 |
|
|
filterSelection = cms.vstring(
|
11 |
|
|
'JetPreSelection',
|
12 |
|
|
'PrimaryVertex',
|
13 |
|
|
'DirectLeptonVeto',
|
14 |
|
|
'JetSelection',
|
15 |
|
|
'MET',
|
16 |
|
|
'METdPhiMin'
|
17 |
|
|
),
|
18 |
|
|
|
19 |
|
|
# Weight to add to each event
|
20 |
|
|
#weightSource= cms.InputTag("Summer08WeightProducer"),
|
21 |
|
|
#eventWeight = cms.double(1)
|
22 |
|
|
)
|