StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtPoint.cxx
1 
14 // STAR headers
15 #include "StGmtHit.h"
16 #include "StGmtPoint.h"
17 #include "St_base/StMessMgr.h"
18 
19 //________________
20 StGmtPoint::StGmtPoint() : StHit(), mHitLocalX(nullptr), mHitLocalY(nullptr), mKey(-999) {
21  /* empty */
22 }
23 
24 //________________
25 StGmtPoint::StGmtPoint(StGmtHit* mHitLocalX, StGmtHit* mHitLocalY, int key) : StHit(), mKey( key ) {
26 
27  if ( !mHitLocalX || !mHitLocalX ) {
28  LOG_ERROR << "Passed null pointer into StGmtPoint::StGmtPoint( StGmtHit* hit1, StGmtHit* hit2, int key )" << endm;
29  LOG_ERROR << ( (!mHitLocalX && !mHitLocalY) ? "Both mHitLocalX and mHitLocalY are null." :
30  (!mHitLocalX ? "mHitLocalX is null." : "mHitLocalY is null.")) << endm;
31  mKey = -999;
32  }
33  else {
34  // Check if both hits are from the same module
35  if ( mHitLocalX->getModule() != mHitLocalX->getModule() ) {
36  LOG_ERROR << "Cluster pair is not from the same module." << endm;
37  mKey = -999;
38  }
39 
40  mHardwarePosition = mHitLocalX->hardwarePosition();
41  mCharge = mHitLocalX->charge() + mHitLocalX->charge();
42  }
43 }
44 
45 //________________
46 StGmtPoint::StGmtPoint(const StGmtPoint& p) : StHit(p), mKey(p.mKey),
47  mHitLocalX(p.mHitLocalX), mHitLocalY(p.mHitLocalY) {
48  /* empty */
49 }
50 
51 //________________
53  if ( mHitLocalX ) delete mHitLocalX;
54  if ( mHitLocalY ) delete mHitLocalY;
55 }
56 
57 
StGmtHit * mHitLocalY
Hit in Y axis.
Definition: StGmtPoint.h:63
Definition: StHit.h:125
Int_t getModule() const
Module.
Definition: StGmtHit.h:48
Int_t mKey
Unique label.
Definition: StGmtPoint.h:59
StGmtPoint()
Default consturctor.
Definition: StGmtPoint.cxx:20
Holds data for the hit in GMT.
Definition: StGmtHit.h:23
~StGmtPoint()
Destructor.
Definition: StGmtPoint.cxx:52
Holds data for the point (a.k.a. cluster) in GMT.
Definition: StGmtPoint.h:22
StGmtHit * mHitLocalX
Hit in X axis.
Definition: StGmtPoint.h:61