Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:12

0001 #ifndef RPCHistoHelper_H
0002 #define RPCHistoHelper_H
0003 
0004 #include "DQMServices/Core/interface/DQMStore.h"
0005 #include <string>
0006 
0007 struct RPCSummaryMapHisto {
0008   typedef dqm::implementation::MonitorElement MonitorElement;
0009   typedef dqm::implementation::IBooker IBooker;
0010 
0011   static MonitorElement* book(IBooker& booker, const std::string& name, const std::string& title);
0012   static void setBinBarrel(MonitorElement* me, const int wheel, const int sector, const double value);
0013   static void setBinEndcap(MonitorElement* me, const int disk, const int sector, const double value);
0014   static void setBinsBarrel(MonitorElement* me, const double value);
0015   static void setBinsEndcap(MonitorElement* me, const double value);
0016 };
0017 
0018 #endif