1 | #ifndef analysis_atlas_susy_2018_32_h
|
---|
2 | #define analysis_atlas_susy_2018_32_h
|
---|
3 |
|
---|
4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
---|
5 |
|
---|
6 | namespace MA5
|
---|
7 | {
|
---|
8 | class atlas_susy_2018_32 : public AnalyzerBase
|
---|
9 | {
|
---|
10 | INIT_ANALYSIS(atlas_susy_2018_32,"atlas_susy_2018_32")
|
---|
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 |
|
---|
17 | private:
|
---|
18 | };
|
---|
19 | }
|
---|
20 |
|
---|
21 | #endif
|
---|