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