public void add(ClusStatistic other) {
   BitVectorStat or = (BitVectorStat) other;
   m_SumWeight += or.m_SumWeight;
   m_Bits.add(or.m_Bits);
   m_Modified = true;
 }