// @(#)root/tmva $Id: FitterBase.h 20882 2007-11-19 11:31:26Z rdm $ // Author: Andreas Hoecker, Peter Speckmayer, Joerg Stelzer, Helge Voss /********************************************************************************** * Project: TMVA - a Root-integrated toolkit for multivariate data analysis * * Package: TMVA * * Class : FitterBase * * Web : http://tmva.sourceforge.net * * * * Description: * * Base class for TMVA fitters * * * * Authors (alphabetical): * * Andreas Hoecker - CERN, Switzerland * * Peter Speckmayer - CERN, Switzerland * * Joerg Stelzer - CERN, Switzerland * * Helge Voss - MPI-K Heidelberg, Germany * * * * Copyright (c) 2005: * * CERN, Switzerland * * MPI-K Heidelberg, Germany * * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted according to the terms listed in LICENSE * * (http://tmva.sourceforge.net/LICENSE) * **********************************************************************************/ #ifndef ROOT_TMVA_FitterBase #define ROOT_TMVA_FitterBase ////////////////////////////////////////////////////////////////////////// // // // FitterBase // // // // Baseclass for TMVA fitters // // // ////////////////////////////////////////////////////////////////////////// #include #include "TObject.h" #include "TString.h" #ifndef ROOT_TMVA_MsgLogger #include "TMVA/MsgLogger.h" #endif #ifndef ROOT_TMVA_Configurable #include "TMVA/Configurable.h" #endif namespace TMVA { class Interval; class IFitterTarget; class FitterBase : public Configurable { public: FitterBase( IFitterTarget& target, const TString& name, const std::vector ranges, const TString& theOption ); virtual ~FitterBase() {} Double_t Run(); virtual Double_t Run( std::vector& pars ) = 0; Double_t EstimatorFunction( std::vector& parameters ); IFitterTarget& GetFitterTarget() const { return fFitterTarget; } // accessor Int_t GetNpars() const { return fNpars; } // remove namespace in name const char* GetName() const { return fClassName; } protected: // need to implement option declaration virtual void DeclareOptions() = 0; IFitterTarget& fFitterTarget; // pointer to target of fitting procedure const std::vector fRanges; // allowed intervals Int_t fNpars; // number of parameters mutable MsgLogger fLogger; // message logger TString fClassName; // remove TMVA:: from TObject name ClassDef(FitterBase,0) // Baseclass for fitters }; } // namespace TMVA #endif