Main Page
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
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
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
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
_
a
d
e
f
l
m
o
p
s
t
u
v
Related 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
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
RecoLocalMuon
CSCRecHitD
src
CSCWireHit.cc
Go to the documentation of this file.
1
#include <
RecoLocalMuon/CSCRecHitD/src/CSCWireHit.h
>
2
#include <iostream>
3
4
CSCWireHit::CSCWireHit
()
5
: theDetId(), theWireHitPosition(), theWgroups(), theWireHitTmax(), theDeadWG(), theTimeBinsOn(0) {
6
theWgroupsHighBits
.clear();
7
for
(
int
i
= 0;
i
< (
int
)
theWgroups
.size();
i
++)
8
theWgroupsHighBits
.push_back((
theWgroups
[
i
] >> 16) & 0x0000FFFF);
9
theWgroupsLowBits
.clear();
10
for
(
int
i
= 0;
i
< (
int
)
theWgroups
.size();
i
++)
11
theWgroupsLowBits
.push_back(
theWgroups
[
i
] & 0x0000FFFF);
12
}
13
14
CSCWireHit::CSCWireHit
(
const
CSCDetId
&
id
,
15
const
float
& wHitPos,
16
ChannelContainer
& wgroups,
17
const
int
&
tmax
,
18
const
short
int
& deadWG,
19
const
std::vector<int>& timeBinsOn)
20
: theDetId(
id
),
21
theWireHitPosition(wHitPos),
22
theWgroups(wgroups),
23
theWireHitTmax(
tmax
),
24
theDeadWG(deadWG),
25
theTimeBinsOn(timeBinsOn) {
26
theWgroupsHighBits
.clear();
27
for
(
int
i
= 0;
i
< (
int
)
theWgroups
.size();
i
++)
28
theWgroupsHighBits
.push_back((
theWgroups
[
i
] >> 16) & 0x0000FFFF);
29
theWgroupsLowBits
.clear();
30
for
(
int
i
= 0;
i
< (
int
)
theWgroups
.size();
i
++)
31
theWgroupsLowBits
.push_back(
theWgroups
[
i
] & 0x0000FFFF);
32
}
33
34
CSCWireHit::~CSCWireHit
() {}
35
37
void
CSCWireHit::print
()
const
{
38
std::cout
<<
" CSCWireHit in CSC Detector: "
<<
std::dec
<<
cscDetId
() << std::endl;
39
std::cout
<<
" wHitPos: "
<<
wHitPos
() << std::endl;
40
std::cout
<<
" BX + WireGroups combined: "
;
41
for
(
int
i
= 0;
i
< (
int
)
wgroupsBXandWire
().size();
i
++) {
42
std::cout
//std::dec << wgroups()[i]
43
<<
"HEX: "
<< std::hex <<
wgroupsBXandWire
()[
i
] << std::hex <<
" "
;
44
}
45
std::cout
<< std::endl;
46
std::cout
<<
" WireGroups: "
;
47
for
(
int
i
= 0;
i
< (
int
)
wgroups
().size();
i
++) {
48
std::cout
<<
std::dec
<<
wgroups
()[
i
] <<
" ("
49
<<
"HEX: "
<< std::hex <<
wgroups
()[
i
] <<
")"
50
<<
" "
;
51
}
52
std::cout
<<
" BX#: "
;
53
for
(
int
i
= 0;
i
< (
int
)
wgroupsBX
().size();
i
++) {
54
std::cout
<<
std::dec
<<
wgroupsBX
()[
i
] <<
" ("
55
<<
"HEX: "
<< std::hex <<
wgroupsBX
()[
i
] <<
")"
56
<<
" "
;
57
}
58
59
std::cout
<< std::endl;
60
std::cout
<<
" TMAX: "
<<
std::dec
<<
tmax
() << std::endl;
61
std::cout
<<
" Dead WG: "
<<
deadWG
() << std::endl;
62
std::cout
<<
" Time bins on: "
;
63
for
(
int
i
= 0;
i
< (
int
)
timeBinsOn
().size();
i
++)
64
std::cout
<<
timeBinsOn
()[
i
] <<
" "
;
65
std::cout
<< std::endl;
66
}
CSCWireHit::ChannelContainer
std::vector< int > ChannelContainer
Definition:
CSCWireHit.h:19
CSCWireHit.h
mps_fire.i
i
Definition:
mps_fire.py:428
gather_cfg.cout
cout
Definition:
gather_cfg.py:144
CSCWireHit::CSCWireHit
CSCWireHit()
Definition:
CSCWireHit.cc:4
tmax
static const double tmax[3]
Definition:
CastorTimeSlew.cc:7
CSCWireHit::wgroupsBX
ChannelContainer wgroupsBX() const
The BX number.
Definition:
CSCWireHit.h:45
CSCWireHit::~CSCWireHit
~CSCWireHit()
Definition:
CSCWireHit.cc:34
CSCWireHit::tmax
int tmax() const
The timing for the wire hit.
Definition:
CSCWireHit.h:51
CSCWireHit::wHitPos
float wHitPos() const
The wire hit position expressed in terms of wire #.
Definition:
CSCWireHit.h:38
CSCDetId
Definition:
CSCDetId.h:26
createfilelist.int
int
Definition:
createfilelist.py:10
CSCWireHit::theWgroups
ChannelContainer theWgroups
Definition:
CSCWireHit.h:65
CSCWireHit::print
void print() const
Print content of the wirehit.
Definition:
CSCWireHit.cc:37
CSCWireHit::wgroupsBXandWire
ChannelContainer wgroupsBXandWire() const
The BX + wire group number.
Definition:
CSCWireHit.h:48
CSCWireHit::theWgroupsLowBits
ChannelContainer theWgroupsLowBits
to extract BX
Definition:
CSCWireHit.h:67
CSCWireHit::timeBinsOn
std::vector< int > timeBinsOn() const
Vector of time bins ON for central wire digi, lower of center pair if even number.
Definition:
CSCWireHit.h:57
triggerObjects_cff.id
id
Definition:
triggerObjects_cff.py:29
CSCWireHit::theWgroupsHighBits
ChannelContainer theWgroupsHighBits
BX and wire group number combined.
Definition:
CSCWireHit.h:66
CSCWireHit::deadWG
short int deadWG() const
a dead WG in the cluster?
Definition:
CSCWireHit.h:54
CSCWireHit::cscDetId
CSCDetId cscDetId() const
Position of the wire hit in CSC.
Definition:
CSCWireHit.h:35
CSCWireHit::wgroups
ChannelContainer wgroups() const
The wire groups used for forming the cluster.
Definition:
CSCWireHit.h:42
TauDecayModes.dec
dec
Definition:
TauDecayModes.py:143
Generated for CMSSW Reference Manual by
1.8.16