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

#include <GaudiKernel/AlgTool.h>
fangwx@ihep.ac.cn's avatar
V3
fangwx@ihep.ac.cn committed
#include "GenEvent.h"
#include "IGenTool.h"

using namespace std;

class GenPrinter: public extends<AlgTool, IGenTool> {
public:
    using extends::extends;
fangwx@ihep.ac.cn's avatar
V3
fangwx@ihep.ac.cn committed

    // Overriding initialize and finalize
    StatusCode initialize() override;
    StatusCode finalize() override;

public:
    bool configure_gentool() override;               
    bool mutate(MyHepMC::GenEvent& event) override;    
    bool finish() override;
fangwx@ihep.ac.cn's avatar
V3
fangwx@ihep.ac.cn committed
};

#endif