CMS 3D CMS Logo

CaloTools.cc
Go to the documentation of this file.
2 
3 
5 
8 
9 const float l1t::CaloTools::kGTEtaLSB = 0.0435;
10 const float l1t::CaloTools::kGTPhiLSB = 0.0435;
11 const float l1t::CaloTools::kGTEtLSB = 0.5;
12 
13 const int64_t l1t::CaloTools::cos_coeff[72] = {1023, 1019, 1007, 988, 961, 927, 886, 838, 784, 723, 658, 587, 512, 432, 350, 265, 178, 89, 0, -89, -178, -265, -350, -432, -512, -587, -658, -723, -784, -838, -886, -927, -961, -988, -1007, -1019, -1023, -1019, -1007, -988, -961, -927, -886, -838, -784, -723, -658, -587, -512, -432, -350, -265, -178, -89, 0, 89, 178, 265, 350, 432, 511, 587, 658, 723, 784, 838, 886, 927, 961, 988, 1007, 1019};
14 
15 const int64_t l1t::CaloTools::sin_coeff[72] = {0, 89, 178, 265, 350, 432, 512, 587, 658, 723, 784, 838, 886, 927, 961, 988, 1007, 1019, 1023, 1019, 1007, 988, 961, 927, 886, 838, 784, 723, 658, 587, 512, 432, 350, 265, 178, 89, 0, -89, -178, -265, -350, -432, -512, -587, -658, -723, -784, -838, -886, -927, -961, -988, -1007, -1019, -1023, -1019, -1007, -988, -961, -927, -886, -838, -784, -723, -658, -587, -512, -432, -350, -265, -178, -89};
16 
17 
18 
19 bool l1t::CaloTools::insertTower(std::vector<l1t::CaloTower>& towers, const l1t::CaloTower& tower) {
20  size_t towerIndex = CaloTools::caloTowerHash(tower.hwEta(), tower.hwPhi());
21  if (towers.size() > towerIndex) {
22  towers.at(towerIndex) = tower;
23  return true;
24  }
25  else return false;
26 }
27 
28 //currently implemented as a brute force search but this will hopefully change in the future
29 //with standarising the layout of std::vector<l1t::CaloTower>
30 const l1t::CaloTower& l1t::CaloTools::getTower(const std::vector<l1t::CaloTower>& towers,int iEta,int iPhi)
31 {
32  if(abs(iEta) > CaloTools::kHFEnd) return nullTower_;
33 
34  size_t towerIndex = CaloTools::caloTowerHash(iEta, iPhi);
35  if(towerIndex<towers.size()){
36  if(towers[towerIndex].hwEta()!=iEta || towers[towerIndex].hwPhi()!=iPhi){ //it failed, this is bad, but we will not log the error due to policy and silently attempt to do a brute force search instead
37  //std::cout <<"error, tower "<<towers[towerIndex].hwEta()<<" "<<towers[towerIndex].hwPhi()<<" does not match "<<iEta<<" "<<iPhi<<" index "<<towerIndex<<" nr towrs "<<towers.size()<<std::endl;
38  for(size_t towerNr=0;towerNr<towers.size();towerNr++){
39  if(towers[towerNr].hwEta()==iEta && towers[towerNr].hwPhi()==iPhi) return towers[towerNr];
40  }
41  }else return towers[towerIndex];
42 
43  }
44  else{// in case the vector of towers do not contain all the towers (towerIndex can be > towers.size())
45  for(size_t towerNr=0;towerNr<towers.size();towerNr++){
46  if(towers[towerNr].hwEta()==iEta && towers[towerNr].hwPhi()==iPhi) return towers[towerNr];
47  }
48  }
49 
50  return nullTower_;
51 }
52 
53 const l1t::CaloCluster& l1t::CaloTools::getCluster(const std::vector<l1t::CaloCluster>& clusters,int iEta,int iPhi)
54 {
55  for(size_t clusterNr=0;clusterNr<clusters.size();clusterNr++){
56  if(clusters[clusterNr].hwEta()==iEta && clusters[clusterNr].hwPhi()==iPhi) return clusters[clusterNr];
57  }
58  return nullCluster_;
59 }
60 
61 
62 
63 //this implimentation has not all the necessary info yet, we need to check the exact HF numbering
64 //(iEta=-28,iPhi=1)=index 0 to (iEta=28,iPhi=72)=index 28*72*2-1
65 //HF then runs after that so -32,1 = 28*72*2
66 size_t l1t::CaloTools::caloTowerHash(int iEta,int iPhi)
67 {
68 
69  if(!isValidIEtaIPhi(iEta,iPhi)) return caloTowerHashMax();
70  else{
71  const int absIEta = abs(iEta);
72  if(absIEta>kHFEnd) return kNrTowers;
73  else if(absIEta<=kHBHEEnd){ //HBHE
74  int iEtaNoZero=iEta;
75  if(iEta>0) iEtaNoZero--;
76  return (iEtaNoZero+kHBHEEnd)*kHBHENrPhi+iPhi-1;
77  }else{ //HF
78  int iEtaIndex = iEta+kHFEnd; //iEta=-32 is 0
79  if(iEta>0) iEtaIndex= iEta-kHBHEEnd+(kHFEnd-kHBHEEnd)-1; //but iEta=29 is 4
80  return iEtaIndex*kHFNrPhi+iPhi/kHFPhiSeg + kNrHBHETowers;
81  }
82  }
83 }
84 
85 
87 {
88  return kNrTowers;
89 }
90 
91 
92 bool l1t::CaloTools::isValidIEtaIPhi(int iEta,int iPhi)
93 {
94  size_t absIEta = abs(iEta);
95  if(iPhi<=0 || iPhi>kNPhi) return false;
96  if(absIEta==0 || absIEta>kHFEnd) return false;
97  //if(absIEta>kHBHEEnd && iPhi%kHFPhiSeg!=1) return false;
98  return true;
99 
100 }
101 
102 int l1t::CaloTools::calHwEtSum(int iEta,int iPhi,const std::vector<l1t::CaloTower>& towers,
103  int localEtaMin,int localEtaMax,int localPhiMin,int localPhiMax,
104  SubDet etMode)
105 {
106 
107  return calHwEtSum(iEta,iPhi,towers,localEtaMin,localEtaMax,localPhiMin,localPhiMax,kHFEnd,etMode);
108 }
109 
110 int l1t::CaloTools::calHwEtSum(int iEta,int iPhi,const std::vector<l1t::CaloTower>& towers,
111  int localEtaMin,int localEtaMax,int localPhiMin,int localPhiMax,
112  int iEtaAbsMax,SubDet etMode)
113 {
114  int hwEtSum=0;
115  for(int etaNr=localEtaMin;etaNr<=localEtaMax;etaNr++){
116  for(int phiNr=localPhiMin;phiNr<=localPhiMax;phiNr++){
117 
118  int towerIEta = l1t::CaloStage2Nav::offsetIEta(iEta,etaNr);
119  int towerIPhi = l1t::CaloStage2Nav::offsetIPhi(iPhi,phiNr);
120  if(abs(towerIEta)<=iEtaAbsMax){
121  const l1t::CaloTower& tower = getTower(towers,CaloTools::caloEta(towerIEta),towerIPhi);
122  if(etMode==ECAL) hwEtSum+=tower.hwEtEm();
123  else if(etMode==HCAL) hwEtSum+=tower.hwEtHad();
124  else if(etMode==CALO) hwEtSum+=tower.hwPt();
125  }
126  }
127  }
128  return hwEtSum;
129 }
130 
131 
132 size_t l1t::CaloTools::calNrTowers(int iEtaMin,int iEtaMax,int iPhiMin,int iPhiMax,const std::vector<l1t::CaloTower>& towers,int minHwEt,int maxHwEt,SubDet etMode)
133 {
134  size_t nrTowers=0;
135  l1t::CaloStage2Nav nav(iEtaMin,iPhiMin);
136  while(nav.currIEta()<=iEtaMax){
137  bool finishPhi = false;
138  while(!finishPhi){
139  const l1t::CaloTower& tower = l1t::CaloTools::getTower(towers,CaloTools::caloEta(nav.currIEta()),nav.currIPhi());
140  int towerHwEt =0;
141  if(etMode==ECAL) towerHwEt+=tower.hwEtEm();
142  else if(etMode==HCAL) towerHwEt+=tower.hwEtHad();
143  else if(etMode==CALO) towerHwEt+=tower.hwPt();
144  if(towerHwEt>=minHwEt && towerHwEt<=maxHwEt) nrTowers++;
145  finishPhi = (nav.currIPhi() == iPhiMax);
146  nav.north();
147  }
148  nav.east();
149  nav.resetIPhi();
150  }
151  return nrTowers;
152 }
153 
154 std::pair<float,float> l1t::CaloTools::towerEtaBounds(int ieta)
155 {
156  if(ieta==0) ieta = 1;
157  if(ieta>kHFEnd) ieta = kHFEnd;
158  if(ieta<(-1*kHFEnd)) ieta = -1*kHFEnd;
159  //const float towerEtas[33] = {0,0.087,0.174,0.261,0.348,0.435,0.522,0.609,0.696,0.783,0.870,0.957,1.044,1.131,1.218,1.305,1.392,1.479,1.566,1.653,1.740,1.830,1.930,2.043,2.172,2.322,2.5,2.650,3.000,3.5,4.0,4.5,5.0};
160  const float towerEtas[42] = {0,0.087,0.174,0.261,0.348,0.435,0.522,0.609,0.696,0.783,0.870,0.957,1.044,1.131,1.218,1.305,1.392,1.479,1.566,1.653,1.740,1.830,1.930,2.043,2.172,2.322,2.5,2.650,2.853,3.139,3.314,3.489,3.664,3.839,4.013,4.191,4.363,4.538,4.716,4.889,5.191,5.191};
161  return std::make_pair( towerEtas[abs(ieta)-1],towerEtas[abs(ieta)] );
162 }
163 
165 {
166  std::pair<float,float> bounds = towerEtaBounds(ieta);
167  float eta = (bounds.second+bounds.first)/2.;
168  float sign = ieta>0 ? 1. : -1.;
169  return sign*eta;
170 }
171 
172 float l1t::CaloTools::towerPhi(int ieta, int iphi)
173 {
174  float phi = (float(iphi)-0.5)*towerPhiSize(ieta);
175  if (phi > M_PI) phi = phi - (2*M_PI);
176  return phi;
177 }
178 
180 {
181  std::pair<float,float> bounds = towerEtaBounds(ieta);
182  float size = (bounds.second-bounds.first);
183  return size;
184 }
185 
187 {
188  return 2.*M_PI/kNPhi;
189 }
190 
191 
192 // convert from calo ieta to internal MP ieta
193 int l1t::CaloTools::mpEta(int ieta) {
194 
195  if (ieta>kHFBegin) return ieta-1;
196  else if (ieta<-1*kHFBegin) return ieta+1;
197  else return ieta;
198 
199 }
200 
201 
202 // convert from internal MP ieta to calo ieta
204 
205  if (mpEta>=kHFBegin) return mpEta+1;
206  else if (mpEta<=-1*kHFBegin) return mpEta-1;
207  else return mpEta;
208 
209 }
210 
211 
212 // convert calorimeter ieta to RCT region index
214 {
215 
216  // outside HF
217  if (abs(ieta) > kHFEnd)
218  return (ieta<0 ? 0 : 21);
219 
220  // inside HBHE
221  if (abs(ieta) <= kHFBegin)
222  {
223  if (ieta<0)
224  return 11 - ceil( double (abs(ieta) /4.) );
225  else
226  return ceil( double (abs(ieta) /4.) ) + 10;
227  }
228 
229  // in HF
230  if (ieta<0)
231  return 4 - ceil( double (abs(ieta)-29) /4. );
232  else
233  return ceil( double (abs(ieta)-29) /4. ) + 17;
234 
235 }
236 
237 
238 // convert calorimeter ieta to etaBin16 index
240 {
241  int absIEta = abs(ieta);
242 
243  if (absIEta>0 && absIEta<=5) return 0;
244  else if (absIEta<=9) return 1;
245  else if (absIEta<=13) return 2;
246  else if (absIEta<=15) return 3;
247  else if (absIEta<=17) return 4;
248  else if (absIEta<=19) return 5;
249  else if (absIEta<=21) return 6;
250  else if (absIEta==22) return 7;
251  else if (absIEta==23) return 8;
252  else if (absIEta==24) return 9;
253  else if (absIEta==25) return 10;
254  else if (absIEta==26) return 11;
255  else if (absIEta<=28) return 12;
256  else if (absIEta<=32) return 13;
257  else if (absIEta<=36) return 14;
258  else if (absIEta<=41) return 15;
259  else return -1; // error
260 }
261 
262 
263 int l1t::CaloTools::gtEta(int ieta) {
264 
265  double eta = towerEta(ieta);
266  return round ( eta / kGTEtaLSB );
267 
268 }
269 
270 int l1t::CaloTools::gtPhi(int ieta, int iphi) {
271 
272  double phi = towerPhi(ieta, iphi);
273  if (phi<0) phi = phi + 2*M_PI;
274  return round ( phi / kGTPhiLSB );
275 
276 }
277 
278 
279 
280 
281 
282 // this conversion is based on GT input definitions in CMS DN-2014/029
284 
285  return math::PtEtaPhiMLorentzVector( cand->hwPt() * kGTEtLSB + 1.E-6,
286  cand->hwEta() * kGTEtaLSB,
287  cand->hwPhi() * kGTPhiLSB,
288  0. ) ;
289 
290 }
291 
292 
294 
295  l1t::EGamma tmpEG( p4Demux(&eg),
296  eg.hwPt(),
297  eg.hwEta(),
298  eg.hwPhi(),
299  eg.hwQual(),
300  eg.hwIso() );
301  tmpEG.setTowerIPhi(eg.towerIPhi());
302  tmpEG.setTowerIEta(eg.towerIEta());
303  tmpEG.setRawEt(eg.rawEt());
304  tmpEG.setIsoEt(eg.isoEt());
305  tmpEG.setFootprintEt(eg.footprintEt());
306  tmpEG.setNTT(eg.nTT());
307  tmpEG.setShape(eg.shape());
308  tmpEG.setTowerHoE(eg.towerHoE());
309 
310  return tmpEG;
311 
312 }
313 
314 
316 
317  l1t::Tau tmpTau ( p4Demux(&tau),
318  tau.hwPt(),
319  tau.hwEta(),
320  tau.hwPhi(),
321  tau.hwQual(),
322  tau.hwIso());
323  tmpTau.setTowerIPhi(tau.towerIPhi());
324  tmpTau.setTowerIEta(tau.towerIEta());
325  tmpTau.setRawEt(tau.rawEt());
326  tmpTau.setIsoEt(tau.isoEt());
327  tmpTau.setNTT(tau.nTT());
328  tmpTau.setHasEM(tau.hasEM());
329  tmpTau.setIsMerged(tau.isMerged());
330 
331  return tmpTau;
332 
333 }
334 
335 
337 
338 
339  l1t::Jet tmpJet ( p4Demux(&jet),
340  jet.hwPt(),
341  jet.hwEta(),
342  jet.hwPhi(),
343  jet.hwQual() );
344  tmpJet.setTowerIPhi(jet.towerIPhi());
345  tmpJet.setTowerIEta(jet.towerIEta());
346  tmpJet.setRawEt(jet.rawEt());
347  tmpJet.setSeedEt(jet.seedEt());
348  tmpJet.setPUEt(jet.puEt());
349  tmpJet.setPUDonutEt(0,jet.puDonutEt(0));
350  tmpJet.setPUDonutEt(1,jet.puDonutEt(1));
351  tmpJet.setPUDonutEt(2,jet.puDonutEt(2));
352  tmpJet.setPUDonutEt(3,jet.puDonutEt(3));
353 
354  return tmpJet;
355 
356 }
357 
358 
360 
361  return l1t::EtSum( p4Demux(&etsum),
362  etsum.getType(),
363  etsum.hwPt(),
364  etsum.hwEta(),
365  etsum.hwPhi(),
366  etsum.hwQual() );
367 
368 }
369 
370 
371 
372 //
374 
375  return math::PtEtaPhiMLorentzVector( cand->hwPt() * 0.5 + 1.E-6,
376  towerEta(cand->hwEta()),
377  towerPhi(cand->hwEta(), cand->hwPhi()),
378  0. ) ;
379 
380 }
381 
383 
384  l1t::EGamma tmpEG( p4MP(&eg),
385  eg.hwPt(),
386  eg.hwEta(),
387  eg.hwPhi(),
388  eg.hwQual(),
389  eg.hwIso() );
390  tmpEG.setTowerIPhi(eg.towerIPhi());
391  tmpEG.setTowerIEta(eg.towerIEta());
392  tmpEG.setRawEt(eg.rawEt());
393  tmpEG.setIsoEt(eg.isoEt());
394  tmpEG.setFootprintEt(eg.footprintEt());
395  tmpEG.setNTT(eg.nTT());
396  tmpEG.setShape(eg.shape());
397 
398  return tmpEG;
399 
400 }
401 
402 
404 
405  l1t::Tau tmpTau ( p4MP(&tau),
406  tau.hwPt(),
407  tau.hwEta(),
408  tau.hwPhi(),
409  tau.hwQual(),
410  tau.hwIso());
411  tmpTau.setTowerIPhi(tau.towerIPhi());
412  tmpTau.setTowerIEta(tau.towerIEta());
413  tmpTau.setRawEt(tau.rawEt());
414  tmpTau.setIsoEt(tau.isoEt());
415  tmpTau.setNTT(tau.nTT());
416  tmpTau.setHasEM(tau.hasEM());
417  tmpTau.setIsMerged(tau.isMerged());
418 
419  return tmpTau;
420 }
421 
422 
424 
425  l1t::Jet tmpJet ( p4MP(&jet),
426  jet.hwPt(),
427  jet.hwEta(),
428  jet.hwPhi(),
429  jet.hwQual() );
430  tmpJet.setTowerIPhi(jet.towerIPhi());
431  tmpJet.setTowerIEta(jet.towerIEta());
432  tmpJet.setRawEt(jet.rawEt());
433  tmpJet.setSeedEt(jet.seedEt());
434  tmpJet.setPUEt(jet.puEt());
435  tmpJet.setPUDonutEt(0,jet.puDonutEt(0));
436  tmpJet.setPUDonutEt(1,jet.puDonutEt(1));
437  tmpJet.setPUDonutEt(2,jet.puDonutEt(2));
438  tmpJet.setPUDonutEt(3,jet.puDonutEt(3));
439 
440  return tmpJet;
441 
442 }
443 
445 
446  return l1t::EtSum( p4MP(&etsum),
447  etsum.getType(),
448  etsum.hwPt(),
449  etsum.hwEta(),
450  etsum.hwPhi(),
451  etsum.hwQual() );
452 
453 }
size
Write out results.
static float towerEta(int ieta)
Definition: CaloTools.cc:164
static l1t::Tau tauP4MP(l1t::Tau &)
Definition: CaloTools.cc:403
bool hasEM() const
static const int kHFPhiSeg
Definition: CaloTools.h:42
short int towerIEta() const
Definition: EGamma.cc:75
static l1t::EtSum etSumP4MP(l1t::EtSum &)
Definition: CaloTools.cc:444
static bool isValidIEtaIPhi(int iEta, int iPhi)
Definition: CaloTools.cc:92
short int towerIPhi() const
Definition: EGamma.cc:79
static const float kGTPhiLSB
Definition: CaloTools.h:128
static float towerPhi(int ieta, int iphi)
Definition: CaloTools.cc:172
std::pair< int, int > north()
static int mpEta(int ieta)
Definition: CaloTools.cc:193
static const int64_t cos_coeff[72]
Definition: CaloTools.h:117
static const int kHBHEEnd
Definition: CaloTools.h:39
static l1t::EGamma egP4MP(l1t::EGamma &)
Definition: CaloTools.cc:382
static int regionEta(int ieta)
Definition: CaloTools.cc:213
short int rawEt() const
Definition: Tau.h:16
static int offsetIEta(int iEta, int offset)
Definition: CaloStage2Nav.h:44
static float towerEtaSize(int ieta)
Definition: CaloTools.cc:179
static int calHwEtSum(int iEta, int iPhi, const std::vector< l1t::CaloTower > &towers, int localEtaMin, int localEtaMax, int localPhiMin, int localPhiMax, SubDet etMode=CALO)
Definition: CaloTools.cc:102
static const int kNrHBHETowers
Definition: CaloTools.h:47
static const int kNPhi
Definition: CaloTools.h:45
static const float kGTEtaLSB
Definition: CaloTools.h:127
static math::PtEtaPhiMLorentzVector p4MP(l1t::L1Candidate *)
Definition: CaloTools.cc:373
short int shape() const
Definition: EGamma.cc:99
int hwPhi() const
Definition: L1Candidate.h:50
int hwEtEm() const
Definition: CaloTower.cc:64
short int footprintEt() const
Definition: EGamma.cc:91
static int gtPhi(int ieta, int iphi)
Definition: CaloTools.cc:270
static const int64_t sin_coeff[72]
Definition: CaloTools.h:118
short int seedEt() const
static size_t caloTowerHash(int iEta, int iPhi)
Definition: CaloTools.cc:66
static const int kHFBegin
Definition: CaloTools.h:40
int currIPhi() const
short int towerIEta() const
short int rawEt() const
Definition: EGamma.cc:83
PtEtaPhiMLorentzVectorD PtEtaPhiMLorentzVector
Lorentz vector with cartesian internal representation.
Definition: LorentzVector.h:25
int hwIso() const
Definition: L1Candidate.h:52
Definition: Jet.h:16
static const int kHFNrPhi
Definition: CaloTools.h:43
short int towerHoE() const
Definition: EGamma.cc:103
short int isoEt() const
Definition: EGamma.cc:87
static int offsetIPhi(int iPhi, int offset)
Definition: CaloStage2Nav.h:33
bool isMerged() const
static size_t calNrTowers(int iEtaMin, int iEtaMax, int iPhiMin, int iPhiMax, const std::vector< l1t::CaloTower > &towers, int minHwEt, int maxHwEt, SubDet etMode=CALO)
Definition: CaloTools.cc:132
short int puEt() const
static l1t::EGamma egP4Demux(l1t::EGamma &)
Definition: CaloTools.cc:293
static const int kHFEnd
Definition: CaloTools.h:41
static int gtEta(int ieta)
Definition: CaloTools.cc:263
static const l1t::CaloCluster & getCluster(const std::vector< l1t::CaloCluster > &clusters, int iEta, int iPhi)
Definition: CaloTools.cc:53
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
static l1t::Jet jetP4MP(l1t::Jet &)
Definition: CaloTools.cc:423
static l1t::Jet jetP4Demux(l1t::Jet &)
Definition: CaloTools.cc:336
int hwEta() const
Definition: L1Candidate.h:49
static const int kNrTowers
Definition: CaloTools.h:46
int hwQual() const
Definition: L1Candidate.h:51
#define M_PI
short int towerIEta() const
Definition: HCAL.py:1
static float towerPhiSize(int ieta)
Definition: CaloTools.cc:186
short int rawEt() const
static l1t::Tau tauP4Demux(l1t::Tau &)
Definition: CaloTools.cc:315
int hwPt() const
Definition: L1Candidate.h:48
static const int kHBHENrPhi
Definition: CaloTools.h:44
static std::pair< float, float > towerEtaBounds(int ieta)
Definition: CaloTools.cc:154
static size_t caloTowerHashMax()
Definition: CaloTools.cc:86
static const l1t::CaloTower nullTower_
Definition: CaloTools.h:124
static bool insertTower(std::vector< l1t::CaloTower > &towers, const l1t::CaloTower &tower)
Definition: CaloTools.cc:19
std::pair< int, int > east()
static int caloEta(int ietaMP)
Definition: CaloTools.cc:203
static const l1t::CaloTower & getTower(const std::vector< l1t::CaloTower > &towers, int iEta, int iPhi)
Definition: CaloTools.cc:30
short int towerIPhi() const
static const float kGTEtLSB
Definition: CaloTools.h:129
void setTowerIPhi(short int iphi)
Definition: EGamma.cc:47
void setTowerIPhi(short int iphi)
short int puDonutEt(int i) const
static int bin16Eta(int ieta)
Definition: CaloTools.cc:239
static math::PtEtaPhiMLorentzVector p4Demux(l1t::L1Candidate *)
Definition: CaloTools.cc:283
short int isoEt() const
int hwEtHad() const
Definition: CaloTower.cc:69
short int towerIPhi() const
static const l1t::CaloCluster nullCluster_
Definition: CaloTools.h:125
EtSumType getType() const
Definition: EtSum.cc:37
short int nTT() const
static l1t::EtSum etSumP4Demux(l1t::EtSum &)
Definition: CaloTools.cc:359
void setTowerIPhi(short int iphi)
short int nTT() const
Definition: EGamma.cc:95
int currIEta() const