Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
TopQuarkAnalysis
TopJetCombination
python
TtSemiLepJetCombMVAComputer_cfi.py
Go to the documentation of this file.
1
import
FWCore.ParameterSet.Config
as
cms
2
3
#
4
# module to make the mvaComputer
5
#
6
findTtSemiLepJetCombMVA = cms.EDProducer(
"TtSemiLepJetCombMVAComputer"
,
7
#-------------------------------------------------
8
# sources (leptons, jets, MET)
9
#-------------------------------------------------
10
leps = cms.InputTag(
"selectedPatMuons"
),
11
jets = cms.InputTag(
"selectedPatJets"
),
12
mets = cms.InputTag(
"patMETs"
),
13
14
#-------------------------------------------------
15
# number of jets to be considered in combinatorics
16
# (has to be >= 4, can be set to -1 if you want to
17
# take all)
18
#-------------------------------------------------
19
maxNJets = cms.int32(4),
20
21
#-------------------------------------------------
22
# maximum number of jet combinations finally
23
# written into the event, starting from the "best"
24
# (has to be >= 1, can be set to -1 if you want to
25
# take all)
26
#-------------------------------------------------
27
maxNComb = cms.int32(1)
28
)
Generated for CMSSW Reference Manual by
1.8.14