00001 // QMcBeaver 00002 // 00003 // Constructed by 00004 // 00005 // Michael Todd Feldmann 00006 // and 00007 // David Randall "Chip" Kent IV 00008 // 00009 // Copyright 2000. All rights reserved. 00010 // 00011 // drkent@users.sourceforge.net mtfeldmann@users.sourceforge.net 00012 00013 #ifndef QMCFunctionsFactory_H 00014 #define QMCFunctionsFactory_H 00015 00016 #include <string> 00017 00018 #include "QMCFunctions.h" 00019 #include "QMCInput.h" 00020 #include "QMCSCFJastrow.h" 00021 #include "QMCHarmonicOscillator.h" 00022 00023 using namespace std; 00024 00025 00031 class QMCFunctionsFactory 00032 { 00033 public: 00039 static QMCFunctions * functionsFactory(QMCInput * input, string & Type); 00040 }; 00041 00042 #endif 00043 00044 00045 00046 00047