1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef TagInfoPlotterFactory_H
#define TagInfoPlotterFactory_H
#include "DQMOffline/RecoB/interface/BaseTagInfoPlotter.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include <string>
class TagInfoPlotterFactory {
public:
typedef dqm::legacy::DQMStore DQMStore;
typedef dqm::legacy::MonitorElement MonitorElement;
std::unique_ptr<BaseTagInfoPlotter> buildPlotter(const std::string& dataFormatType,
const std::string& tagName,
const EtaPtBin& etaPtBin,
const edm::ParameterSet& pSet,
const std::string& folderName,
unsigned int mc,
bool wf,
DQMStore::IBooker& ibook);
};
#endif
|