#ifndef ROOT_TMVA_MethodBayesClassifier
#define ROOT_TMVA_MethodBayesClassifier
#ifndef ROOT_TMVA_MethodBase
#include "TMVA/MethodBase.h"
#endif
namespace TMVA {
class MethodBayesClassifier : public MethodBase {
public:
MethodBayesClassifier( TString jobName,
TString methodTitle,
DataSet& theData,
TString theOption = "",
TDirectory* theTargetDir = 0 );
MethodBayesClassifier( DataSet& theData,
TString theWeightFile,
TDirectory* theTargetDir = NULL );
virtual ~MethodBayesClassifier( void );
virtual void Train( void );
virtual void WriteWeightsToStream( ostream& o ) const;
virtual void ReadWeightsFromStream( istream& istr );
virtual Double_t GetMvaValue();
void InitBayesClassifier( void );
const Ranking* CreateRanking() { return 0; }
private:
virtual void DeclareOptions();
virtual void ProcessOptions();
ClassDef(MethodBayesClassifier,0)
;
};
}
#endif // MethodBayesClassifier_H
ROOT page - Class index - Class Hierarchy - Top of the page
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.