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