Warning, file /include/root/TMVA/VariableIdentityTransform.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028 #ifndef ROOT_TMVA_VariableIdentityTransform
0029 #define ROOT_TMVA_VariableIdentityTransform
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039 #include "TMVA/VariableTransformBase.h"
0040
0041 #include <vector>
0042
0043 namespace TMVA {
0044
0045 class VariableIdentityTransform : public VariableTransformBase {
0046
0047 public:
0048
0049 VariableIdentityTransform( DataSetInfo& dsi );
0050 virtual ~VariableIdentityTransform( void ) {}
0051
0052 void Initialize() override;
0053 Bool_t PrepareTransformation (const std::vector<Event*>& ) override;
0054
0055 void WriteTransformationToStream ( std::ostream& ) const override {}
0056 void ReadTransformationFromStream( std::istream&, const TString& ) override { SetCreated(); }
0057
0058 void AttachXMLTo(void* parent) override;
0059 void ReadFromXML( void* trfnode ) override;
0060
0061 const Event* Transform(const Event* const, Int_t cls ) const override;
0062 const Event* InverseTransform(const Event* const ev, Int_t cls ) const override { return Transform( ev, cls ); }
0063
0064
0065 void MakeFunction(std::ostream& fout, const TString& fncName, Int_t part, UInt_t trCounter, Int_t cls ) override;
0066
0067 ClassDefOverride(VariableIdentityTransform,0);
0068 };
0069
0070 }
0071
0072 #endif