Belle II Software  release-05-01-25
RegressionFastBDT.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2018 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Nils Braun *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #pragma once
12 #include <mva/methods/Regression.h>
13 #include <mva/methods/FastBDT.h>
14 
15 #include <string>
16 
17 namespace Belle2 {
22  namespace MVA {
24  class RegressionFastBDTOptions : public RegressionOptions<FastBDTOptions> {
25  public:
27  std::string getMethod() const override { return "RegressionFastBDT"; }
28  };
29 
31  using RegressionFastBDTTeacher = RegressionTeacher<FastBDTTeacher, RegressionFastBDTOptions>;
32 
35  }
37 }
Belle2::MVA::RegressionFastBDTOptions::getMethod
std::string getMethod() const override
Return a correct name for this method.
Definition: RegressionFastBDT.h:35
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::MVA::RegressionExpert
Generic expert for the regression applications.
Definition: Regression.h:189