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