StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtStrip.h
1 
12 #ifndef StGmtStrip_hh
13 #define StGmtStrip_hh
14 
15 // STAR headers
16 #include "StObject.h"
17 #include "St_base/StMessMgr.h"
18 #include "StEnumerations.h"
19 
20 //________________
21 class StGmtStrip : public StObject {
22  public:
24  StGmtStrip();
26  StGmtStrip(const StGmtStrip&);
28  StGmtStrip& operator=( const StGmtStrip& );
30  ~StGmtStrip();
32  void Print(Option_t *option="") const;
33 
34  //
35  // Getters
36  //
37 
39  Int_t getGeoId() const { return mGeoId; };
41  Int_t getModule() const { return mModule; }
43  Int_t getCoordNum() const { return mCoordNum; }
45  Int_t isY() const { return mIsY; }
47  Int_t isC() const { return mIsC; }
49  Float_t getPosition() const { return mPosition; }
51  Short_t getAdc( Int_t tb = -1 ) const
52  { return mAdc[ (tb < 0 || tb >= kGmtNumTimeBins) ? mDefaultTimeBin : tb ]; }
54  Short_t getPedSubtractedAdc( Int_t tb = -1 ) const
55  { return mPedSubtractedAdc[ (tb < 0 || tb >= kGmtNumTimeBins) ? mDefaultTimeBin : tb ]; }
57  Short_t getMaxAdc() const { return mMaxAdc; }
59  Short_t getMaxPedSubtractedAdc() const { return mMaxPedSubtractedAdc; }
61  Short_t getMaxAdcTB() const { return mMaxAdcTB; }
64 
66  Float_t getCharge() const { return mCharge; }
68  Float_t getChargeUncert() const { return mChargeUncert; }
70  void getElecCoords( Int_t& rdo, Int_t& arm, Int_t& apv, Int_t& chan )
71  { rdo = mRdo; arm = mArm; apv = mApv; chan = mChan; }
73  Float_t getPed() const { return mPed; }
75  Float_t getPedStdDev() const { return mPedStdDev; }
77  Float_t getPedErr() const { return mPedErr; }
79  Bool_t chargeValid() const
80  { return mCharge != 0 && mCharge != kInvalidChargeValue; }
82  Int_t getRdo() const { return mRdo; }
84  Int_t getArm() const { return mArm; }
86  Int_t getApv() const { return mApv; }
88  Int_t getChannel() const { return mChan; }
90  static Int_t getDefaultTimeBin() { return mDefaultTimeBin; }
91 
92  //
93  // Setters
94  //
95 
97  void setGeoId( Int_t geoId ) { mGeoId = geoId; }
99  void setModule( Int_t module ) { mModule = module; }
101  void setCoordNum( Int_t coord ) { mCoordNum = coord; }
103  void setIsY( Int_t isY ) { mIsY = isY; }
105  void setIsC( Int_t isC ) { mIsC = isC; }
107  void setPosition( Float_t position ) { mPosition = position; }
109  void setAdc( Short_t adc, Int_t tb = -1 ) {
110  mAdc[ (tb < 0 || tb >= kGmtNumTimeBins) ? mDefaultTimeBin : tb ] = adc;
111  if( adc > mMaxAdc ) { mMaxAdc=adc; mMaxAdcTB=tb; }
112  }
114  void setPedSubtractedAdc( Short_t adc, Int_t tb = -1 ) {
115  mPedSubtractedAdc[ (tb < 0 || tb >= kGmtNumTimeBins) ? mDefaultTimeBin : tb ] = adc;
117  }
119  void setMaxAdc(Short_t adc) { mMaxAdc=adc; }
121  void setMaxPedSubtractedAdc(Short_t adc) { mMaxPedSubtractedAdc = adc; }
122 
124  void setCharge( Float_t charge ) { mCharge = charge; }
126  void setChargeUncert( Float_t chargeUncert) { mChargeUncert = chargeUncert; }
128  void setElecCoords( Int_t rdo, Int_t arm, Int_t apv, Int_t chan )
129  { mRdo = rdo; mArm = arm; mApv = apv; mChan = chan; }
131  void setPed(Float_t ped) { mPed=ped; }
133  void setPedStdDev(Float_t pedStdDev) { mPedStdDev=pedStdDev; }
135  void setPedErr(Float_t pedErr) { mPedErr=pedErr; }
137  void invalidateCharge() { mCharge = kInvalidChargeValue; };
139  static void setDefaultTimeBin( Int_t tb ) { mDefaultTimeBin = tb; }
140 
141  protected:
143  Int_t mGeoId;
145  Int_t mModule;
147  Int_t mCoordNum;
149  Int_t mIsY;
151  Float_t mPosition;
153  Short_t mAdc[kGmtNumTimeBins];
156  Short_t mPedSubtractedAdc[kGmtNumTimeBins];
158  Short_t mMaxAdc;
162  Short_t mMaxAdcTB;
167  Float_t mCharge;
169  Float_t mChargeUncert;
170 
171  // elec coords, straight out of the DAQ file
172 
174  Int_t mRdo;
175  Int_t mArm;
176  Int_t mApv;
178  Int_t mChan;
179 
181  Float_t mPed;
183  Float_t mPedStdDev;
185  Float_t mPedErr;
186  // Is used in a cluster ?
187  Int_t mIsC;
189  static Int_t mDefaultTimeBin;
190 
192  enum { kInvalidChargeValue = -10000 };
193 
194  private:
195  ClassDef(StGmtStrip,1)
196 };
197 
198 ostream& operator<<(ostream& os, StGmtStrip const & v);
199 
200 // Functor for sorting the strips in the strip weight map.
202  bool operator() (const StGmtStrip* strip1, const StGmtStrip* strip2) const;
203 };
204 
205 
206 #endif // #define StGmtStrip_hh
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
void setPed(Float_t ped)
Set pedestal.
Definition: StGmtStrip.h:131
Float_t mPedStdDev
Pedestal standard deviation.
Definition: StGmtStrip.h:183
void setIsC(Int_t isC)
Set is used in a cluster.
Definition: StGmtStrip.h:105
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
void setPedErr(Float_t pedErr)
Set pedestal error.
Definition: StGmtStrip.h:135
Short_t mMaxAdcTB
Maximal over the time bins.
Definition: StGmtStrip.h:162
Short_t getPedSubtractedAdc(Int_t tb=-1) const
Pedestal subtracted ADC for a give time bin.
Definition: StGmtStrip.h:54
Int_t getRdo() const
RDO number.
Definition: StGmtStrip.h:82
void setElecCoords(Int_t rdo, Int_t arm, Int_t apv, Int_t chan)
Set coordinates from electronics.
Definition: StGmtStrip.h:128
Float_t mChargeUncert
Charge uncertainty.
Definition: StGmtStrip.h:169
Int_t isY() const
Is it a pad?
Definition: StGmtStrip.h:45
Short_t getMaxAdcTB() const
Maximal over the time bins.
Definition: StGmtStrip.h:61
void setPosition(Float_t position)
Set position relative to local origin (in module)
Definition: StGmtStrip.h:107
static Int_t getDefaultTimeBin()
Default time bin.
Definition: StGmtStrip.h:90
Int_t getModule() const
Module ID (8 modules in total)
Definition: StGmtStrip.h:41
~StGmtStrip()
Destructor.
Definition: StGmtStrip.cxx:42
void setMaxAdc(Short_t adc)
Set maximal ADC over time buckets.
Definition: StGmtStrip.h:119
Float_t getPed() const
Pedestal.
Definition: StGmtStrip.h:73
Int_t getGeoId() const
Detector ID (8 modules * 2 APV * 128 channels)
Definition: StGmtStrip.h:39
Float_t getCharge() const
Charge before GEM (in C)
Definition: StGmtStrip.h:66
void setPedStdDev(Float_t pedStdDev)
Set pedestal standard deviation.
Definition: StGmtStrip.h:133
Float_t getPedStdDev() const
Pedestal standard deviation.
Definition: StGmtStrip.h:75
void setCharge(Float_t charge)
Set charge before the GEM (in C)
Definition: StGmtStrip.h:124
Int_t mChan
Channel number.
Definition: StGmtStrip.h:178
void setIsY(Int_t isY)
Set is it a pad.
Definition: StGmtStrip.h:103
void setChargeUncert(Float_t chargeUncert)
Set charge uncertainty.
Definition: StGmtStrip.h:126
Short_t getMaxPedSubtractedAdcTB() const
Maximal over the time bins.
Definition: StGmtStrip.h:63
Float_t mPed
Pedestal.
Definition: StGmtStrip.h:181
static void setDefaultTimeBin(Int_t tb)
Set default time bin.
Definition: StGmtStrip.h:139
Float_t mPedErr
Pedestal RMS.
Definition: StGmtStrip.h:185
void setGeoId(Int_t geoId)
Set detector GeoId.
Definition: StGmtStrip.h:97
Float_t getPedErr() const
Pedestal error.
Definition: StGmtStrip.h:77
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
void setCoordNum(Int_t coord)
Set coordinate.
Definition: StGmtStrip.h:101
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
void setPedSubtractedAdc(Short_t adc, Int_t tb=-1)
Set pedestal stubtracted ADC for the given time bucket.
Definition: StGmtStrip.h:114
Short_t getMaxAdc() const
Maximal ADC over the time bins.
Definition: StGmtStrip.h:57
Float_t mCharge
Definition: StGmtStrip.h:167
void setAdc(Short_t adc, Int_t tb=-1)
Set ADC for the given time bucket.
Definition: StGmtStrip.h:109
Int_t mGeoId
Indexing: 8 modules * 2 APV * 128 channels = 2048.
Definition: StGmtStrip.h:143
Short_t getMaxPedSubtractedAdc() const
Maximal pedestal subtraced ADC over the time bins.
Definition: StGmtStrip.h:59
Short_t getAdc(Int_t tb=-1) const
ADC in a strip for a given time bin.
Definition: StGmtStrip.h:51
Bool_t chargeValid() const
Check if charge is valid.
Definition: StGmtStrip.h:79
Short_t mMaxAdc
Maximal ADC over the time bins.
Definition: StGmtStrip.h:158
void setMaxPedSubtractedAdc(Short_t adc)
Set maximal pedestal subtracked ADC over time buckets.
Definition: StGmtStrip.h:121
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
void getElecCoords(Int_t &rdo, Int_t &arm, Int_t &apv, Int_t &chan)
Coordinates from electronics.
Definition: StGmtStrip.h:70
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
Float_t getChargeUncert() const
Charge uncertainty.
Definition: StGmtStrip.h:68
Int_t isC() const
Is used in a cluster.
Definition: StGmtStrip.h:47
StGmtStrip & operator=(const StGmtStrip &)
Assignment operator.
Definition: StGmtStrip.cxx:63
void setModule(Int_t module)
Set module.
Definition: StGmtStrip.h:99
Short_t mMaxPedSubtractedAdc
Maximal pedestal subtracted ADC over the time bins.
Definition: StGmtStrip.h:160
void invalidateCharge()
Set charge to the invalid state.
Definition: StGmtStrip.h:137
Short_t mMaxPedSubtractedAdcTB
Max over the time bins.
Definition: StGmtStrip.h:164
Short_t mPedSubtractedAdc[kGmtNumTimeBins]
Definition: StGmtStrip.h:156