Esempio n. 1
0
 def __init__(self,datastore,parameters,tags=None):
     MozaikParametrizeObject.__init__(self,parameters)
     self.datastore = datastore
     if tags == None:
         self.tags = []
     else:
         self.tags = tags
Esempio n. 2
0
 def __init__(self, parameters, full_datastore):
     """
     Just check the parameters, and load the data.
     """
     MozaikParametrizeObject.__init__(self, parameters)
     # we will hold the recordings as one neo Block
     self.block = Block()
     self.analysis_results = []
     self.retinal_stimulus = {}
     self.full_datastore = full_datastore  # should be self if actually the instance is actually DataStore
Esempio n. 3
0
 def  __init__(self,datastore,parameters,plot_file_name=None,fig_param=None):
      MozaikParametrizeObject.__init__(self,parameters)
      self.datastore = datastore
      self.plot_file_name = plot_file_name
      self.fig_param = fig_param if fig_param != None else {}
Esempio n. 4
0
 def __init__(self,parameters):
     """
     Just check the parameters, and load the data.
     """
     MozaikParametrizeObject.__init__(self,parameters)