Exemplo n.º 1
0
 void PoissonProcessSuf::update_raw(const PointProcess &data){
   number_of_events_ += data.number_of_events();
   exposure_time_ += data.window_duration();
 }
Exemplo n.º 2
0
 void PoissonProcessSuf::Update(const PointProcess &process){
   number_of_events_ += process.number_of_events();
   exposure_time_ += process.window_duration();
 }