File indexing completed on 2024-04-06 12:09:46
0001 #ifndef TagInfoPlotterFactory_H
0002 #define TagInfoPlotterFactory_H
0003
0004 #include "DQMOffline/RecoB/interface/BaseTagInfoPlotter.h"
0005 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0006
0007 #include <string>
0008
0009 class TagInfoPlotterFactory {
0010 public:
0011 typedef dqm::legacy::DQMStore DQMStore;
0012 typedef dqm::legacy::MonitorElement MonitorElement;
0013
0014 std::unique_ptr<BaseTagInfoPlotter> buildPlotter(const std::string& dataFormatType,
0015 const std::string& tagName,
0016 const EtaPtBin& etaPtBin,
0017 const edm::ParameterSet& pSet,
0018 const std::string& folderName,
0019 unsigned int mc,
0020 bool wf,
0021 DQMStore::IBooker& ibook);
0022 };
0023
0024 #endif