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.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CalHit.cxx
Go to the documentation of this file.
1
7#include "CalHit.h"
8
10
12 : TObject() {
13}
14
16 Clear();
17}
18
19void CalHit::Clear(Option_t* /* options */) {
20 TObject::Clear();
21}
22
23void CalHit::setCrystalIndices(int index_x, int index_y) {
24 index_x_ = index_x;
25 index_y_ = index_y;
26}
ClassImp(CalHit) CalHit
Definition CalHit.cxx:9
Class that encapsulate calorimeter hit information.
int index_y_
Definition CalHit.h:65
void setCrystalIndices(int index_x_, int index_y_)
Definition CalHit.cxx:23
void Clear(Option_t *option="")
Definition CalHit.cxx:19
int index_x_
Definition CalHit.h:62
~CalHit()
Definition CalHit.cxx:15