Class Reference for E1039 Core & Analysis Software
SQCalHit_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQCalHit_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 #include "SQCalHit_v1.h"
8 
9 #include <limits>
10 #include <cmath>
11 
12 using namespace std;
13 
15 
17  _hit_id(std::numeric_limits<int>::max()),
18  _detector_id(std::numeric_limits<int>::max()),
19  _element_id(std::numeric_limits<int>::max())
20 {
21  _cells.clear();
22 }
23 
24 void SQCalHit_v1::identify(ostream& os) const {
25  os << "---SQCalHit_v1--------------------" << endl;
26  os << " hitID: " << get_hit_id() << endl;
27  os << " detectorID: " << get_detector_id() << " elementID: "<< get_element_id() << " edep: "<< get_edep() << endl;
28  os << "---------------------------------" << endl;
29 
30  return;
31 }
32 
33 int SQCalHit_v1::isValid() const {
34  if (_hit_id == std::numeric_limits<int>::max()) return 0;
35  return 1;
36 }
37 
38 float SQCalHit_v1::get_cell(short cellID) const
39 {
40  auto it = _cells.find(cellID);
41  if(it != _cells.end()) return it->second;
42  return -1.;
43 }
44 
45 void SQCalHit_v1::add_cell(short cellID, float edep)
46 {
47  if(_cells.find(cellID) != _cells.end())
48  _cells[cellID] += edep;
49  else
50  _cells[cellID] = edep;
51 
52  _edep += edep;
53 }
ClassImp(SQCalHit_v1)
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQCalHit_v1.cxx:33
virtual float get_cell(short i) const
Definition: SQCalHit_v1.cxx:38
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQCalHit_v1.h:28
virtual void add_cell(short i, float edep)
Definition: SQCalHit_v1.cxx:45
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQCalHit_v1.h:31
void identify(std::ostream &os=std::cout) const
Definition: SQCalHit_v1.cxx:24
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQCalHit_v1.h:25
virtual float get_edep() const
Not valid in E1039. To be deleted.
Definition: SQCalHit_v1.h:37