Remove remaining irrelevant comments from eqpalg (final batch)

This commit is contained in:
Huamonarch 2026-05-09 13:31:06 +08:00
parent e3207fa593
commit 48c9fe7f22
3 changed files with 14 additions and 18 deletions

View File

@ -388,12 +388,10 @@ std::vector<AlarmInfo> ExpSample2D::exec_task(mix_cc::time_range_t time_range) {
} catch (const std::exception &e) { } catch (const std::exception &e) {
this->sample_result_ = "polyfit ERROR!"; this->sample_result_ = "polyfit ERROR!";
this->gb_logger_->log_error(rule_name_ + "exec_task:" + e.what()); this->gb_logger_->log_error(rule_name_ + "exec_task:" + e.what());
// return {};
cal_vlid = false; cal_vlid = false;
this->update_t_sample_mag(cal_vlid); this->update_t_sample_mag(cal_vlid);
return {}; return {};
} }
// sample2d.fit_coefs = lsm_ptr_->polyfit();
sample2d.scores = lsm_ptr_->get_r2a(); sample2d.scores = lsm_ptr_->get_r2a();
sample2d.pear_coefs = lsm_ptr_->cor(); sample2d.pear_coefs = lsm_ptr_->cor();
sample2d.orders = lsm_ptr_->get_order_best(); sample2d.orders = lsm_ptr_->get_order_best();
@ -405,7 +403,6 @@ std::vector<AlarmInfo> ExpSample2D::exec_task(mix_cc::time_range_t time_range) {
} }
/* 插入样本管理表 T_SAMPLE_MAG */ /* 插入样本管理表 T_SAMPLE_MAG */
this->query_time_range_ = time_range; this->query_time_range_ = time_range;
// insert_mag(sample_id);
this->sample_result_ = this->sample_param_.dump(); this->sample_result_ = this->sample_param_.dump();
} else { } else {
this->gb_logger_->log_error(rule_name_ + "数据量不足,不计算!"); this->gb_logger_->log_error(rule_name_ + "数据量不足,不计算!");

View File

@ -545,4 +545,4 @@ bool STA::reset_data() {
this->running_stat_.min()); this->running_stat_.min());
} }
} // namespace DAA }

View File

@ -27,7 +27,7 @@ using std::map;
using std::string; using std::string;
using std::unordered_map; using std::unordered_map;
using std::vector; using std::vector;
const int STA_SIZE_MIN = 50; ///<统计最小分组数量 const int STA_SIZE_MIN = 50;
string double2str(double data, int precision = 2); string double2str(double data, int precision = 2);
@ -169,27 +169,26 @@ public:
private: private:
string rule_id_; string rule_id_;
RSD running_stat_; RSD running_stat_;
bool is_init_ = false; ///< T_RULE_SAMPLE_1D_INFO 是否有记录 bool is_init_ = false;
std::unique_ptr<LOG> logger_; std::unique_ptr<LOG> logger_;
Dist dist_1d_; ///<分布处理类 Dist dist_1d_;
bool is_need_ = true; ///<需要放大100倍 bool is_need_ = true;
double range_; ///<间距 double range_;
double init_value_; ///< a0an = a0 + n*range_ double init_value_;
// unordered_map<int64_t, int64_t> dist_data_; ///<分布数据 map<int64_t, int64_t> dist_data_;
map<int64_t, int64_t> dist_data_; ///<分布数据
double scale_; ///< 数据缩放大小 double scale_;
static constexpr size_t k_dest_dump_size = 10000; ///< 目标解压缩后 数据量大小 static constexpr size_t k_dest_dump_size = 10000;
vector<FreqDistData> sample_1d_data_; ///<频数分布数据 db2查询获得 vector<FreqDistData> sample_1d_data_;
mix_cc::float_range_t dist_range_ci_; ///<置信区间 mix_cc::float_range_t dist_range_ci_;
bool is_task_ = false; bool is_task_ = false;
SampleStat sample_stat_; ///<统计样本 结果 json SampleStat sample_stat_;
int seq_ = 0; ///<样本记录序号 int seq_ = 0;
private: private:
/** /**