Logo ROOT   6.10/09
Reference Guide
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 
44 
45 namespace TMVA {
46 
48 
49  public:
50 
52  virtual ~VariableDecorrTransform( void );
53 
54  void Initialize();
55  Bool_t PrepareTransformation (const std::vector<Event*>&);
56 
57  // virtual const Event* Transform(const Event* const, Types::ESBType type = Types::kMaxSBType) const;
58  virtual const Event* Transform(const Event* const, Int_t cls ) const;
59  virtual const Event* InverseTransform(const Event* const, Int_t cls ) const;
60 
61  void WriteTransformationToStream ( std::ostream& ) const;
62  void ReadTransformationFromStream( std::istream&, const TString& );
63 
64  virtual void AttachXMLTo(void* parent);
65  virtual void ReadFromXML( void* trfnode );
66 
67  virtual void PrintTransformation( std::ostream & o );
68 
69  // writer of function code
70  virtual void MakeFunction( std::ostream& fout, const TString& fncName, Int_t part, UInt_t trCounter, Int_t cls );
71 
72  // provides string vector giving explicit transformation
73  std::vector<TString>* GetTransformationStrings( Int_t cls ) const;
74 
75  private:
76 
77  // mutable Event* fTransformedEvent; //! local event copy
78  std::vector<TMatrixD*> fDecorrMatrices; //! Decorrelation matrix [class0/class1/.../all classes]
79 
80  void CalcSQRMats( const std::vector< Event*>&, Int_t maxCls );
81  std::vector<TMatrixDSym*>* CalcCovarianceMatrices( const std::vector<const Event*>& events, Int_t maxCls );
82 
83  ClassDef(VariableDecorrTransform,0); // Variable transformation: decorrelation
84  };
85 
86 } // namespace TMVA
87 
88 #endif
89 
std::vector< TString > * GetTransformationStrings(Int_t cls) const
creates string with variable transformations applied
Bool_t PrepareTransformation(const std::vector< Event *> &)
calculate the decorrelation matrix and the normalization
virtual void PrintTransformation(std::ostream &o)
prints the transformation matrix
Basic string class.
Definition: TString.h:129
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual ~VariableDecorrTransform(void)
destructor
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 ...
#define ClassDef(name, id)
Definition: Rtypes.h:297
virtual const Event * Transform(const Event *const, Int_t cls) const
apply the decorrelation transformation
std::vector< TMatrixDSym * > * CalcCovarianceMatrices(const std::vector< const Event *> &events, Int_t maxCls)
virtual void ReadFromXML(void *trfnode)
Read the transformation matrices from the xml node.
Class that contains all the data information.
Definition: DataSetInfo.h:60
Linear interpolation class.
void ReadTransformationFromStream(std::istream &, const TString &)
Read the decorellation matrix from an input stream.
void CalcSQRMats(const std::vector< Event *> &, Int_t maxCls)
Decorrelation matrix [class0/class1/.../all classes].
unsigned int UInt_t
Definition: RtypesCore.h:42
void WriteTransformationToStream(std::ostream &) const
write the decorrelation matrix to the stream
Linear interpolation class.
virtual void AttachXMLTo(void *parent)
node attachment to parent
Abstract ClassifierFactory template that handles arbitrary types.
VariableDecorrTransform(DataSetInfo &dsi)
constructor
std::vector< TMatrixD * > fDecorrMatrices
virtual const Event * InverseTransform(const Event *const, Int_t cls) const
apply the inverse decorrelation transformation ...