"src/python/dm/git@git.aps.anl.gov:hammonds/dm-docs.git" did not exist on "3a1557f61039b8f810ffd6d874f73ff5af028683"
Forked from
DM / dm-docs
261 commits behind, 128 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
experiment.py 366 B
#!/usr/bin/env python
import time
from dmObject import DmObject
class Experiment(DmObject):
DEFAULT_KEY_LIST = [ 'id', 'name', 'dataDirectory', 'startTime', 'stopTime' ]
def __init__(self, dict={}):
DmObject.__init__(self, dict)
####################################################################
# Testing
if __name__ == '__main__':
pass