![]() |
![]() |
Functions | |
template<class Collection> | |
void | analyze (edm::Event const &e, HcalDigiStatistics &statistics) |
void HcalDigiAnalyzerImpl::analyze | ( | edm::Event const & | e, | |
HcalDigiStatistics & | statistics | |||
) | [inline] |
Definition at line 27 of file HcalDigiAnalyzer.cc.
References HcalDigiStatistics::analyze(), GenMuonPlsPt100GeV_cfg::cout, lat::endl(), edm::Event::getByType(), and i.
00027 { 00028 edm::Handle<Collection> digis; 00029 e.getByType(digis); 00030 for(unsigned i = 0; i < digis->size(); ++i) { 00031 std::cout << (*digis)[i] << std::endl; 00032 statistics.analyze((*digis)[i]); 00033 } 00034 }