Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
FitterBase.cxx
Go to the documentation of this file.
1// @(#)root/tmva $Id$
2// Author: Andreas Hoecker, Peter Speckmayer, Joerg Stelzer, Helge Voss
3
4/**********************************************************************************
5 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6 * Package: TMVA *
7 * Class : FitterBase *
8 * *
9 * *
10 * Description: *
11 * Implementation *
12 * *
13 * Authors (alphabetical): *
14 * Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
15 * Peter Speckmayer <speckmay@mail.cern.ch> - CERN, Switzerland *
16 * Joerg Stelzer <Joerg.Stelzer@cern.ch> - CERN, Switzerland *
17 * Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, Germany *
18 * *
19 * Copyright (c) 2005: *
20 * CERN, Switzerland *
21 * MPI-K Heidelberg, Germany *
22 * *
23 * Redistribution and use in source and binary forms, with or without *
24 * modification, are permitted according to the terms listed in LICENSE *
25 * (see tmva/doc/LICENSE) *
26 **********************************************************************************/
27
28/*! \class TMVA::FitterBase
29\ingroup TMVA
30
31Base class for TMVA fitters. Also defines generalised fitting interface
32
33*/
34
35#include "TMVA/FitterBase.h"
36#include "TMVA/Interval.h"
37#include "TMVA/IFitterTarget.h"
38
39#include "TMVA/Configurable.h"
40#include "TMVA/MsgLogger.h"
41#include "TMVA/Types.h"
42
43#include "Rtypes.h"
44#include "TString.h"
45
47
48#ifdef _WIN32
49/*Disable warning C4355: 'this' : used in base member initializer list*/
50#pragma warning ( disable : 4355 )
51#endif
52
53////////////////////////////////////////////////////////////////////////////////
54/// constructor
55
57 const TString& name,
58 const std::vector<Interval*> ranges,
59 const TString& theOption )
60: Configurable( theOption ),
61 fFitterTarget( target ),
62 fRanges( ranges ),
63 fNpars( ranges.size() ),
64 fLogger( new MsgLogger("FitterBase", kINFO) ),
65 fClassName( name )
66{
68 SetConfigDescription( "Configuration options for setup and tuning of specific fitter" );
69}
70
71////////////////////////////////////////////////////////////////////////////////
72/// estimator function interface for fitting
73
75{
76 std::vector<Double_t> pars;
77 for (std::vector<Interval*>::const_iterator parIt = fRanges.begin(); parIt != fRanges.end(); ++parIt) {
78 pars.push_back( (*parIt)->GetMean() );
79 }
80
81 // delete fLogger;
82 return this->Run( pars );
83}
84
85////////////////////////////////////////////////////////////////////////////////
86/// estimator function interface for fitting
87
88Double_t TMVA::FitterBase::EstimatorFunction( std::vector<Double_t>& parameters )
89{
90 return GetFitterTarget().EstimatorFunction( parameters );
91}
92
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
#define ClassImp(name)
Definition Rtypes.h:377
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t target
char name[80]
Definition TGX11.cxx:110
void SetConfigDescription(const char *d)
void SetConfigName(const char *n)
Base class for TMVA fitters.
Definition FitterBase.h:51
Double_t EstimatorFunction(std::vector< Double_t > &parameters)
estimator function interface for fitting
FitterBase(IFitterTarget &target, const TString &name, const std::vector< TMVA::Interval * > ranges, const TString &theOption)
constructor
const char * GetName() const
Returns name of object.
Definition FitterBase.h:70
Double_t Run()
estimator function interface for fitting
Interface for a fitter 'target'.
ostringstream derivative to redirect and format output
Definition MsgLogger.h:57
Basic string class.
Definition TString.h:139