From bb67087289a79b8f79b419496372b3bcf2cc4ba8 Mon Sep 17 00:00:00 2001 From: philpMartin Date: Mon, 30 Nov 2020 14:51:34 +0100 Subject: [PATCH] Remove AbstractSamplePath claass --- main_package/classes/abstract_sample_path.py | 41 ------------------- .../sets_of_cims_container.py | 0 2 files changed, 41 deletions(-) delete mode 100644 main_package/classes/abstract_sample_path.py rename main_package/classes/{ => deprecated}/sets_of_cims_container.py (100%) diff --git a/main_package/classes/abstract_sample_path.py b/main_package/classes/abstract_sample_path.py deleted file mode 100644 index 1a448da..0000000 --- a/main_package/classes/abstract_sample_path.py +++ /dev/null @@ -1,41 +0,0 @@ - -from abc import ABC, abstractmethod - -import abstract_importer as ai - -import sys -sys.path.append('.') - -class AbstractSamplePath(ABC): - - def __init__(self, importer: ai.AbstractImporter): - self.importer = importer - self._trajectories = None - self._structure = None - super().__init__() - - @abstractmethod - def build_trajectories(self): - """ - Builds the Trajectory object that will contain all the trajectories. - Assigns the Trajectoriy object to the instance attribute _trajectories - Clears all the unused dataframes in Importer Object - - Parameters: - void - Returns: - void - """ - pass - - @abstractmethod - def build_structure(self): - """ - Builds the Structure object that aggregates all the infos about the net. - Assigns the Structure object to the instance attribuite _structure - Parameters: - void - Returns: - void - """ - pass diff --git a/main_package/classes/sets_of_cims_container.py b/main_package/classes/deprecated/sets_of_cims_container.py similarity index 100% rename from main_package/classes/sets_of_cims_container.py rename to main_package/classes/deprecated/sets_of_cims_container.py