diff --git a/Tst/tst/data_pool_tab.py b/Tst/tst/data_pool_tab.py
index 263f3c036d3433c7509df2a3a8f27eb7322130e3..4e36de9527a2d52275aa2a286ad9f552ac1edd29 100644
--- a/Tst/tst/data_pool_tab.py
+++ b/Tst/tst/data_pool_tab.py
@@ -99,6 +99,14 @@ class DataPoolTable(Gtk.Grid):
 
         self.scrollable_treelist.add(self.treeview)
 
+        # Set up Drag and Drop
+        self.treeview.drag_source_set(Gdk.ModifierType.BUTTON1_MASK, [], Gdk.DragAction.COPY)
+        self.treeview.drag_source_set_target_list(None)
+        self.treeview.drag_source_add_text_targets()
+
+        self.treeview.connect("drag-data-get", self.on_drag_data_get)
+        self.treeview.connect("drag-begin", self.on_drag_begin)
+
 
         self.show_all()
 
@@ -120,6 +128,9 @@ class DataPoolTable(Gtk.Grid):
     def item_selected(self, selection):
         model, row = selection.get_selected()
         if row is not None:
+            global pid
+            pid = model[row][0]
+        else:
             pass
 
 
@@ -133,3 +144,15 @@ class DataPoolTable(Gtk.Grid):
             return True
         else:
             return model[iter][0] == self.current_filter_data_pool
+
+
+
+
+    def on_drag_data_get(self, treeview, drag_context, selection_data, info, time, *args):
+        treeselection = treeview.get_selection()
+        model, my_iter = treeselection.get_selected()
+        selection_data.set_text(pid, -1)
+
+
+    def on_drag_begin(self, *args):
+        pass
diff --git a/start_ccs.py b/start_ccs.py
index eb64112c1b1c8e2a2268dce2541b0fff8427d080..8ff0a701e8640eb989cafaa7cfbc6292daa6339a 100755
--- a/start_ccs.py
+++ b/start_ccs.py
@@ -9,7 +9,7 @@ import ccs_function_lib as cfl
 
 if __name__ == '__main__':
     files_to_open = ()
-    #     os.path.join(confignator.get_option('paths', 'tst'), 'prep_test_env.py'),
-    #     os.path.join(confignator.get_option('paths', 'obsw'), 'send_TC.py')
-    # )
+        # os.path.join(confignator.get_option('paths', 'tst'), 'prep_test_env.py'),
+        # os.path.join(confignator.get_option('paths', 'obsw'), 'send_TC.py')
+
     cfl.start_editor(False, *files_to_open)