Mercurial > hg > amuse
diff implementations/mtp/constructors.lisp @ 46:34fb42cba5b9
basic mtp amuse implementation
darcs-hash:20070615111202-aa3d6-498f4d035964f6f8e8803de9cbf6f50974affe88.gz
author | m.pearce <m.pearce@gold.ac.uk> |
---|---|
date | Fri, 15 Jun 2007 12:12:02 +0100 |
parents | |
children | ce4a90427366 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/implementations/mtp/constructors.lisp Fri Jun 15 12:12:02 2007 +0100 @@ -0,0 +1,12 @@ +(cl:in-package #:amuse-mtp) + +(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-composition (&rest args) + (apply #'make-instance 'mtp-composition args)) + +(defun make-mtp-event (&rest args) + (apply #'make-instance 'mtp-event args)) +