Skip to content
Snippets Groups Projects
GenPrinter.h 369 B
Newer Older
fangwx@ihep.ac.cn's avatar
V3
fangwx@ihep.ac.cn committed
#ifndef GenPrinter_h
#define GenPrinter_h 1

#include "GenEvent.h"
#include "IGenTool.h"

using namespace std;

class GenPrinter: public IGenTool{

    public:
        GenPrinter(string name);
        ~GenPrinter();
        bool configure() override;               
        bool mutate(MyHepMC::GenEvent& event) override;    
        bool finish() override;
};

#endif