Skip to content
Snippets Groups Projects
Commit c25596c9 authored by sveseli's avatar sveseli
Browse files

adding objects for BSS integration

parent 79d5f059
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
from dmObject import DmObject
class BeamlineInfo(DmObject):
DEFAULT_KEY_LIST = [ 'id', 'name' ]
def __init__(self, dict):
DmObject.__init__(self, dict)
#!/usr/bin/env python
from dmObject import DmObject
class ProposalInfo(DmObject):
DEFAULT_KEY_LIST = [ 'title', 'id', 'experimenters' ]
def __init__(self, dict):
DmObject.__init__(self, dict)
#!/usr/bin/env python
from dmObject import DmObject
class RunInfo(DmObject):
DEFAULT_KEY_LIST = [ 'name', 'startTime', 'endTime' ]
def __init__(self, dict):
DmObject.__init__(self, dict)
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