1 | #ifndef analysis_sfs_test_h
|
---|
2 | #define analysis_sfs_test_h
|
---|
3 |
|
---|
4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
---|
5 | #include "new_tagger.h"
|
---|
6 | #include "new_smearer_reco.h"
|
---|
7 | namespace MA5
|
---|
8 | {
|
---|
9 | class sfs_test : public AnalyzerBase
|
---|
10 | {
|
---|
11 | INIT_ANALYSIS(sfs_test,"sfs_test")
|
---|
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 | }
|
---|
21 |
|
---|
22 | #endif
|
---|