Skip to content

v0.2.55..v0.2.56 changeset MatchClassification.h

Garret Voltz edited this page Aug 14, 2020 · 3 revisions
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchClassification.h b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchClassification.h
index 2784180..10119f8 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchClassification.h
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchClassification.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef MATCHCLASSIFICATION_H
 #define MATCHCLASSIFICATION_H
@@ -51,10 +51,6 @@ class MatchClassification
 public:
 
   MatchClassification();
-
-  /**
-   * Construct the object with predefined values.
-   */
   MatchClassification(double match, double miss, double review);
 
   /**
@@ -63,9 +59,7 @@ public:
   void clear() { _match = 0.0; _miss = 0.0; _review = 0.0; }
 
   double getMatchP() const { return _match; }
-
   double getMissP() const { return _miss; }
-
   double getReviewP() const { return _review; }
 
   /**
@@ -80,15 +74,12 @@ public:
   void normalize();
 
   void setMatch() { _miss = 0; _match = 1; _review = 0; }
-
   void setMatchP(double match) { _match = match; }
 
   void setMiss() { _miss = 1; _match = 0; _review = 0; }
-
   void setMissP(double miss) { _miss = miss; }
 
   void setReview() { _miss = 0; _match = 0; _review = 1; }
-
   void setReviewP(double review) { _review = review; }
 
   QString toString() const
Clone this wiki locally