Mercurial > hg > amuse
view implementations/mtp/constructors.lisp @ 160:136ec5516cc4
patch on my computer. Not sure what it does
darcs-hash:20071211145912-f76cc-cb69a7a78367366f9731284888db1c558fa07989.gz
author | David Lewis <d.lewis@gold.ac.uk> |
---|---|
date | Tue, 11 Dec 2007 14:59:12 +0000 |
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))