Mercurial > hg > amuse
view implementations/mtp/constructors.lisp @ 306:d70ff27b1968
add note about linked-events mixin
Ignore-this: c5677560055960b06b1689b7a89f6d39
darcs-hash:20100404210537-16a00-7ca82f871410639d74103e352ecad60979a128c9.gz
author | j.forth <j.forth@gold.ac.uk> |
---|---|
date | Sun, 04 Apr 2010 22:05:37 +0100 |
parents | ce4a90427366 |
children |
line wrap: on
line source
(cl:in-package #:amuse-mtp) (defun make-mtp-dataset-identifier (dataset-id) (make-instance 'mtp-dataset-identifier :dataset-id dataset-id)) (defun make-mtp-composition-identifier (dataset-id composition-id) (make-instance 'mtp-composition-identifier :dataset-id dataset-id :composition-id composition-id)) (defun make-mtp-dataset (&rest args) (apply #'make-instance 'mtp-dataset args)) (defun make-mtp-composition (&rest args) (apply #'make-instance 'mtp-composition args)) (defun make-mtp-event (&rest args) (apply #'make-instance 'mtp-event args))