00001 #ifndef AGILE_ALPGEN_HH 00002 #define AGILE_ALPGEN_HH 00003 00004 #include "AGILe/Generator.hh" 00005 00006 namespace AGILe { 00007 00008 00011 class AlpGen : public Generator { 00012 public: 00014 AlpGen() { } 00015 00017 ~AlpGen() { } 00018 00020 //using Generator::setParam; 00021 00023 bool setParam(const string& name, const string& value); 00024 00025 // Reqd for compilation 00026 void finalize() { } 00027 void setGenSpecificInitialState(int, double, int, double) { } 00028 }; 00029 00030 00031 } 00032 00033 #endif