| 1 | #ifndef analysis_Recasting_SUS16041_h
|
|---|
| 2 | #define analysis_Recasting_SUS16041_h
|
|---|
| 3 |
|
|---|
| 4 | #include "SampleAnalyzer/Process/Analyzer/AnalyzerBase.h"
|
|---|
| 5 |
|
|---|
| 6 | using namespace std;
|
|---|
| 7 | namespace MA5
|
|---|
| 8 | {
|
|---|
| 9 | class Recasting_SUS16041 : public AnalyzerBase
|
|---|
| 10 | {
|
|---|
| 11 | INIT_ANALYSIS(Recasting_SUS16041,"Recasting_SUS16041")
|
|---|
| 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 | int nEvent;
|
|---|
| 20 | double SumWeight;
|
|---|
| 21 | bool Flag_Verbose;
|
|---|
| 22 | };
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | #endif
|
|---|