hpstr
The Heavy Photon Search Toolkit for Reconstruction (hpstr) provides an interface to physics data from the HPS experiment saved in the LCIO format and converts it into an ROOT based format.
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Functions
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
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
l
m
n
o
p
r
s
t
u
v
w
z
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
Enumerations
Enumerator
Files
File List
File Members
All
c
d
f
i
j
l
m
n
p
r
s
u
Functions
c
d
f
i
m
n
r
s
u
Variables
Typedefs
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
event
src
CalCluster.cxx
Go to the documentation of this file.
1
7
#include "
CalCluster.h
"
8
9
ClassImp
(
CalCluster
)
10
11
CalCluster::CalCluster
()
12
: TObject() {
13
}
9
ClassImp
(
CalCluster
) {
…
}
14
15
16
//TODO Fix the relation between particles->CalClusters (same as tracks)
17
CalCluster::~CalCluster
() {
18
Clear
();
19
//delete hits_;
20
}
17
CalCluster::~CalCluster
() {
…
}
21
22
23
void
CalCluster::Clear
(Option_t*
/*option*/
) {
24
TObject::Clear();
25
//hits_->Delete();
26
seed_hit_
=
nullptr
;
27
n_hits_
= 0;
28
}
23
void
CalCluster::Clear
(Option_t*
/*option*/
) {
…
}
29
30
void
CalCluster::setPosition
(
const
float
* position) {
31
x_
= position[0];
32
y_
= position[1];
33
z_
= position[2];
34
}
30
void
CalCluster::setPosition
(
const
float
* position) {
…
}
35
36
void
CalCluster::addHit
(TObject* hit) {
37
++
n_hits_
;
38
hits_
.Add(hit);
39
}
36
void
CalCluster::addHit
(TObject* hit) {
…
}
ClassImp
ClassImp(CalCluster) CalCluster
Definition
CalCluster.cxx:9
CalCluster.h
CalCluster
Definition
CalCluster.h:23
CalCluster::n_hits_
int n_hits_
Definition
CalCluster.h:106
CalCluster::setPosition
void setPosition(const float *position)
Definition
CalCluster.cxx:30
CalCluster::hits_
TRefArray hits_
Definition
CalCluster.h:100
CalCluster::Clear
void Clear(Option_t *option="")
Definition
CalCluster.cxx:23
CalCluster::~CalCluster
~CalCluster()
Definition
CalCluster.cxx:17
CalCluster::z_
double z_
Definition
CalCluster.h:115
CalCluster::y_
double y_
Definition
CalCluster.h:112
CalCluster::addHit
void addHit(TObject *hit)
Definition
CalCluster.cxx:36
CalCluster::seed_hit_
TRef seed_hit_
Definition
CalCluster.h:103
CalCluster::x_
double x_
Definition
CalCluster.h:109
CalCluster::CalCluster
CalCluster()
Generated by
1.9.8