ROOT  6.06/09
Reference Guide
TActivationIdentity.cxx
Go to the documentation of this file.
1 // @(#)root/tmva $Id$
2 // Author: Matt Jachowski
3 
4 /**********************************************************************************
5  * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6  * Package: TMVA *
7  * Class : TActivationIdentity *
8  * Web : http://tmva.sourceforge.net *
9  * *
10  * Description: *
11  * Identity activation function for TNeuron *
12  * *
13  * Authors (alphabetical): *
14  * Matt Jachowski <jachowski@stanford.edu> - Stanford University, USA *
15  * *
16  * Copyright (c) 2005: *
17  * CERN, Switzerland *
18  * *
19  * Redistribution and use in source and binary forms, with or without *
20  * modification, are permitted according to the terms listed in LICENSE *
21  * (http://tmva.sourceforge.net/LICENSE) *
22  **********************************************************************************/
23 
24 #include <iostream>
25 
27 
29 
30 ////////////////////////////////////////////////////////////////////////////////
31 /// writes the identity function source code
32 
33 void TMVA::TActivationIdentity::MakeFunction( std::ostream& fout, const TString& fncName )
34 {
35  fout << "double " << fncName << "(double x) const {" << std::endl;
36  fout << " // identity" << std::endl;
37  fout << " return x;" << std::endl;
38  fout << "}" << std::endl;
39 }
ClassImp(TMVA::TActivationIdentity) void TMVA
writes the identity function source code
Basic string class.
Definition: TString.h:137
STL namespace.
typedef void((*Func_t)())
Abstract ClassifierFactory template that handles arbitrary types.