30 lines
551 B
C++
30 lines
551 B
C++
#ifndef DEFAULTHEPREPACTION_H
|
|
#define DEFAULTHEPREPACTION_H 1
|
|
|
|
#include "FreeHepTypes.h"
|
|
|
|
#include <string>
|
|
|
|
#include "HEPREP/HepRepAction.h"
|
|
|
|
/**
|
|
*
|
|
* @author M.Donszelmann
|
|
*/
|
|
class DefaultHepRepAction : public virtual HEPREP::HepRepAction {
|
|
|
|
private:
|
|
std::string name;
|
|
std::string expression;
|
|
|
|
public:
|
|
DefaultHepRepAction(std::string name, std::string expression);
|
|
~DefaultHepRepAction();
|
|
|
|
std::string getName();
|
|
std::string getExpression();
|
|
HEPREP::HepRepAction* copy();
|
|
};
|
|
|
|
#endif
|