Logo ROOT  
Reference Guide
VariableRearrangeTransform.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 : VariableRearrangeTransform *
8 * Web : http://tmva.sourceforge.net *
9 * *
10 * Description: *
11 * rearrangement of input variables *
12 * *
13 * Authors (alphabetical): *
14 * Peter Speckmayer <Peter.Speckmayer@cern.ch> - CERN, Switzerland *
15 * *
16 * Copyright (c) 2005: *
17 * CERN, Switzerland *
18 * U. of Victoria, Canada *
19 * MPI-K Heidelberg, Germany *
20 * *
21 * Redistribution and use in source and binary forms, with or without *
22 * modification, are permitted according to the terms listed in LICENSE *
23 * (http://tmva.sourceforge.net/LICENSE) *
24 **********************************************************************************/
25
26#ifndef ROOT_TMVA_VariableRearrangeTransform
27#define ROOT_TMVA_VariableRearrangeTransform
28
29//////////////////////////////////////////////////////////////////////////
30// //
31// VariableRearrangeTransform //
32// //
33// rearrangement of input variables //
34// //
35//////////////////////////////////////////////////////////////////////////
36
38
39namespace TMVA {
40
42
43 public:
44
45 typedef std::vector<Float_t> FloatVector;
46
48 virtual ~VariableRearrangeTransform( void );
49
50 void Initialize();
51 Bool_t PrepareTransformation (const std::vector<Event*>&);
52
53 virtual const Event* Transform(const Event* const, Int_t cls ) const;
54 virtual const Event* InverseTransform( const Event* const, Int_t cls ) const;
55
56 void WriteTransformationToStream ( std::ostream& ) const {}
57 void ReadTransformationFromStream( std::istream&, const TString& ) { SetCreated(); }
58
59 virtual void AttachXMLTo(void* parent);
60 virtual void ReadFromXML( void* trfnode );
61
62 virtual void PrintTransformation( std::ostream & o );
63
64 // writer of function code
65 virtual void MakeFunction( std::ostream& fout, const TString& fncName, Int_t part, UInt_t trCounter, Int_t cls );
66
67 // provides string vector giving explicit transformation
68 std::vector<TString>* GetTransformationStrings( Int_t cls ) const;
69
70 private:
71
72 ClassDef(VariableRearrangeTransform,0); // Variable transformation: normalization
73 };
74
75} // namespace TMVA
76
77#endif
int Int_t
Definition: RtypesCore.h:41
unsigned int UInt_t
Definition: RtypesCore.h:42
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:326
Class that contains all the data information.
Definition: DataSetInfo.h:60
Rearrangement of input variables.
virtual void ReadFromXML(void *trfnode)
Read the transformation matrices from the xml node.
virtual void AttachXMLTo(void *parent)
create XML description of Rearrange transformation
virtual const Event * Transform(const Event *const, Int_t cls) const
virtual void PrintTransformation(std::ostream &o)
prints the transformation ranges
virtual void MakeFunction(std::ostream &fout, const TString &fncName, Int_t part, UInt_t trCounter, Int_t cls)
creates a normalizing function
virtual const Event * InverseTransform(const Event *const, Int_t cls) const
void ReadTransformationFromStream(std::istream &, const TString &)
VariableRearrangeTransform(DataSetInfo &dsi)
constructor
Bool_t PrepareTransformation(const std::vector< Event * > &)
prepare transformation --> (nothing to do)
void WriteTransformationToStream(std::ostream &) const
std::vector< TString > * GetTransformationStrings(Int_t cls) const
creates string with variable transformations applied
void Initialize()
initialization of the rearrangement transformation (nothing to do)
Linear interpolation class.
Basic string class.
Definition: TString.h:131
create variable transformations