Comment update.
[mtp.git] / mtp_tracker.h
index 08de498..e412482 100644 (file)
@@ -33,11 +33,6 @@ using namespace std;
 #include "mtp_graph.h"
 
 class MTPTracker {
-  int _nb_locations, _nb_time_steps;
-  scalar_t **_detection_score;
-  int **_allowed_motion;
-  int *_entrances, *_exits;
-
   MTPGraph *_graph;
   scalar_t *_edge_lengths;
 
@@ -47,10 +42,11 @@ class MTPTracker {
 public:
 
   // The spatial structure
-  int **allowed_motion;
-  int *entrances, *exits;
+  int nb_locations, nb_time_steps;
+  int **allowed_motions;
+  int **entrances, **exits;
 
-  // The detection scores at each node
+  // The detection scores at each location and time
   scalar_t **detection_scores;
 
   MTPTracker();