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
DetectorDescription
DetDescrCond
DetDescrConditions
DetDescrConditions
DetStatus.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef DETDESCRCOND_DETSTATUS_H
6
#define DETDESCRCOND_DETSTATUS_H
7
// DetStatus.h - class to hold details of a subdetector status
8
// Richard Hawkings, started 19/12/06
9
10
#include<string>
11
12
class
DetStatus
final
{
13
public
:
14
DetStatus
();
15
// constructor with parameters
16
DetStatus
(
const
int
fullcode,
17
const
float
deadfrac,
const
float
deadthrust);
18
19
~DetStatus
() =
default
;
20
21
// access functions
22
int
code
()
const
;
23
int
fullCode
()
const
;
24
float
deadFrac
()
const
;
25
float
deadThrust
()
const
;
26
std::string
colour
()
const
;
27
28
private
:
29
int
m_code
;
30
float
m_deadfrac
;
31
float
m_deadthrust
;
32
};
33
34
inline
int
DetStatus::code
()
const
{
return
m_code
<0 ?
m_code
:
m_code
& 3; }
35
inline
int
DetStatus::fullCode
()
const
{
return
m_code
; }
36
inline
float
DetStatus::deadFrac
()
const
{
return
m_deadfrac
;}
37
inline
float
DetStatus::deadThrust
()
const
{
return
m_deadthrust
;}
38
39
#endif // DETDESCRCOND_DETSTATUS_H
DetStatus::~DetStatus
~DetStatus()=default
DetStatus::DetStatus
DetStatus()
Definition:
DetStatus.cxx:9
DetStatus::deadFrac
float deadFrac() const
Definition:
DetStatus.h:36
DetStatus::fullCode
int fullCode() const
Definition:
DetStatus.h:35
DetStatus::m_deadthrust
float m_deadthrust
Definition:
DetStatus.h:31
DetStatus::m_code
int m_code
Definition:
DetStatus.h:29
DetStatus::m_deadfrac
float m_deadfrac
Definition:
DetStatus.h:30
DetStatus::colour
std::string colour() const
Definition:
DetStatus.cxx:19
columnar::final
CM final
Definition:
ColumnAccessor.h:106
DetStatus
Definition:
DetStatus.h:12
DetStatus::code
int code() const
Definition:
DetStatus.h:34
DetStatus::deadThrust
float deadThrust() const
Definition:
DetStatus.h:37
Generated on Wed Mar 26 2025 21:09:37 for ATLAS Offline Software by
1.8.18