ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/auterman/RA2/Selection/python/RA2SelectionQCDSmear_cfi.py
Revision: 1.1
Committed: Wed Nov 11 13:05:23 2009 UTC (15 years, 6 months ago) by auterman
Content type: text/x-python
Branch: MAIN
CVS Tags: HEAD
Log Message:
adding examples

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 from RA2.Selection.RA2SelectionDefault_cfi import *
4
5 RA2SelectionQCDSmear = cms.PSet(
6 # Sequence of selectors
7 selectionSequence = cms.vstring(
8 'JetPreSelection',
9 'PrimaryVertex',
10 'JetEMFrac',
11 'ChargedFrac',
12 'LeptonVeto',
13 'JetSelection',
14 'MET',
15 #'METdPhiMin',
16 #'HLTJet180',
17 #'HLTJet250'
18 #'HLTHT240'
19 ),
20
21 # Selector's list
22 selectors = cms.PSet(
23
24 ## For the QCD smearing control-sample, other MET selection cuts w.r.t. to the
25 ## default selection are necessarry:
26 METdPhiMin = cms.PSet( selector = cms.string('MetJetEventSelector'),
27 jetTag = RA2SelectionDefault.selectors.METdPhiMin.jetTag,
28 metTag = RA2SelectionDefault.selectors.METdPhiMin.metTag,
29 uncorrTypeMet = RA2SelectionDefault.selectors.METdPhiMin.uncorrTypeMet,
30 metDPhiMin = cms.double(0.3),
31 rDistJetsMin = cms.double(0.),
32 dPhiJet2MetMin = cms.double(0.),
33 NJets_metIso = cms.uint32(3),
34 ),
35
36 MET = cms.PSet( selector = cms.string('MetEventSelector'),
37 metTag = RA2SelectionDefault.selectors.MET.metTag,
38 uncorrType = cms.string('uncorrMUON'),
39 minMET = cms.double(0.0)
40 ),
41
42 ## Selection cuts similar for the QCD smaering and the default selection,
43 ## if one cut is changed it is automatically changed for all methods!
44 JetPreSelection = RA2SelectionDefault.selectors.JetPreSelection,
45 PrimaryVertex = RA2SelectionDefault.selectors.PrimaryVertex,
46 JetEMFrac = RA2SelectionDefault.selectors.JetEMFrac,
47 ChargedFrac = RA2SelectionDefault.selectors.ChargedFrac,
48 LeptonVeto = RA2SelectionDefault.selectors.LeptonVeto,
49 JetSelection = RA2SelectionDefault.selectors.JetSelection,
50 HLTJet250 = RA2SelectionDefault.selectors.HLTJet250,
51 HLTJet180 = RA2SelectionDefault.selectors.HLTJet180,
52 HLTHT240 = RA2SelectionDefault.selectors.HLTHT240,
53 ) # End selector's list
54 )