CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCPedestals.cc
Go to the documentation of this file.
4 
7 
8 const CSCPedestals::Item & CSCPedestals::item(const CSCDetId & cscId, int strip) const
9 {
10  CSCIndexer indexer;
11  PedestalMap::const_iterator mapItr = pedestals.find( indexer.dbIndex(cscId,strip) );
12  if(mapItr == pedestals.end())
13  {
14  throw cms::Exception("CSCPedestals")
15  << "Cannot find CSC conditions for chamber " << cscId;
16  }
17  return mapItr->second.at(strip-1);
18 }
19 
void strip(std::string &input, const std::string &blanks=" \n\t")
Definition: stringTools.cc:16
PedestalMap pedestals
Definition: CSCPedestals.h:21
int dbIndex(const CSCDetId &id, int &channel)
Definition: CSCIndexer.cc:240
const Item & item(const CSCDetId &cscId, int strip) const
Definition: CSCPedestals.cc:8