| 1 | #ifndef analysis_atlas_exot_2018_30_h
|
|---|
| 2 | #define analysis_atlas_exot_2018_30_h
|
|---|
| 3 |
|
|---|
| 4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
|---|
| 5 |
|
|---|
| 6 | namespace MA5
|
|---|
| 7 | {
|
|---|
| 8 | class atlas_exot_2018_30 : public AnalyzerBase
|
|---|
| 9 | {
|
|---|
| 10 | INIT_ANALYSIS(atlas_exot_2018_30,"atlas_exot_2018_30")
|
|---|
| 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
|
|---|