ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PDEFoamKernelLinN.h
Go to the documentation of this file.
1 // @(#)root/tmva $Id$
2 // Author: Dominik Dannheim, Alexander Voigt
3 
4 /**********************************************************************************
5  * Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
6  * Package: TMVA *
7  * Classes: PDEFoamKernelLinN *
8  * Web : http://tmva.sourceforge.net *
9  * *
10  * Description: *
11  * PDEFoam kernel, which linear weights with the neighbor cells. *
12  * *
13  * Authors (alphabetical): *
14  * S. Jadach - Institute of Nuclear Physics, Cracow, Poland *
15  * Tancredi Carli - CERN, Switzerland *
16  * Dominik Dannheim - CERN, Switzerland *
17  * Alexander Voigt - TU Dresden, Germany *
18  * *
19  * Copyright (c) 2010: *
20  * CERN, Switzerland *
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_PDEFoamKernelLinN
29 #define ROOT_TMVA_PDEFoamKernelLinN
30 
31 #ifndef ROOT_TMVA_PDEFoam
32 #include "TMVA/PDEFoam.h"
33 #endif
34 #ifndef ROOT_TMVA_PDEFoamKernelBase
35 #include "TMVA/PDEFoamKernelBase.h"
36 #endif
37 
38 namespace TMVA
39 {
40 
42  {
43 
44  protected:
45  // helper function, which linear weights with the neighbor cells
46  Float_t WeightLinNeighbors(PDEFoam*, std::vector<Float_t>&, ECellValue, Bool_t);
47 
48  // helper function for WeightLinNeighbors()
49  Float_t GetAverageNeighborsValue(PDEFoam*, std::vector<Float_t>&, ECellValue);
50 
51  public:
52  PDEFoamKernelLinN(); // Constructor
53  PDEFoamKernelLinN(const PDEFoamKernelLinN&); // Copy Constructor
54  virtual ~PDEFoamKernelLinN() {} // Destructor
55 
56  // kernel estimator
57  virtual Float_t Estimate(PDEFoam*, std::vector<Float_t>&, ECellValue);
58 
59  ClassDef(PDEFoamKernelLinN, 1) // next neighbor PDEFoam kernel estimator
60  }; // end of PDEFoamKernelLinN
61 } // namespace TMVA
62 
63 #endif
float Float_t
Definition: RtypesCore.h:53
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual Float_t Estimate(PDEFoam *, std::vector< Float_t > &, ECellValue)
Linear neighbors kernel estimator.
Float_t WeightLinNeighbors(PDEFoam *, std::vector< Float_t > &, ECellValue, Bool_t)
Returns the cell value, corresponding to 'txvec' (foam coordinates [0,1]), weighted by the neighbor c...
ECellValue
Definition: PDEFoam.h:85
Float_t GetAverageNeighborsValue(PDEFoam *, std::vector< Float_t > &, ECellValue)
This function returns the average value 'cv' of only nearest neighbor cells.