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
|
#ifndef MiniAODTaggerHarvester_H
#define MiniAODTaggerHarvester_H
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "DQMServices/Core/interface/DQMEDHarvester.h"
#include "DQMOffline/RecoB/interface/JetTagPlotter.h"
/** \class MiniAODTaggerHarvester
*
* Tagger harvester to run on MiniAOD
*
*/
class MiniAODTaggerHarvester : public DQMEDHarvester {
public:
explicit MiniAODTaggerHarvester(const edm::ParameterSet& pSet);
~MiniAODTaggerHarvester() override;
private:
void dqmEndJob(DQMStore::IBooker&, DQMStore::IGetter&) override;
std::unique_ptr<JetTagPlotter> jetTagPlotter_;
const std::string folder_;
const edm::ParameterSet discrParameters_;
const int mclevel_;
const bool doCTagPlots_;
const bool dodifferentialPlots_;
const double discrCut_;
const bool etaActive_;
const double etaMin_;
const double etaMax_;
const bool ptActive_;
const double ptMin_;
const double ptMax_;
};
#endif
|