ROOT  6.06/09
Reference Guide
VariableIdentityTransform.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 : VariableIdentityTransform *
8  * Web : http://tmva.sourceforge.net *
9  * *
10  * Description: *
11  * Identity transform *
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_VariableIdentityTransform
29 #define ROOT_TMVA_VariableIdentityTransform
30 
31 //////////////////////////////////////////////////////////////////////////
32 // //
33 // VariableIdentityTransform //
34 // //
35 // Linear interpolation class //
36 // //
37 //////////////////////////////////////////////////////////////////////////
38 
39 #ifndef ROOT_TMVA_VariableTransformBase
41 #endif
42 
43 namespace TMVA {
44 
46 
47  public:
48 
50  virtual ~VariableIdentityTransform( void ) {}
51 
52  void Initialize();
53  Bool_t PrepareTransformation (const std::vector<Event*>& );
54 
55  void WriteTransformationToStream ( std::ostream& ) const {}
56  void ReadTransformationFromStream( std::istream&, const TString& ) { SetCreated(); }
57 
58  virtual void AttachXMLTo(void* parent);
59  virtual void ReadFromXML( void* trfnode );
60 
61  virtual const Event* Transform(const Event* const, Int_t cls ) const;
62  virtual const Event* InverseTransform(const Event* const ev, Int_t cls ) const { return Transform( ev, cls ); }
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  ClassDef(VariableIdentityTransform,0) // Variable transformation: identity
68  };
69 
70 } // namespace TMVA
71 
72 #endif
Bool_t PrepareTransformation(const std::vector< Event * > &)
the identity does not need to be prepared, only calculate the normalization
void Initialize()
nothing to initialize
virtual const Event * InverseTransform(const Event *const ev, Int_t cls) const
virtual const Event * Transform(const Event *const, Int_t cls) const
identity transform returns same event
Basic string class.
Definition: TString.h:137
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void MakeFunction(std::ostream &fout, const TString &fncName, Int_t part, UInt_t trCounter, Int_t cls)
creates C++ code fragment of the indentity transform for inclusion in standalone C++ class ...
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void ReadFromXML(void *trfnode)
reding the identity transformation from XML
void ReadTransformationFromStream(std::istream &, const TString &)
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual void AttachXMLTo(void *parent)
identity transformation to write to XML Log() << kFATAL << "Please implement writing of transformatio...
void WriteTransformationToStream(std::ostream &) const
VariableIdentityTransform(DataSetInfo &dsi)
Abstract ClassifierFactory template that handles arbitrary types.