ROOT
v6-24
Reference Guide
Loading...
Searching...
No Matches
VariableDecorrTransform.h
Go to the documentation of this file.
1
// @(#)root/tmva $Id$
2
// Author: Andreas Hoecker, Joerg Stelzer, Helge Voss
3
4
/**********************************************************************************
5
* Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6
* Package: TMVA *
7
* Class : VariableDecorrTransform *
8
* Web : http://tmva.sourceforge.net *
9
* *
10
* Description: *
11
* Decorrelation of input variables *
12
* *
13
* Authors (alphabetical): *
14
* Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
15
* Joerg Stelzer <Joerg.Stelzer@cern.ch> - CERN, Switzerland *
16
* Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, Germany *
17
* *
18
* Copyright (c) 2005: *
19
* CERN, Switzerland *
20
* U. of Victoria, Canada *
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
* (http://tmva.sourceforge.net/LICENSE) *
26
**********************************************************************************/
27
28
#ifndef ROOT_TMVA_VariableDecorrTransform
29
#define ROOT_TMVA_VariableDecorrTransform
30
31
//////////////////////////////////////////////////////////////////////////
32
// //
33
// VariableDecorrTransform //
34
// //
35
// Linear interpolation class //
36
// //
37
//////////////////////////////////////////////////////////////////////////
38
39
#include "
TMatrixDfwd.h
"
40
41
#include "
TMatrixDSymfwd.h
"
42
43
#include "
TMVA/VariableTransformBase.h
"
44
45
#include <vector>
46
47
namespace
TMVA
{
48
49
class
VariableDecorrTransform
:
public
VariableTransformBase
{
50
51
public
:
52
53
VariableDecorrTransform
(
DataSetInfo
& dsi );
54
virtual
~VariableDecorrTransform
(
void
);
55
56
void
Initialize
();
57
Bool_t
PrepareTransformation
(
const
std::vector<Event*>&);
58
59
// virtual const Event* Transform(const Event* const, Types::ESBType type = Types::kMaxSBType) const;
60
virtual
const
Event
*
Transform
(
const
Event
*
const
,
Int_t
cls )
const
;
61
virtual
const
Event
*
InverseTransform
(
const
Event
*
const
,
Int_t
cls )
const
;
62
63
void
WriteTransformationToStream
( std::ostream& )
const
;
64
void
ReadTransformationFromStream
( std::istream&,
const
TString
& );
65
66
virtual
void
AttachXMLTo
(
void
* parent);
67
virtual
void
ReadFromXML
(
void
* trfnode );
68
69
virtual
void
PrintTransformation
( std::ostream & o );
70
71
// writer of function code
72
virtual
void
MakeFunction
( std::ostream& fout,
const
TString
& fncName,
Int_t
part,
UInt_t
trCounter,
Int_t
cls );
73
74
// provides string vector giving explicit transformation
75
std::vector<TString>*
GetTransformationStrings
(
Int_t
cls )
const
;
76
77
private
:
78
79
// mutable Event* fTransformedEvent; //! local event copy
80
std::vector<TMatrixD*>
fDecorrMatrices
;
//! Decorrelation matrix [class0/class1/.../all classes]
81
82
void
CalcSQRMats
(
const
std::vector< Event*>&,
Int_t
maxCls );
83
std::vector<TMatrixDSym*>*
CalcCovarianceMatrices
(
const
std::vector<const Event*>& events,
Int_t
maxCls );
84
85
ClassDef
(
VariableDecorrTransform
,0);
// Variable transformation: decorrelation
86
};
87
88
}
// namespace TMVA
89
90
#endif
91
ClassDef
#define ClassDef(name, id)
Definition
Rtypes.h:325
TMatrixDSymfwd.h
TMatrixDfwd.h
VariableTransformBase.h
TMVA::DataSetInfo
Class that contains all the data information.
Definition
DataSetInfo.h:62
TMVA::Event
Definition
Event.h:51
TMVA::VariableDecorrTransform
Linear interpolation class.
Definition
VariableDecorrTransform.h:49
TMVA::VariableDecorrTransform::PrintTransformation
virtual void PrintTransformation(std::ostream &o)
prints the transformation matrix
Definition
VariableDecorrTransform.cxx:413
TMVA::VariableDecorrTransform::MakeFunction
virtual void MakeFunction(std::ostream &fout, const TString &fncName, Int_t part, UInt_t trCounter, Int_t cls)
creates C++ code fragment of the decorrelation transform for inclusion in standalone C++ class
Definition
VariableDecorrTransform.cxx:425
TMVA::VariableDecorrTransform::~VariableDecorrTransform
virtual ~VariableDecorrTransform(void)
destructor
Definition
VariableDecorrTransform.cxx:65
TMVA::VariableDecorrTransform::fDecorrMatrices
std::vector< TMatrixD * > fDecorrMatrices
Definition
VariableDecorrTransform.h:80
TMVA::VariableDecorrTransform::PrepareTransformation
Bool_t PrepareTransformation(const std::vector< Event * > &)
calculate the decorrelation matrix and the normalization
Definition
VariableDecorrTransform.cxx:82
TMVA::VariableDecorrTransform::Initialize
void Initialize()
initialisation
Definition
VariableDecorrTransform.cxx:75
TMVA::VariableDecorrTransform::CalcCovarianceMatrices
std::vector< TMatrixDSym * > * CalcCovarianceMatrices(const std::vector< const Event * > &events, Int_t maxCls)
TMVA::VariableDecorrTransform::CalcSQRMats
void CalcSQRMats(const std::vector< Event * > &, Int_t maxCls)
Decorrelation matrix [class0/class1/.../all classes].
Definition
VariableDecorrTransform.cxx:244
TMVA::VariableDecorrTransform::ReadFromXML
virtual void ReadFromXML(void *trfnode)
Read the transformation matrices from the xml node.
Definition
VariableDecorrTransform.cxx:322
TMVA::VariableDecorrTransform::GetTransformationStrings
std::vector< TString > * GetTransformationStrings(Int_t cls) const
creates string with variable transformations applied
Definition
VariableDecorrTransform.cxx:114
TMVA::VariableDecorrTransform::WriteTransformationToStream
void WriteTransformationToStream(std::ostream &) const
write the decorrelation matrix to the stream
Definition
VariableDecorrTransform.cxx:272
TMVA::VariableDecorrTransform::AttachXMLTo
virtual void AttachXMLTo(void *parent)
node attachment to parent
Definition
VariableDecorrTransform.cxx:295
TMVA::VariableDecorrTransform::Transform
virtual const Event * Transform(const Event *const, Int_t cls) const
apply the decorrelation transformation
Definition
VariableDecorrTransform.cxx:167
TMVA::VariableDecorrTransform::ReadTransformationFromStream
void ReadTransformationFromStream(std::istream &, const TString &)
Read the decorellation matrix from an input stream.
Definition
VariableDecorrTransform.cxx:369
TMVA::VariableDecorrTransform::InverseTransform
virtual const Event * InverseTransform(const Event *const, Int_t cls) const
apply the inverse decorrelation transformation ... TODO : ... build the inverse transformation
Definition
VariableDecorrTransform.cxx:233
TMVA::VariableTransformBase
Linear interpolation class.
Definition
VariableTransformBase.h:54
TString
Basic string class.
Definition
TString.h:136
bool
int
unsigned int
TMVA
create variable transformations
Definition
GeneticMinimizer.h:22
tmva
tmva
inc
TMVA
VariableDecorrTransform.h
ROOT v6-24 - Reference Guide Generated on Tue Aug 22 2023 03:06:51 (GVA Time) using Doxygen 1.9.8