Warning, file /include/root/TMVA/RFunction_Mean.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
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() override;
0018 };
0019
0020 }
0021 }
0022 }
0023
0024 #endif