void SystemProcess()
 {
     if (m_HeatMapInstance == null)
     {
         CreateHeatmapInstance();
     }
     if (m_AggregationView != null)
     {
         m_AggregationView.Fetch(OnAggregation, m_LocalOnly);
     }
 }
 void SystemProcess(bool preProcessed = false)
 {
     if (m_HeatMapInstance == null)
     {
         CreateHeatmapInstance();
     }
     if (m_AggregationView != null)
     {
         if (!preProcessed)
         {
             m_AggregationView.Fetch(OnAggregation, true, preProcessed);
         }
         else
         {
             m_ParserView.SetDataPath(m_AggregationView.GetDataPath());
         }
     }
 }