Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
SimulatedAnnealingFitter.h
Go to the documentation of this file.
1// @(#)root/tmva $Id$
2// Author: Andreas Hoecker, Krzysztof Danielowski, Kamil Kraszewski, Maciej Kruk
3
4/**********************************************************************************
5 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6 * Package: TMVA *
7 * Class : SimulatedAnnealingFitter *
8 * *
9 * *
10 * Description: *
11 * Fitter using Simulated Annealing algorithm *
12 * *
13 * Authors (alphabetical): *
14 * Krzysztof Danielowski <danielow@cern.ch> - IFJ & AGH, Poland *
15 * Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
16 * Kamil Kraszewski <kalq@cern.ch> - IFJ & UJ, Poland *
17 * Maciej Kruk <mkruk@cern.ch> - IFJ & AGH, Poland *
18 * *
19 * Copyright (c) 2008: *
20 * IFJ-Krakow, Poland *
21 * CERN, Switzerland *
22 * MPI-K Heidelberg, Germany *
23 * *
24 * Redistribution and use in source and binary forms, with or without *
25 * modification, are permitted according to the terms listed in LICENSE *
26 * (see tmva/doc/LICENSE) *
27 **********************************************************************************/
28
29#ifndef ROOT_TMVA_SimulatedAnnealingFitter
30#define ROOT_TMVA_SimulatedAnnealingFitter
31
32//////////////////////////////////////////////////////////////////////////
33// //
34// SimulatedAnnealingFitter //
35// //
36// Fitter using a Simulated Annealing Algorithm //
37// //
38//////////////////////////////////////////////////////////////////////////
39
40#include "TMVA/FitterBase.h"
41
42#include <vector>
43
44namespace TMVA {
45
46 class IFitterTarget;
47 class Interval;
48
50
51 public:
52
54 const std::vector<TMVA::Interval*>& ranges, const TString& theOption );
55
57
67
68 Double_t Run( std::vector<Double_t>& pars );
69
70 private:
71
72 void DeclareOptions();
73
74 Int_t fMaxCalls; ///< max number of FCN calls
75 Double_t fInitialTemperature; ///< initial temperature (depends on FCN)
76 Double_t fMinTemperature; ///< minimum temperature before SA quit
77 Double_t fEps; ///< relative required FCN accuracy at minimum
78 TString fKernelTemperatureS; ///< string just to set fKernelTemperature
79 Double_t fTemperatureScale; ///< how fast temperature change
80 Double_t fAdaptiveSpeed; ///< how fast temperature change in adaptive (in adaptive two variables describe
81 /// the change of temperature, but fAdaptiveSpeed should be 1.0 and its not
82 /// recommended to change it)
83 Double_t fTemperatureAdaptiveStep; ///< used to calculate InitialTemperature if fUseDefaultTemperature
84 Bool_t fUseDefaultScale; ///< if TRUE, SA calculates its own TemperatureScale
85 Bool_t fUseDefaultTemperature; ///< if TRUE, SA calculates its own InitialTemperature (MinTemperautre)
86
87 ClassDef(SimulatedAnnealingFitter,0); // Fitter using a Simulated Annealing Algorithm
88 };
89
90} // namespace TMVA
91
92#endif
93
94
bool Bool_t
Definition RtypesCore.h:63
double Double_t
Definition RtypesCore.h:59
#define ClassDef(name, id)
Definition Rtypes.h:337
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
Base class for TMVA fitters.
Definition FitterBase.h:51
Double_t Run()
estimator function interface for fitting
Interface for a fitter 'target'.
Fitter using a Simulated Annealing Algorithm.
void SetParameters(Int_t fMaxCalls, Double_t fInitialTemperature, Double_t fMinTemperature, Double_t fEps, TString fKernelTemperatureS, Double_t fTemperatureScale, Double_t fTemperatureAdaptiveStep, Bool_t fUseDefaultScale, Bool_t fUseDefaultTemperature)
set SA configuration parameters
Bool_t fUseDefaultScale
if TRUE, SA calculates its own TemperatureScale
Int_t fMaxCalls
max number of FCN calls
Double_t fTemperatureScale
how fast temperature change
Bool_t fUseDefaultTemperature
if TRUE, SA calculates its own InitialTemperature (MinTemperautre)
TString fKernelTemperatureS
string just to set fKernelTemperature
Double_t fEps
relative required FCN accuracy at minimum
Double_t fAdaptiveSpeed
how fast temperature change in adaptive (in adaptive two variables describe the change of temperature...
Double_t fMinTemperature
minimum temperature before SA quit
Double_t fInitialTemperature
initial temperature (depends on FCN)
Double_t fTemperatureAdaptiveStep
used to calculate InitialTemperature if fUseDefaultTemperature
Basic string class.
Definition TString.h:139
create variable transformations