/****************************************************************************************************************** * Action instruction algorithm(study sample data online,compare with sample *data) * * arg[0] action expression * arg[1] feedback expression * arg[2] expression of judgment result * * feedback expression * arg[2] expression of judgment result * * 1.0 2020-12-17 zoufuzhou ******************************************************************************************************************/ #ifndef _H_ALGORITHM_EXPRESSION_TREND_SAMPLE_H #define _H_ALGORITHM_EXPRESSION_TREND_SAMPLE_H #include #include #include #include #include #include class AlgExpTrendSample : virtual public AlgExp { public: AlgExpTrendSample(const string &name, const Json::Value &rulejson, const string &ruleId); virtual ~AlgExpTrendSample(); public: virtual int init() override; virtual Json::Value exec_mon(); private: int mon_proc(string &outjson, HD3Record *hdRec); // int GetHDTrend(const string& tag); private: MathExpression *exp_act_; MathExpression *exp_feedback_; // HD3Record m_ihdtrend[SAMPLE_COUNT]; string m_sampletag; mix_cc::IhdCom hd_com_; // private: // float m_samples[3]; // float m_stat[3]; // bool m_nosample; // bool m_islearned; // vector mv_stat; // int archive_interval_day_; // time_t mt_lastsave; }; #endif