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
50
51
52
53
|
#ifndef CalibMuon_DTCalibration_DTTTrigCorrection_h
#define CalibMuon_DTCalibration_DTTTrigCorrection_h
/** \class DTTTrigCorrection
* Class which read a ttrig DB and correct it with
* the near SL (or the global average)
*
* \author S. Maselli - INFN Torino
*/
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/ConsumesCollector.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include "Geometry/DTGeometry/interface/DTGeometry.h"
#include "CondFormats/DataRecord/interface/DTTtrigRcd.h"
#include <string>
class DTTtrig;
class DTGeometry;
namespace dtCalibration {
class DTTTrigBaseCorrection;
}
class DTTTrigCorrection : public edm::one::EDAnalyzer<edm::one::WatchRuns> {
public:
/// Constructor
DTTTrigCorrection(const edm::ParameterSet& pset);
/// Destructor
~DTTTrigCorrection() 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:
const DTTtrig* tTrigMap_;
edm::ESHandle<DTGeometry> muonGeom_;
edm::ESGetToken<DTTtrig, DTTtrigRcd> ttrigToken_;
edm::ESGetToken<DTGeometry, MuonGeometryRecord> dtGeomToken_;
std::unique_ptr<dtCalibration::DTTTrigBaseCorrection> correctionAlgo_;
};
#endif
|