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
Reconstruction
DiTauRec
python
DiTauConfigFlags.py
Go to the documentation of this file.
1
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3
import
unittest
4
from
AthenaConfiguration.AthConfigFlags
import
AthConfigFlags
5
6
def
createDiTauConfigFlags
():
7
ditau_cfg = AthConfigFlags()
8
9
ditau_cfg.addFlag(
"DiTau.Enabled"
,
True
)
10
ditau_cfg.addFlag(
"DiTau.doDiTauRec"
,
True
)
11
ditau_cfg.addFlag(
"DiTau.DiTauContainer"
, [
"DiTauJets"
,
"DiTauJetsLowPt"
])
12
ditau_cfg.addFlag(
"DiTau.JetSeedPt"
, [300000,50000])
13
ditau_cfg.addFlag(
"DiTau.SeedJetCollection"
, [
"AntiKt10LCTopoJets"
,
"AntiKt10EMPFlowJets"
])
14
ditau_cfg.addFlag(
"DiTau.doVtxFinding"
,
False
)
15
ditau_cfg.addFlag(
"DiTau.doRunDiTauDiscriminant"
,
False
)
16
ditau_cfg.addFlag(
"DiTau.doCellFinding"
,
True
)
17
ditau_cfg.addFlag(
"DiTau.MaxEta"
, 2.5)
18
ditau_cfg.addFlag(
"DiTau.Rjet"
, 1.0)
19
ditau_cfg.addFlag(
"DiTau.Rsubjet"
, 0.2)
20
ditau_cfg.addFlag(
"DiTau.Rcore"
, 0.1)
21
22
return
ditau_cfg
23
24
class
DiTestTauRecConfigFlags
(unittest.TestCase):
25
def
runTest
(self):
26
createDiTauConfigFlags
()
27
28
29
if
__name__ ==
"__main__"
:
30
unittest.main()
31
32
DiTauConfigFlags.DiTestTauRecConfigFlags.runTest
def runTest(self)
Definition:
DiTauConfigFlags.py:25
DiTauConfigFlags.DiTestTauRecConfigFlags
Definition:
DiTauConfigFlags.py:24
DiTauConfigFlags.createDiTauConfigFlags
def createDiTauConfigFlags()
Definition:
DiTauConfigFlags.py:6
Generated on Mon Apr 21 2025 21:09:44 for ATLAS Offline Software by
1.8.18