IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 7cbdf2fc authored by Remy Prechelt's avatar Remy Prechelt
Browse files

Move summary and config loading into base class.

parent c2b20158
No related branches found
No related tags found
1 merge request!317Output infrastructure and Python analysis library.
Pipeline #3504 failed
...@@ -30,10 +30,7 @@ class ObservationPlane(Output): ...@@ -30,10 +30,7 @@ class ObservationPlane(Output):
path: str path: str
The path to the directory containing this output. The path to the directory containing this output.
""" """
super().__init__(path)
# load and store our path and config
self.path = path
self.__config = self.load_config(path)
# try and load our data # try and load our data
try: try:
...@@ -53,7 +50,7 @@ class ObservationPlane(Output): ...@@ -53,7 +50,7 @@ class ObservationPlane(Output):
bool: bool:
True if this is a good output. True if this is a good output.
""" """
return self.__data is not None and self.__config is not None return self.__data is not None
def astype(self, dtype: str = "pandas", **kwargs: Any) -> Any: def astype(self, dtype: str = "pandas", **kwargs: Any) -> Any:
""" """
...@@ -83,21 +80,6 @@ class ObservationPlane(Output): ...@@ -83,21 +80,6 @@ class ObservationPlane(Output):
) )
) )
@property
def config(self) -> Dict[str, Any]:
"""
Return the config file for this output.
Parameters
----------
Returns
-------
Dict[str, any]
The configuration file for this output.
"""
return self.__config
def __repr__(self) -> str: def __repr__(self) -> str:
""" """
Return a string representation of this class. Return a string representation of this class.
......
...@@ -20,7 +20,6 @@ class Output(ABC): ...@@ -20,7 +20,6 @@ class Output(ABC):
that wish to provide reading support for CORSIKA8 outputs. that wish to provide reading support for CORSIKA8 outputs.
""" """
@abstractmethod
def __init__(self, path: str): def __init__(self, path: str):
""" """
__init__ must load the output files and check __init__ must load the output files and check
...@@ -31,7 +30,10 @@ class Output(ABC): ...@@ -31,7 +30,10 @@ class Output(ABC):
path: str path: str
The path to the directory containing this output. The path to the directory containing this output.
""" """
pass # load and store our path and config
self.path = path
self.__config = self.load_config(path)
self.__summary = self.load_summary(path)
@abstractmethod @abstractmethod
def is_good(self) -> bool: def is_good(self) -> bool:
...@@ -68,7 +70,6 @@ class Output(ABC): ...@@ -68,7 +70,6 @@ class Output(ABC):
pass pass
@property @property
@abstractmethod
def config(self) -> Dict[str, Any]: def config(self) -> Dict[str, Any]:
""" """
Return the config file for this output. Return the config file for this output.
...@@ -81,7 +82,22 @@ class Output(ABC): ...@@ -81,7 +82,22 @@ class Output(ABC):
Dict[str, any] Dict[str, any]
The configuration file for this output. The configuration file for this output.
""" """
pass return self.__config
@property
def summary(self) -> Dict[str, Any]:
"""
Return the summary file for this output.
Parameters
----------
Returns
-------
Dict[str, any]
The summary file for this output.
"""
return self.__summary
@property @property
def data(self) -> Any: def data(self) -> Any:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment