CMS 3D CMS Logo

SiStripPedestalsReader.cc
Go to the documentation of this file.
2 
3 using namespace std;
4 using namespace cms;
5 
7  printdebug_(iConfig.getUntrackedParameter<uint32_t>("printDebug",1)){}
8 
10 
12 
13  edm::ESHandle<SiStripPedestals> SiStripPedestals_;
14  iSetup.get<SiStripPedestalsRcd>().get(SiStripPedestals_);
15  edm::LogInfo("SiStripPedestalsReader") << "[SiStripPedestalsReader::analyze] End Reading SiStripPedestals" << std::endl;
16 
17  std::vector<uint32_t> detid;
18  SiStripPedestals_->getDetIds(detid);
19  edm::LogInfo("Number of detids ") << detid.size() << std::endl;
20 
21  if (printdebug_)
22  for (size_t id=0;id<detid.size() && id<printdebug_;id++)
23  {
24  SiStripPedestals::Range range=SiStripPedestals_->getRange(detid[id]);
25 
26  int strip=0;
27  for(int it=0;it<(range.second-range.first)*8/10;it++){
28  edm::LogInfo("SiStripPedestalsReader") << "detid " << detid[id] << " \t"
29  << " strip " << strip++ << " \t"
30  << SiStripPedestals_->getPed (it,range) << " \t"
31  << std::endl;
32  }
33  }
34 }
35 
void analyze(const edm::Event &, const edm::EventSetup &) override
std::pair< ContainerIterator, ContainerIterator > Range
float getPed(const uint16_t &strip, const Range &range) const
Namespace of DDCMS conversion namespace.
SiStripPedestalsReader(const edm::ParameterSet &)
void getDetIds(std::vector< uint32_t > &DetIds_) const
T get() const
Definition: EventSetup.h:71
const Range getRange(const uint32_t &detID) const