Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:56:16

0001 // This is a plugin implementation, but it is in src/ to make it possible to
0002 // derive from it in other packages. In plugins/ there is a dummy that declares
0003 // the plugin.
0004 #include "DQM/SiPixelPhase1Common/interface/SiPixelPhase1Base.h"
0005 #include "FWCore/Framework/interface/MakerMacros.h"
0006 
0007 void SiPixelPhase1Harvester::dqmEndLuminosityBlock(DQMStore::IBooker& iBooker,
0008                                                    DQMStore::IGetter& iGetter,
0009                                                    edm::LuminosityBlock const& lumiBlock,
0010                                                    edm::EventSetup const& eSetup) {
0011   for (HistogramManager& histoman : histo)
0012     histoman.executePerLumiHarvesting(iBooker, iGetter, lumiBlock, eSetup);
0013 };
0014 void SiPixelPhase1Harvester::dqmEndJob(DQMStore::IBooker& iBooker, DQMStore::IGetter& iGetter) {
0015   for (HistogramManager& histoman : histo)
0016     histoman.executeHarvesting(iBooker, iGetter);
0017 };