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