StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtStrip.cxx
1 
12 // StRoot headers
13 #include "StGmtStrip.h"
14 #include "St_base/StMessMgr.h"
15 
16 // Number of defult time bins.
17 // Was 2 for the FGT, RW 03/15/13
19 
20 //________________
21 bool gmtStripPtrLessThan::operator() (const StGmtStrip* strip1, const StGmtStrip* strip2) const {
22  return ((strip1 && strip2) ? strip1->getGeoId() < strip2->getGeoId() : 0 );
23 }
24 
25 //________________
26 StGmtStrip::StGmtStrip() : StObject(), mGeoId(-1),
27  mModule(-1), mCoordNum(-1), mIsY(0), mPosition(0.0),
28  mMaxAdc(-9999), mMaxPedSubtractedAdc(-9999),
29  mMaxAdcTB(-1), mMaxPedSubtractedAdcTB(-1),
30  mCharge(kInvalidChargeValue),
31  mChargeUncert(kInvalidChargeValue),
32  mRdo(0), mArm(0), mApv(0), mChan(0),
33  mPed(0), mPedStdDev(0), mPedErr(0), mIsC(0) {
34  // Constuctor
35  for( int i = 0; i < kGmtNumTimeBins; ++i ) {
36  mAdc[i] = -9999; //not set
37  mPedSubtractedAdc[i] = -9999; //not set
38  }
39 }
40 
41 //________________
43  /* empty */
44 }
45 
46 //________________
47 StGmtStrip::StGmtStrip(const StGmtStrip& h) : StObject(), // copy the parent
48  mGeoId( h.mGeoId ), mModule( h.mModule ), mCoordNum( h.mCoordNum ),
49  mIsY( h.mIsY ), mIsC( h.mIsC ), mPosition( h.mPosition ),
50  mMaxAdc(h.mMaxAdc), mMaxPedSubtractedAdc(h.mMaxPedSubtractedAdc),
51  mMaxAdcTB(h.mMaxAdcTB), mMaxPedSubtractedAdcTB(h.mMaxPedSubtractedAdcTB),
52  mCharge( h.mCharge ), mChargeUncert(h.mChargeUncert),
53  mRdo( h.mRdo ), mArm( h.mArm ), mApv( h.mApv ), mChan( h.mChan ),
54  mPed(h.mPed), mPedStdDev(h.mPedStdDev), mPedErr(h.mPedErr) {
55  // Copy constructor
56  for( int i = 0; i < kGmtNumTimeBins; ++i ) {
57  mAdc[i] = h.mAdc[i];
59  }
60 }
61 
62 //________________
64  // Assignment operator
65  mGeoId = h.mGeoId;
66  mModule = h.mModule;
67  mCoordNum = h.mCoordNum;
68  mIsY = h.mIsY;
69  mIsC = h.mIsC;
70  mPosition = h.mPosition;
71  mMaxAdc = h.mMaxAdc;
73  mMaxAdcTB = h.mMaxAdcTB;
75  mCharge = h.mCharge;
77  mRdo = h.mRdo;
78  mArm = h.mArm;
79  mApv = h.mApv;
80  mChan = h.mChan;
81  mPed=h.mPed;
83  mPedErr=h.mPedErr;
84 
85  for( int i = 0; i < kGmtNumTimeBins; ++i ) {
86  mAdc[i] = h.mAdc[i];
88  }
89 
90  return *this;
91 }
92 
93 //________________
94 ostream& operator<<(ostream& os, const StGmtStrip& v) {
95  return os << Form("GmtStrip gId %3i m %3i C %3i Y %1i C %1i p %8.3f",v.getGeoId(), v.getModule(), v.getCoordNum(), v.isY(), v.isC(), v.getPosition())
96  << Form(" Rdo: %2i,Arm: %2i, Apv: %2i, cha: %3i",v.getRdo(), v.getArm(), v.getApv(), v.getChannel());
97 }
98 
99 //________________
100 void StGmtStrip::Print(Option_t *option) const {
101  LOG_INFO << *this << endm;
102 }
103 
104 
Float_t mPosition
Coordinate position relative to local origin (in module)
Definition: StGmtStrip.h:151
Int_t getApv() const
Apv.
Definition: StGmtStrip.h:86
void Print(Option_t *option="") const
Print strip information (parameters)
Definition: StGmtStrip.cxx:100
static Int_t mDefaultTimeBin
Time bin.
Definition: StGmtStrip.h:189
Float_t mPedStdDev
Pedestal standard deviation.
Definition: StGmtStrip.h:183
Int_t getCoordNum() const
Coordinate (0-127)
Definition: StGmtStrip.h:43
Int_t getChannel() const
Channel number.
Definition: StGmtStrip.h:88
Int_t mRdo
RDO number.
Definition: StGmtStrip.h:174
Short_t mMaxAdcTB
Maximal over the time bins.
Definition: StGmtStrip.h:162
Int_t getRdo() const
RDO number.
Definition: StGmtStrip.h:82
Float_t mChargeUncert
Charge uncertainty.
Definition: StGmtStrip.h:169
Int_t isY() const
Is it a pad?
Definition: StGmtStrip.h:45
Int_t getModule() const
Module ID (8 modules in total)
Definition: StGmtStrip.h:41
~StGmtStrip()
Destructor.
Definition: StGmtStrip.cxx:42
Int_t getGeoId() const
Detector ID (8 modules * 2 APV * 128 channels)
Definition: StGmtStrip.h:39
Int_t mChan
Channel number.
Definition: StGmtStrip.h:178
Float_t mPed
Pedestal.
Definition: StGmtStrip.h:181
Float_t mPedErr
Pedestal RMS.
Definition: StGmtStrip.h:185
Int_t getArm() const
Arm.
Definition: StGmtStrip.h:84
Float_t getPosition() const
Coordinate position relative to local origin (in module)
Definition: StGmtStrip.h:49
Short_t mAdc[kGmtNumTimeBins]
ADC in a strip. Note &quot;StRoot/RTS/src/DAQ_GMT/daq_gmt.h&quot; uses UShort_t.
Definition: StGmtStrip.h:153
Float_t mCharge
Definition: StGmtStrip.h:167
Int_t mGeoId
Indexing: 8 modules * 2 APV * 128 channels = 2048.
Definition: StGmtStrip.h:143
Short_t mMaxAdc
Maximal ADC over the time bins.
Definition: StGmtStrip.h:158
Int_t mModule
Indexing: 8 modules.
Definition: StGmtStrip.h:145
StGmtStrip()
Constructor.
Definition: StGmtStrip.cxx:26
Int_t mIsY
Is it a pad (as opposed to a strip)?
Definition: StGmtStrip.h:149
Int_t mCoordNum
0-127 in each dimension (X and Y)
Definition: StGmtStrip.h:147
Holds data for the strip in GMT.
Definition: StGmtStrip.h:21
Int_t isC() const
Is used in a cluster.
Definition: StGmtStrip.h:47
StGmtStrip & operator=(const StGmtStrip &)
Assignment operator.
Definition: StGmtStrip.cxx:63
Short_t mMaxPedSubtractedAdc
Maximal pedestal subtracted ADC over the time bins.
Definition: StGmtStrip.h:160
Short_t mMaxPedSubtractedAdcTB
Max over the time bins.
Definition: StGmtStrip.h:164
Short_t mPedSubtractedAdc[kGmtNumTimeBins]
Definition: StGmtStrip.h:156