Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 129 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
experiment.py 395 B
#!/usr/bin/env python

import time
from dmObject import DmObject

class Experiment(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'name', 'dataDirectory', 'startDate', 'endDate', 'daqStartTime', 'daqEndTime' ]

    def __init__(self, dict={}):
        DmObject.__init__(self, dict)

####################################################################
# Testing
if __name__ == '__main__':
    pass