1 | #ifndef analysis_atlas_susy_2019_08_h
|
---|
2 | #define analysis_atlas_susy_2019_08_h
|
---|
3 |
|
---|
4 | #include "SampleAnalyzer/Interfaces/root/RootMainHeaders.h"
|
---|
5 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
---|
6 | #include <random>
|
---|
7 | namespace MA5
|
---|
8 | {
|
---|
9 | class atlas_susy_2019_08 : public AnalyzerBase
|
---|
10 | {
|
---|
11 | INIT_ANALYSIS(atlas_susy_2019_08,"atlas_susy_2019_08")
|
---|
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 |
|
---|
20 | std::random_device m_randomdevice;
|
---|
21 | std::mt19937 engine;
|
---|
22 |
|
---|
23 | // unsigned int Nevents;
|
---|
24 | };
|
---|
25 | }
|
---|
26 |
|
---|
27 | #endif
|
---|