#ifndef ROO_CODE_FACTORY
#define ROO_CODE_FACTORY
#include "TNamed.h"
#include "RooArgSet.h"
#include "RooPrintable.h"
class RooClassFactory : public TNamed, public RooPrintable {
public:
  
  RooClassFactory() ;
  virtual ~RooClassFactory() ;
  static Bool_t makePdf(const char* name, const char* argNames=0, Bool_t hasAnaInt=kFALSE, Bool_t hasIntGen=kFALSE) ;
  static Bool_t makeFunction(const char* name, const char* argNames=0, Bool_t hasAnaInt=kFALSE) ;
  static Bool_t makeClass(const char* className, const char* name, const char* argNames=0, Bool_t hasAnaInt=kFALSE, Bool_t hasIntGen=kFALSE) ;
  
protected:
  
  RooClassFactory(const RooClassFactory&) ;
  ClassDef(RooClassFactory,0) 
} ;
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.