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 CSCChannelMapperESProducer_H
#define CSCChannelMapperESProducer_H
#include <memory>
#include "FWCore/Framework/interface/ESProducer.h"
#include "CalibMuon/CSCCalibration/interface/CSCChannelMapperBase.h"
#include "CalibMuon/CSCCalibration/interface/CSCChannelMapperRecord.h"
class CSCChannelMapperESProducer : public edm::ESProducer {
public:
typedef std::unique_ptr<CSCChannelMapperBase> BSP_TYPE;
CSCChannelMapperESProducer(const edm::ParameterSet &);
~CSCChannelMapperESProducer() override;
BSP_TYPE produce(const CSCChannelMapperRecord &);
private:
std::string algoName;
};
#endif
|