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 QMCCorrelationFunctionFactory_H 00014 #define QMCCorrelationFunctionFactory_H 00015 00016 #include <string> 00017 00018 #include "QMCCorrelationFunction.h" 00019 #include "ZeroCorrelationFunction.h" 00020 #include "PadeCorrelationFunction.h" 00021 #include "FixedCuspPadeCorrelationFunction.h" 00022 #include "JuliusCorrelationFunction.h" 00023 00024 using namespace std; 00025 00026 00032 class QMCCorrelationFunctionFactory 00033 { 00034 public: 00040 static QMCCorrelationFunction * correlationFunctionFactory(string & Type); 00041 }; 00042 00043 #endif 00044 00045 00046 00047 00048