annotate base/database/charm/package.lisp @ 318:c4e792b9b898
Add some ideas for charm constituents.
Not particularly useful in its own right, but contains some possibly
useful ideas related to the generalisation of db-compositions.
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Thu, 30 Sep 2010 15:35:15 +0100 |
parents |
|
children |
|
rev |
line source |
j@318
|
1 (cl:defpackage #:amuse-charm
|
j@318
|
2 (:use #:common-lisp #:amuse #:amuse-database-admin)
|
j@318
|
3 (:export #:make-charm-constituent
|
j@318
|
4 #:make-charm-constituent-identifier
|
j@318
|
5 #:make-charm-property-list
|
j@318
|
6 #:composition->charm-constituent
|
j@318
|
7 #:make-onset-segment-constituent
|
j@318
|
8 #:store-charm-constituent
|
j@318
|
9 #:get-charm-constituent
|
j@318
|
10 #:get-charm-parent
|
j@318
|
11 #:get-charm-particles
|
j@318
|
12 #:cache-charm-particles
|
j@318
|
13 #:group-by-onset
|
j@318
|
14 ))
|