summaryrefslogtreecommitdiffstats
path: root/lookup/RatioLut.java
diff options
context:
space:
mode:
Diffstat (limited to 'lookup/RatioLut.java')
-rw-r--r--lookup/RatioLut.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/lookup/RatioLut.java b/lookup/RatioLut.java
new file mode 100644
index 0000000..9ead05e
--- /dev/null
+++ b/lookup/RatioLut.java
@@ -0,0 +1,41 @@
+package lookup;
+
+import java.util.LinkedList;
+import java.util.List;
+
+import DataStructure.GPScoordinate;
+import DataStructure.SingleBTS;
+
+/**
+ * there should be as many RatioLuts as there are entries in arfcn table. For
+ * every OpenBSC BTS one!
+ *
+ * @author richy
+ *
+ */
+public class RatioLut implements ILut {
+ public int bts; // to where are the ratios calculated
+
+ public RatioLut(int ARFCN) {
+ this.bts = ARFCN;
+ }
+
+ @Override
+ public LinkedList<GPScoordinate> get(SingleBTS MR) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+ @Override
+ public void fill(GPScoordinate where, SingleBTS what) {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public LinkedList<GPScoordinate> get(List<SingleBTS> MR) {
+ // TODO Auto-generated method stub
+ return null;
+ }
+
+}