1 | #ifndef analysis_atlas_susy_2018_06_h
|
---|
2 | #define analysis_atlas_susy_2018_06_h
|
---|
3 |
|
---|
4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
---|
5 | // #include "SampleAnalyzer/interfaces/root/RootMainHeaders.h"
|
---|
6 |
|
---|
7 | namespace MA5
|
---|
8 | {
|
---|
9 | class atlas_susy_2018_06 : public AnalyzerBase
|
---|
10 | {
|
---|
11 | INIT_ANALYSIS(atlas_susy_2018_06,"atlas_susy_2018_06")
|
---|
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 | // TH1F* plot_test1;
|
---|
19 | // TH1F* plot_test2;
|
---|
20 | // TH1F* plot_test3;
|
---|
21 | // TH1F* plot_test4;
|
---|
22 | // TH1F* plot_test5;
|
---|
23 | // TH1F* plot_test6;
|
---|
24 | // TH1F* plot_test7;
|
---|
25 | // TH1F* plot_test8;
|
---|
26 |
|
---|
27 | private:
|
---|
28 | };
|
---|
29 | }
|
---|
30 |
|
---|
31 | #endif
|
---|