#ifndef HELLOHIST_ALG_H #define HELLOHIST_ALG_H 1 #include #include "SniperKernel/AlgBase.h" #include "TH1D.h" class HelloHistAlg: public AlgBase { public: HelloHistAlg(const std::string& name); ~HelloHistAlg(); bool initialize(); bool execute(); bool finalize(); private: int m_count; TH1D* hist; std::string m_string; }; #endif