[docs]@config.nodeclassCellModel(SimulationComponent):""" Cell models are simulator specific representations of a cell type. """cell_type:"CellType"=config.ref(refs.cell_type_ref,key="name")""" The cell type that this model represents """parameters:cfglist[Parameter]=config.list(type=Parameter)""" The parameters of the model. """def__lt__(self,other):try:returnself.name<other.nameexceptException:returnTrue