Page MenuHomec4science

experiment.py
No OneTemporary

File Metadata

Created
Mon, Jul 14, 08:21

experiment.py

#!/usr/bin/env python
# -*- coding: utf-8 -*-
" module containing class Experiment not implemented yet"
##########################################################################
##########################################################################
class Experiment(object):
"""
class Experiment: object design to store an experiment with its begin date, its ID and a brief description.
"""
# ------------------------------------------------------------------ #
# Constructors/Destructors #
# ------------------------------------------------------------------ #
def __init__(self):
"""__init__: Documentation TODO """
# Members ---------------------- #
# string experiment_begin
self.experiment_begin = None
# string experiment_description
self.experiment_description = None
# string experimentID
self.experimentID = None
pass
##########################################################################
if __name__ == '__main__':
test = Experiment()

Event Timeline