CMS 3D CMS Logo

EgHLTOffPho.cc
Go to the documentation of this file.
1 #include <cmath>
2 
4 
5 using namespace egHLT;
6 
7 float OffPho::sigmaEtaEta()const
8 {
9  if(std::fabs(etaSC())<1.479) return clusShapeData_.sigmaEtaEta; //barrel case, no correction
10  else{ //endcap, need to apply eta correction
11  return clusShapeData_.sigmaEtaEta - 0.02*( std::fabs(etaSC()) - 2.3);
12  }
13 
14 }
15 
17 {
18  //yes maybe a sorted vector might be better but 1) its small and 2) bitset doesnt support < operator
19  //okay laugh, for some reason I cant overload the == operator (brain just not working), hence the non stl'y way
20  //std::vector<std::pair<TrigCodes::TrigBitSet,int> >::const_iterator it;
21  //it = std::find(trigCutsCodes_.begin(),trigCutsCodes_.end(),trigger);
22  //if(it!=trigCutsCodes_.end()) return it->second;
23  //else return 0; //defaults to passing
24 
25  for(auto const & trigCutsCutCode : trigCutsCutCodes_) if(trigger==trigCutsCutCode.first) return trigCutsCutCode.second;
26  return 0; //defaults to passing
27 }
std::vector< std::pair< TrigCodes::TrigBitSet, int > > trigCutsCutCodes_
Definition: EgHLTOffPho.h:76
ClusShapeData clusShapeData_
Definition: EgHLTOffPho.h:66
int trigCutsCutCode(const TrigCodes::TrigBitSet &trigger) const
Definition: EgHLTOffPho.cc:16
float etaSC() const
Definition: EgHLTOffPho.h:107
float sigmaEtaEta() const
Definition: EgHLTOffPho.cc:7
std::bitset< maxNrBits_ > TrigBitSet