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
|
/*----------------------------------------------------------------------
Toy EDAnalyzer for testing purposes only.
----------------------------------------------------------------------*/
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "CondFormats/DTObjects/interface/DTReadOutMapping.h"
#include "CondFormats/DataRecord/interface/DTReadOutMappingRcd.h"
namespace edmtest {
class DTFullMapPrint : public edm::one::EDAnalyzer<> {
public:
explicit DTFullMapPrint(edm::ParameterSet const& p);
explicit DTFullMapPrint(int i);
~DTFullMapPrint() override = default;
void analyze(const edm::Event& e, const edm::EventSetup& c) override;
private:
edm::ESGetToken<DTReadOutMapping, DTReadOutMappingRcd> es_token;
};
} // namespace edmtest
|