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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
#ifndef CalibMuon_DTCalibration_DTT0Correction_h
#define CalibMuon_DTCalibration_DTT0Correction_h
/** \class DTT0Correction
* Class that reads and corrects t0 DB
*/
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include "CondFormats/DTObjects/interface/DTT0.h"
#include "CondFormats/DataRecord/interface/DTT0Rcd.h"
#include <string>
class DTT0;
class DTGeometry;
namespace dtCalibration {
class DTT0BaseCorrection;
}
class DTT0Correction : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
public:
/// Constructor
DTT0Correction(const edm::ParameterSet& pset);
/// Destructor
~DTT0Correction() override;
// Operations
void beginJob() override {}
void beginRun(const edm::Run& run, const edm::EventSetup& setup) override;
void analyze(const edm::Event& event, const edm::EventSetup& setup) override {}
void endRun(const edm::Run& run, const edm::EventSetup& setup) override {}
void endJob() override;
protected:
private:
std::unique_ptr<dtCalibration::DTT0BaseCorrection> correctionAlgo_;
edm::ESHandle<DTGeometry> muonGeom_;
const edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomToken_;
const DTT0* t0Map_;
edm::ESGetToken<DTT0, DTT0Rcd> t0Token_;
};
#endif
|