ROOT logo
// @(#)root/tmva $Id: Types.cxx 29195 2009-06-24 10:39:49Z brun $   
// Author: Andreas Hoecker, Joerg Stelzer, Helge Voss

/**********************************************************************************
 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis       *
 * Package: TMVA                                                                  *
 * Class  : Types                                                                 *
 * Web    : http://tmva.sourceforge.net                                           *
 *                                                                                *
 * Description:                                                                   *
 *      Implementation                                                            *
 *                                                                                *
 * Authors (alphabetical):                                                        *
 *      Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland              *
 *      Joerg Stelzer   <Joerg.Stelzer@cern.ch>  - CERN, Switzerland              *
 *      Helge Voss      <Helge.Voss@cern.ch>     - MPI-K Heidelberg, Germany      *
 *                                                                                *
 * Copyright (c) 2005:                                                            *
 *      CERN, Switzerland                                                         * 
 *      U. of Victoria, Canada                                                    * 
 *      MPI-K Heidelberg, Germany                                                 * 
 *                                                                                *
 * Redistribution and use in source and binary forms, with or without             *
 * modification, are permitted according to the terms listed in LICENSE           *
 * (http://mva.sourceforge.net/license.txt)                                       *
 **********************************************************************************/

#include <map>
#include <iostream>

#include "TMVA/Types.h"
#include "TMVA/MsgLogger.h"

TMVA::Types* TMVA::Types::fgTypesPtr = 0;

//_______________________________________________________________________
TMVA::Types::Types()
   : fLogger( new MsgLogger("Types") )
{
   // constructor
}

TMVA::Types::~Types() 
{
   // destructor
   delete fLogger;
}

//_______________________________________________________________________
Bool_t TMVA::Types::AddTypeMapping( Types::EMVA method, const TString& methodname ) 
{
   std::map<TString, EMVA>::const_iterator it = fStr2type.find( methodname );
   if (it != fStr2type.end()) {
      Log() << kFATAL 
            << "Cannot add method " << methodname 
            << " to the name->type map because it exists already" << Endl;
      return kFALSE;
   }

   fStr2type[methodname] = method;
   return kTRUE;
}

//_______________________________________________________________________
TMVA::Types::EMVA TMVA::Types::GetMethodType( const TString& method ) const 
{ 
   // returns the method type (enum) for a given method (string)
   std::map<TString, EMVA>::const_iterator it = fStr2type.find( method );
   if (it == fStr2type.end()) {
      Log() << kFATAL << "Unknown method in map: " << method << Endl;
      return kVariable; // Inserted to get rid of GCC warning...
   }
   else return it->second;
}

//_______________________________________________________________________
TString TMVA::Types::GetMethodName( TMVA::Types::EMVA method ) const 
{
   std::map<TString, EMVA>::const_iterator it = fStr2type.begin();
   for (; it!=fStr2type.end(); it++) if (it->second == method) return it->first;
   Log() << kFATAL << "Unknown method index in map: " << method << Endl;
   return "";
}
 Types.cxx:1
 Types.cxx:2
 Types.cxx:3
 Types.cxx:4
 Types.cxx:5
 Types.cxx:6
 Types.cxx:7
 Types.cxx:8
 Types.cxx:9
 Types.cxx:10
 Types.cxx:11
 Types.cxx:12
 Types.cxx:13
 Types.cxx:14
 Types.cxx:15
 Types.cxx:16
 Types.cxx:17
 Types.cxx:18
 Types.cxx:19
 Types.cxx:20
 Types.cxx:21
 Types.cxx:22
 Types.cxx:23
 Types.cxx:24
 Types.cxx:25
 Types.cxx:26
 Types.cxx:27
 Types.cxx:28
 Types.cxx:29
 Types.cxx:30
 Types.cxx:31
 Types.cxx:32
 Types.cxx:33
 Types.cxx:34
 Types.cxx:35
 Types.cxx:36
 Types.cxx:37
 Types.cxx:38
 Types.cxx:39
 Types.cxx:40
 Types.cxx:41
 Types.cxx:42
 Types.cxx:43
 Types.cxx:44
 Types.cxx:45
 Types.cxx:46
 Types.cxx:47
 Types.cxx:48
 Types.cxx:49
 Types.cxx:50
 Types.cxx:51
 Types.cxx:52
 Types.cxx:53
 Types.cxx:54
 Types.cxx:55
 Types.cxx:56
 Types.cxx:57
 Types.cxx:58
 Types.cxx:59
 Types.cxx:60
 Types.cxx:61
 Types.cxx:62
 Types.cxx:63
 Types.cxx:64
 Types.cxx:65
 Types.cxx:66
 Types.cxx:67
 Types.cxx:68
 Types.cxx:69
 Types.cxx:70
 Types.cxx:71
 Types.cxx:72
 Types.cxx:73
 Types.cxx:74
 Types.cxx:75
 Types.cxx:76
 Types.cxx:77
 Types.cxx:78
 Types.cxx:79
 Types.cxx:80
 Types.cxx:81
 Types.cxx:82
 Types.cxx:83