Skip to content

File NPVReactionGenerator.h

File List > core > NPVReactionGenerator.h

Go to the documentation of this file

#ifndef NPVReactionGenerator_h
#define NPVReactionGenerator_h

#include <string>
namespace nptool {
  class VReactionGenerator {
   public:
    VReactionGenerator(){};
    ~VReactionGenerator(){};

   public:
    virtual void ReadConfiguration(std::string path){};
    // Generate event
    virtual void GenerateSecondaries(void*){};
    // Call at the end of the run
    virtual void Clear(){};
  };
} // namespace nptool

#endif