Source code for States

# CellTracking.py
# By MW, Jun 2013
# GPLv3+
#
# Class managing the States

import imp
State = imp.load_source("State", './bin/States/State.py')  # 
state_list = []

[docs]def new_state(movie) : """Function that instanciate a new State class Takes a movie instance as an input""" s = State.State(movie) state_list.append(s) return s