Renamed the Tracker class to MTPTracker.
[mtp.git] / mtp_tracker.h
similarity index 95%
rename from tracker.h
rename to mtp_tracker.h
index c21df97..08de498 100644 (file)
--- a/tracker.h
@@ -22,8 +22,8 @@
  *
  */
 
-#ifndef TRACKER_H
-#define TRACKER_H
+#ifndef MTP_TRACKER_H
+#define MTP_TRACKER_H
 
 #include <iostream>
 
@@ -32,7 +32,7 @@ using namespace std;
 #include "misc.h"
 #include "mtp_graph.h"
 
-class Tracker {
+class MTPTracker {
   int _nb_locations, _nb_time_steps;
   scalar_t **_detection_score;
   int **_allowed_motion;
@@ -53,8 +53,8 @@ public:
   // The detection scores at each node
   scalar_t **detection_scores;
 
-  Tracker();
-  ~Tracker();
+  MTPTracker();
+  ~MTPTracker();
 
   void allocate(int nb_time_steps, int nb_locations);
   void free();