Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
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
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
y
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
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File 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
l
m
n
o
p
q
r
s
t
u
v
w
x
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
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
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
Macros
_
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
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Trigger
TrigHypothesis
TrigHLTJetHypo
src
DipzMLPLCondition.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGHLTJETHYPO_DipzMLPLCONDITION_H
6
#define TRIGHLTJETHYPO_DipzMLPLCONDITION_H
7
8
/********************************************************************
9
*
10
* NAME: DipzMLPLCondition.h
11
* PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo
12
*
13
* AUTHOR: I. Ochoa
14
*********************************************************************/
15
16
#include "
./ICondition.h
"
17
#include "
./DipzLikelihoodCmp.h
"
18
19
#include <string>
20
21
22
namespace
HypoJet
{
23
class
IJet;
24
}
25
26
27
class
ITrigJetHypoInfoCollector
;
28
29
class
DipzMLPLCondition
:
public
ICondition
{
30
public
:
31
DipzMLPLCondition
(
double
wp
,
32
unsigned
int
capacity
,
// this is the number of jets to be considered in each combination
33
const
std::string &decName_z,
34
const
std::string &decName_negLogSigma2);
35
36
~DipzMLPLCondition
()
override
{}
37
38
bool
isSatisfied
(
const
HypoJetVector
&,
39
const
std::unique_ptr<ITrigJetHypoInfoCollector>&)
const override
;
40
41
std::string
toString
()
const override
;
42
virtual
unsigned
int
capacity
()
const override
{
return
m_capacity
;}
43
44
private
:
45
46
double
m_workingPoint
;
47
const
unsigned
int
m_capacity
;
48
const
std::string
m_decName_z
;
49
const
std::string
m_decName_negLogSigma2
;
50
51
DipzLikelihood
m_likelihoodCalculator
;
52
53
};
54
55
#endif
DipzMLPLCondition::m_capacity
const unsigned int m_capacity
Definition:
DipzMLPLCondition.h:47
DipzMLPLCondition::toString
std::string toString() const override
Definition:
DipzMLPLCondition.cxx:61
DipzMLPLCondition::m_decName_z
const std::string m_decName_z
Definition:
DipzMLPLCondition.h:48
DipzLikelihood
Definition:
DipzLikelihoodCmp.h:40
DipzMLPLCondition::DipzMLPLCondition
DipzMLPLCondition(double wp, unsigned int capacity, const std::string &decName_z, const std::string &decName_negLogSigma2)
Definition:
DipzMLPLCondition.cxx:14
DipzMLPLCondition::~DipzMLPLCondition
~DipzMLPLCondition() override
Definition:
DipzMLPLCondition.h:36
ITrigJetHypoInfoCollector
Definition:
ITrigJetHypoInfoCollector.h:9
ICondition
Definition:
ICondition.h:22
DipzLikelihoodCmp.h
DipzMLPLCondition::m_decName_negLogSigma2
const std::string m_decName_negLogSigma2
Definition:
DipzMLPLCondition.h:49
HypoJetVector
std::vector< pHypoJet > HypoJetVector
Definition:
HypoJetDefs.h:27
PlotSFuncertainty.wp
wp
Definition:
PlotSFuncertainty.py:112
DipzMLPLCondition::m_workingPoint
double m_workingPoint
Definition:
DipzMLPLCondition.h:46
DipzMLPLCondition::m_likelihoodCalculator
DipzLikelihood m_likelihoodCalculator
Definition:
DipzMLPLCondition.h:51
DipzMLPLCondition
Definition:
DipzMLPLCondition.h:29
DipzMLPLCondition::isSatisfied
bool isSatisfied(const HypoJetVector &, const std::unique_ptr< ITrigJetHypoInfoCollector > &) const override
Definition:
DipzMLPLCondition.cxx:25
DipzMLPLCondition::capacity
virtual unsigned int capacity() const override
Definition:
DipzMLPLCondition.h:42
ICondition.h
HypoJet
Definition:
AcceptAllCondition.h:19
Generated on Sun Mar 23 2025 21:09:39 for ATLAS Offline Software by
1.8.18