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
GrouperByCapacityFactory.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
GrouperByCapacityFactory.h
"
6
#include "
TrigHLTJetHypo/TrigHLTJetHypoUtils/AllJetsGrouper.h
"
7
#include "
TrigHLTJetHypo/TrigHLTJetHypoUtils/SingleJetGrouper.h
"
8
#include "
TrigHLTJetHypo/TrigHLTJetHypoUtils/CombinationsGrouper.h
"
9
10
11
std::unique_ptr<IJetGrouper>
grouperByCapacityFactory
(
unsigned
int
cap,
12
const
HypoJetCIter
&
b
,
13
const
HypoJetCIter
&
e
){
14
15
std::unique_ptr<IJetGrouper> pGrouper(
nullptr
);
16
17
if
(cap == 0) {
18
pGrouper.reset(
new
AllJetsGrouper
(
b
,
e
));
19
}
else
if
(cap == 1) {
20
pGrouper.reset(
new
SingleJetGrouper
(
b
,
e
));
21
}
else
{
22
pGrouper.reset(
new
CombinationsGrouper
(cap,
b
,
e
));
23
}
24
25
return
pGrouper;
26
}
AllowedVariables::e
e
Definition:
AsgElectronSelectorTool.cxx:37
CombinationsGrouper.h
grouperByCapacityFactory
std::unique_ptr< IJetGrouper > grouperByCapacityFactory(unsigned int cap, const HypoJetCIter &b, const HypoJetCIter &e)
Definition:
GrouperByCapacityFactory.cxx:11
SingleJetGrouper.h
HypoJetCIter
HypoJetVector::const_iterator HypoJetCIter
Definition:
HypoJetDefs.h:29
CombinationsGrouper
Definition:
CombinationsGrouper.h:10
SingleJetGrouper
Definition:
SingleJetGrouper.h:10
AllJetsGrouper
Definition:
AllJetsGrouper.h:10
plotBeamSpotMon.b
b
Definition:
plotBeamSpotMon.py:77
GrouperByCapacityFactory.h
AllJetsGrouper.h
Generated on Sun Mar 23 2025 21:11:16 for ATLAS Offline Software by
1.8.18