Пример #1
0
Hscore * std_bits_Hscore(double cut_off_level,int report_stagger)
{
  Hscore * out;

  out = Hscore_alloc_std();
  out->his = new_Histogram(-1000,1000,100);
  out->score_level = cut_off_level;
  out->should_store = std_should_store_Hscore;
  out->score_to_his = std_score_to_his;
  out->report_level = report_stagger;

  return out;
}
Пример #2
0
Hscore * std_score_Hscore(int cut_off,int report_stagger)
{
  Hscore * out;

  out = Hscore_alloc_std();
  out->his = new_Histogram(-1000,1000,100);
  out->score_level = cut_off;
  out->should_store = raw_should_store_Hscore;
  out->score_to_his = raw_score_to_his;
  out->report_level = report_stagger;

  return out;
}