1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*!
\file RPCClient.h
\author A. Cimmino
*/
#ifndef RPCClient_H
#define RPCClient_H
#include "DQMServices/Core/interface/DQMStore.h"
#include <DataFormats/MuonDetId/interface/RPCDetId.h>
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include <vector>
#include <string>
class RPCClient {
public:
typedef dqm::harvesting::DQMStore DQMStore;
typedef dqm::harvesting::MonitorElement MonitorElement;
//RPCClient(const edm::ParameterSet& ps) {}
virtual ~RPCClient(void) {}
virtual void clientOperation() = 0;
virtual void getMonitorElements(std::vector<MonitorElement *> &, std::vector<RPCDetId> &, std::string &) = 0;
virtual void beginJob(std::string &) = 0;
virtual void myBooker(DQMStore::IBooker &) = 0;
};
#endif
|