File indexing completed on 2025-01-18 10:11:04
0001 #ifndef TMVA_SOFIE_RFUNCTION_SUM
0002 #define TMVA_SOFIE_RFUNCTION_SUM
0003
0004
0005 #include "TMVA/RFunction.hxx"
0006
0007 namespace TMVA {
0008 namespace Experimental {
0009 namespace SOFIE {
0010
0011 class RFunction_Sum: public RFunction_Aggregate {
0012
0013 public:
0014 RFunction_Sum():RFunction_Aggregate(FunctionReducer::SUM) {
0015 fFuncName = "Aggregate_by_Sum";
0016 }
0017
0018 std::string GenerateModel();
0019 };
0020
0021 }
0022 }
0023 }
0024
0025 #endif