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

#include "GenEvent.h"


class IGenTool {
    public:
        virtual bool mutate(MyHepMC::GenEvent& event)=0;
        virtual bool finish()=0;
        virtual bool configure()=0;
        virtual ~IGenTool();
};

#endif