// @(#)root/tmva $Id$
// Author: Alexander Voigt

/**********************************************************************************
 * Project: TMVA - a Root-integrated toolkit for multivariate data analysis       *
 * Package: TMVA                                                                  *
 * Classes: PDEFoamDecisionTree                                                   *
 * Web    : http://tmva.sourceforge.net                                           *
 *                                                                                *
 * Description:                                                                   *
 *      Class for decision tree like PDEFoam.  It overrides                       *
 *      PDEFoam::Explore() to use the decision tree like cell split               *
 *      algorithm, given a specific separation type.                              *
 *                                                                                *
 * Authors (alphabetical):                                                        *
 *      S. Jadach        - Institute of Nuclear Physics, Cracow, Poland           *
 *      Tancredi Carli   - CERN, Switzerland                                      *
 *      Dominik Dannheim - CERN, Switzerland                                      *
 *      Alexander Voigt  - TU Dresden, Germany                                    *
 *                                                                                *
 * Copyright (c) 2010:                                                            *
 *      CERN, Switzerland                                                         *
 *      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://tmva.sourceforge.net/LICENSE)                                          *
 **********************************************************************************/

#ifndef ROOT_TMVA_PDEFoamDecisionTree
#define ROOT_TMVA_PDEFoamDecisionTree

#ifndef ROOT_TMVA_PDEFoamDiscriminant
#include "TMVA/PDEFoamDiscriminant.h"
#endif
#ifndef ROOT_TMVA_SeparationBase
#include "TMVA/SeparationBase.h"
#endif

namespace TMVA
{

   class PDEFoamDecisionTree : public PDEFoamDiscriminant
   {

   private:
      SeparationBase *fSepType;    // separation type

   protected:

      virtual void Explore(PDEFoamCell *Cell);     // Exploration of the cell

      PDEFoamDecisionTree(const PDEFoamDecisionTree&); // Copy Constructor  NOT USED

   public:
      PDEFoamDecisionTree();               // Default constructor (used only by ROOT streamer)
      PDEFoamDecisionTree(const TString&, SeparationBase *sepType, UInt_t cls); // Principal user-defined constructor
      virtual ~PDEFoamDecisionTree();      // Default destructor

      // ---------- ROOT class definition
      ClassDef(PDEFoamDecisionTree, 1) // Decision tree like PDEFoam
   }; // end of PDEFoamDecisionTree

}  // namespace TMVA

#endif
 PDEFoamDecisionTree.h:1
 PDEFoamDecisionTree.h:2
 PDEFoamDecisionTree.h:3
 PDEFoamDecisionTree.h:4
 PDEFoamDecisionTree.h:5
 PDEFoamDecisionTree.h:6
 PDEFoamDecisionTree.h:7
 PDEFoamDecisionTree.h:8
 PDEFoamDecisionTree.h:9
 PDEFoamDecisionTree.h:10
 PDEFoamDecisionTree.h:11
 PDEFoamDecisionTree.h:12
 PDEFoamDecisionTree.h:13
 PDEFoamDecisionTree.h:14
 PDEFoamDecisionTree.h:15
 PDEFoamDecisionTree.h:16
 PDEFoamDecisionTree.h:17
 PDEFoamDecisionTree.h:18
 PDEFoamDecisionTree.h:19
 PDEFoamDecisionTree.h:20
 PDEFoamDecisionTree.h:21
 PDEFoamDecisionTree.h:22
 PDEFoamDecisionTree.h:23
 PDEFoamDecisionTree.h:24
 PDEFoamDecisionTree.h:25
 PDEFoamDecisionTree.h:26
 PDEFoamDecisionTree.h:27
 PDEFoamDecisionTree.h:28
 PDEFoamDecisionTree.h:29
 PDEFoamDecisionTree.h:30
 PDEFoamDecisionTree.h:31
 PDEFoamDecisionTree.h:32
 PDEFoamDecisionTree.h:33
 PDEFoamDecisionTree.h:34
 PDEFoamDecisionTree.h:35
 PDEFoamDecisionTree.h:36
 PDEFoamDecisionTree.h:37
 PDEFoamDecisionTree.h:38
 PDEFoamDecisionTree.h:39
 PDEFoamDecisionTree.h:40
 PDEFoamDecisionTree.h:41
 PDEFoamDecisionTree.h:42
 PDEFoamDecisionTree.h:43
 PDEFoamDecisionTree.h:44
 PDEFoamDecisionTree.h:45
 PDEFoamDecisionTree.h:46
 PDEFoamDecisionTree.h:47
 PDEFoamDecisionTree.h:48
 PDEFoamDecisionTree.h:49
 PDEFoamDecisionTree.h:50
 PDEFoamDecisionTree.h:51
 PDEFoamDecisionTree.h:52
 PDEFoamDecisionTree.h:53
 PDEFoamDecisionTree.h:54
 PDEFoamDecisionTree.h:55
 PDEFoamDecisionTree.h:56
 PDEFoamDecisionTree.h:57
 PDEFoamDecisionTree.h:58
 PDEFoamDecisionTree.h:59
 PDEFoamDecisionTree.h:60
 PDEFoamDecisionTree.h:61
 PDEFoamDecisionTree.h:62
 PDEFoamDecisionTree.h:63
 PDEFoamDecisionTree.h:64
 PDEFoamDecisionTree.h:65
 PDEFoamDecisionTree.h:66