Class Reference for E1039 Core & Analysis Software
SQMCHit_v1.cxx
Go to the documentation of this file.
1 /*
2  * SQMCHit_v1.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 #include "SQMCHit_v1.h"
8 
9 #include <limits>
10 #include <cmath>
11 
12 using namespace std;
13 
15 
17  : _track_id(std::numeric_limits<int>::max()),
18  _g4hit_id(std::numeric_limits<PHG4HitDefs::keytype>::max())
19 {}
20 
21 void SQMCHit_v1::identify(ostream& os) const {
22  os << "---SQMCHit_v1--------------------" << endl;
23  os << "track_id: " << get_track_id() << endl;
24  os << "hit_id: " << get_hit_id() << endl;
25  os << "truth_pos: (" << _truth_x << ", " << _truth_y << ", " << _truth_z << ")" << endl;
26  os << "truth_mom: (" << _truth_px << ", " << _truth_py << ", " << _truth_pz << ")" << endl;
27 
29 
30  return;
31 }
32 
33 int SQMCHit_v1::isValid() const {
34  if (_track_id == std::numeric_limits<int>::max()) return 0;
35  return SQHit_v1::isValid();
36 }
37 
38 
ClassImp(SQMCHit_v1)
void identify(std::ostream &os=std::cout) const
Definition: SQHit_v1.cxx:27
virtual int get_hit_id() const
Return the ID of this hit.
Definition: SQHit_v1.h:33
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQHit_v1.cxx:46
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
Definition: SQMCHit_v1.h:31
int isValid() const
isValid returns non zero if object contains vailid data
Definition: SQMCHit_v1.cxx:33
void identify(std::ostream &os=std::cout) const
Definition: SQMCHit_v1.cxx:21
unsigned long long keytype
Definition: PHG4CellDefs.h:7