Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
ClassifierFactory.h File Reference
#include <map>
#include <string>
#include <vector>
#include "TString.h"
Include dependency graph for ClassifierFactory.h:
This graph shows which files directly or indirectly include this file:

Classes

class  TMVA::ClassifierFactory
 This is the MVA factory. More...
 

Namespaces

namespace  TMVA
 create variable transformations
 

Macros

#define REGISTER_METHOD(CLASS)
 for example
 

Macro Definition Documentation

◆ REGISTER_METHOD

#define REGISTER_METHOD (   CLASS)
Value:
namespace \
{ \
struct RegisterTMVAMethod { \
static TMVA::IMethod* CreateMethod##CLASS(const TString& job, const TString& title, TMVA::DataSetInfo& dsi, const TString& option) \
{ \
if(job=="" && title=="") { \
return (TMVA::IMethod*) new TMVA::Method##CLASS(dsi, option); \
} else { \
return (TMVA::IMethod*) new TMVA::Method##CLASS(job, title, dsi, option); \
} \
} \
RegisterTMVAMethod() { \
TMVA::ClassifierFactory::Instance(). Register(#CLASS, CreateMethod##CLASS); \
TMVA::Types::Instance().AddTypeMapping(TMVA::Types::k##CLASS, #CLASS); \
} \
}; \
static RegisterTMVAMethod RegisterTMVAMethod_instance; \
}
Class that contains all the data information.
Definition DataSetInfo.h:62
Interface for all concrete MVA method implementations.
Definition IMethod.h:53
Basic string class.
Definition TString.h:136

for example

REGISTER_METHOD(Fisher)

expands to this code:

namespace { TMVA::IMethod* CreateMethod() { return (TMVA::IMethod*) new TMVA::MethodFisher; } Bool_t RegisteredMethod = TMVA::ClassifierFactory<TMVA::MethodBase>::Instance(). Register("Method", CreateMethodFisher); }

Definition at line 124 of file ClassifierFactory.h.