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
MuonSpectrometer
MuonReconstruction
MuonDataPrep
CscClusterization
CscClusterization
CscStripStatus.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// CscClusterStatus.h
7
// Header file for class CscClusterStatus
9
// (c) ATLAS Detector software
11
// Class to implement ClusterStatus for Muon - CSC
13
// Woochun Park
15
16
#ifndef MUONPREPRAWDATA_CSCSTRIPSTATUS_H
17
#define MUONPREPRAWDATA_CSCSTRIPSTATUS_H
18
19
#include <string>
20
21
namespace
Muon
{
23
enum
CscStripStatus
{
24
25
CscStrStatSuccess
= 0,
// succeeded parabola fit
26
27
CscStrStatParabolaFailed
= 1,
// parabola fit failed aa>0
28
29
CscStrStatHot
= 2,
// hot channel from DB.
30
31
CscStrStatDead
= 3,
// dead channel from DB.
32
33
CscStrStatSaturated
= 4,
// >4090 ADC
34
35
CscStrStatStuckBit
= 5,
// from DB /STAT? What kind of values in STAT?
36
37
CscStrStatNoBipolaShape
= 6,
// decided by chisquare with bipolar fit
38
39
CscStrStatSomethingNew
= 7,
// decided by chisquare with bipolar fit
40
41
// Do we need more??
42
44
CscStrStatUndefined
= 255
45
};
46
48
inline
std::string
toString
(
CscStripStatus
cstat) {
49
switch
(cstat) {
50
case
CscStrStatSuccess
:
return
"unspoiled"
;
51
case
CscStrStatParabolaFailed
:
return
"parabolaFailed"
;
52
case
CscStrStatHot
:
return
"hotStrip"
;
53
case
CscStrStatDead
:
return
"deadStrip"
;
54
case
CscStrStatSaturated
:
return
"saturated"
;
55
case
CscStrStatStuckBit
:
return
"stuckbit"
;
56
case
CscStrStatNoBipolaShape
:
return
"nobipolarShape"
;
57
case
CscStrStatSomethingNew
:
return
"somethingNew"
;
58
case
CscStrStatUndefined
:
return
"undefined"
;
59
}
60
return
"unknown"
;
61
}
62
63
}
// namespace Muon
64
65
#endif
Muon::CscStrStatUndefined
@ CscStrStatUndefined
Undefined, should not happen, most likely indicates a problem.
Definition:
CscStripStatus.h:44
Muon::CscStrStatSaturated
@ CscStrStatSaturated
Definition:
CscStripStatus.h:33
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::CscStrStatHot
@ CscStrStatHot
Definition:
CscStripStatus.h:29
Muon::CscStrStatDead
@ CscStrStatDead
Definition:
CscStripStatus.h:31
Muon::toString
std::string toString(CscStripStatus cstat)
Return a string description of a CSC cluster status flag.
Definition:
CscStripStatus.h:48
Muon::CscStrStatSuccess
@ CscStrStatSuccess
Definition:
CscStripStatus.h:25
Muon::CscStrStatParabolaFailed
@ CscStrStatParabolaFailed
Definition:
CscStripStatus.h:27
Muon::CscStripStatus
CscStripStatus
Enum to represent the strip status - see the specific enum values for more details.
Definition:
CscStripStatus.h:23
Muon::CscStrStatStuckBit
@ CscStrStatStuckBit
Definition:
CscStripStatus.h:35
Muon::CscStrStatSomethingNew
@ CscStrStatSomethingNew
Definition:
CscStripStatus.h:39
Muon::CscStrStatNoBipolaShape
@ CscStrStatNoBipolaShape
Definition:
CscStripStatus.h:37
Generated on Sat Mar 15 2025 21:09:06 for ATLAS Offline Software by
1.8.18