1 | #ifndef analysis_cms_sus_19_006_h
|
---|
2 | #define analysis_cms_sus_19_006_h
|
---|
3 |
|
---|
4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
---|
5 |
|
---|
6 | namespace MA5
|
---|
7 | {
|
---|
8 | class cms_sus_19_006 : public AnalyzerBase
|
---|
9 | {
|
---|
10 | INIT_ANALYSIS(cms_sus_19_006,"cms_sus_19_006")
|
---|
11 |
|
---|
12 | public:
|
---|
13 | virtual bool Initialize(const MA5::Configuration& cfg, const std::map<std::string,std::string>& parameters);
|
---|
14 | virtual void Finalize(const SampleFormat& summary, const std::vector<SampleFormat>& files);
|
---|
15 | virtual bool Execute(SampleFormat& sample, const EventFormat& event);
|
---|
16 | double Determine_DeltaR(const RecLeptonFormat* thisLepton);
|
---|
17 | private:
|
---|
18 | };
|
---|
19 | }
|
---|
20 |
|
---|
21 | #endif
|
---|