Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
40 
41 namespace TMVA {
42 
43  class VariableIdentityTransform : public VariableTransformBase {
44 
45  public:
46 
47  VariableIdentityTransform( DataSetInfo& dsi );
48  virtual ~VariableIdentityTransform( void ) {}
49 
50  void Initialize();
51  Bool_t PrepareTransformation (const std::vector<Event*>& );
52 
53  void WriteTransformationToStream ( std::ostream& ) const {}
54  void ReadTransformationFromStream( std::istream&, const TString& ) { SetCreated(); }
55 
56  virtual void AttachXMLTo(void* parent);
57  virtual void ReadFromXML( void* trfnode );
58 
59  virtual const Event* Transform(const Event* const, Int_t cls ) const;
60  virtual const Event* InverseTransform(const Event* const ev, Int_t cls ) const { return Transform( ev, cls ); }
61 
62  // writer of function code
63  virtual void MakeFunction(std::ostream& fout, const TString& fncName, Int_t part, UInt_t trCounter, Int_t cls );
64 
65  ClassDef(VariableIdentityTransform,0); // Variable transformation: identity
66  };
67 
68 } // namespace TMVA
69 
70 #endif