/usr/include/root/TMVA/FitterBase.h is in libroot-tmva-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | // @(#)root/tmva $Id$
// 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 <Andreas.Hocker@cern.ch> - CERN, Switzerland *
* Peter Speckmayer <speckmay@mail.cern.ch> - CERN, Switzerland *
* Joerg Stelzer <Joerg.Stelzer@cern.ch> - CERN, Switzerland *
* Helge Voss <Helge.Voss@cern.ch> - 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<vector>
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifndef ROOT_TMVA_Configurable
#include "TMVA/Configurable.h"
#endif
namespace TMVA {
class Interval;
class IFitterTarget;
class MsgLogger;
class FitterBase : public Configurable {
public:
FitterBase( IFitterTarget& target, const TString& name, const std::vector<TMVA::Interval*> ranges,
const TString& theOption );
virtual ~FitterBase() {}
Double_t Run();
virtual Double_t Run( std::vector<Double_t>& pars ) = 0;
Double_t EstimatorFunction( std::vector<Double_t>& 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<TMVA::Interval*> fRanges; // allowed intervals
Int_t fNpars; // number of parameters
mutable MsgLogger* fLogger; // message logger
MsgLogger& Log() const { return *fLogger; }
TString fClassName; // remove TMVA:: from TObject name
ClassDef(FitterBase,0) // Baseclass for fitters
};
} // namespace TMVA
#endif
|