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