Skip to content
Snippets Groups Projects
Commit 4a186fa3 authored by Nathan Hertz's avatar Nathan Hertz Committed by Daniel Lyons
Browse files

Minor formatting

parent 5dff3019
No related branches found
No related tags found
1 merge request!337ingestion manifest creation for EVLA CAL ingestion only
......@@ -49,6 +49,17 @@ class InputGroup:
return repr(self.__dict__)
class OutputGroup:
"""Represents result of data processing"""
def __init__(self):
self.science_products = []
self.ancillary_products = []
def __repr__(self):
return repr(self.__dict__)
class IngestionManifest:
"""Represents JSON layout of ingestion information, encompassing several potential scenarios.
see ingest_envoy/test/examples, nicked from https://open-confluence.nrao.edu/x/roPCAQ
......@@ -88,19 +99,10 @@ class IngestionManifest:
)
class OutputGroup:
"""Represents result of data processing"""
def __init__(self):
self.science_products = []
self.ancillary_products = []
def __repr__(self):
return repr(self.__dict__)
class AssociateGroup:
"""
NOTE: Only used in the case of RealFast execution blocks currently
A representation of Science Products which are not part of the same Input or Output groups
but are still fundamentally linked. Created for RealFast project, to link the RealFast
specific execution block & image to the execution block during which a transient was
......
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