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
w
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
MuonRecEvent
MuonPrepRawData
MuonPrepRawData
SortMuonPrepData.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 SORTMUONPREPDATA_H
6
#define SORTMUONPREPDATA_H
7
8
#include "
MuonPrepRawData/MdtPrepData.h
"
9
10
namespace
Muon
{
11
12
class
SortMuonPrepData
{
13
public
:
14
15
bool
operator()
(
const
Trk::PrepRawData
* prd1,
const
Trk::PrepRawData
* prd2 )
const
{
16
17
if
( prd1->
identify
() == prd2->
identify
() ) {
18
if
(
const
MdtPrepData
* mdt1 =
dynamic_cast<
const
MdtPrepData
*
>
(prd1) ) {
19
const
MdtPrepData
* mdt2 =
static_cast<
const
MdtPrepData
*
>
(prd2);
20
return
mdt1->
tdc
() < mdt2->
tdc
();
21
}
22
return
prd1->
getHashAndIndex
().
hashAndIndex
() < prd2->
getHashAndIndex
().
hashAndIndex
();
23
}
24
25
return
prd1->
identify
() < prd2->
identify
();
26
27
}
28
};
29
30
}
31
32
#endif
MdtPrepData.h
Muon
NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.
Definition:
TrackSystemController.h:45
Muon::SortMuonPrepData
Definition:
SortMuonPrepData.h:12
Trk::PrepRawData
Definition:
PrepRawData.h:62
Trk::PrepRawData::identify
Identifier identify() const
return the identifier
IdentContIndex::hashAndIndex
unsigned int hashAndIndex() const
combined index
Definition:
IdentContIndex.h:99
Muon::MdtPrepData::tdc
int tdc() const
Returns the TDC (typically range is 0 to 2500).
Definition:
MdtPrepData.h:145
Muon::SortMuonPrepData::operator()
bool operator()(const Trk::PrepRawData *prd1, const Trk::PrepRawData *prd2) const
Definition:
SortMuonPrepData.h:15
Muon::MdtPrepData
Class to represent measurements from the Monitored Drift Tubes.
Definition:
MdtPrepData.h:33
Trk::PrepRawData::getHashAndIndex
const IdentContIndex & getHashAndIndex() const
Generated on Mon May 12 2025 21:18:05 for ATLAS Offline Software by
1.8.18