annotate base/datasets/classes.lisp @ 259:c4e9a7bb9897
change move-to-first-bar to return a constituent, not a list of events
author |
Jamie Forth <j.forth@gold.ac.uk> |
date |
Sat, 19 Mar 2011 18:50:24 +0000 |
parents |
6a3adca16910 |
children |
|
rev |
line source |
j@251
|
1 (cl:in-package #:amuse-datasets)
|
j@250
|
2
|
j@251
|
3 ;;; Abstract classes for datasets.
|
j@251
|
4
|
j@251
|
5 (defclass dataset-identifier (identifier) ()
|
j@250
|
6 (:documentation "A dataset is a set of pieces used for a particualar
|
j@250
|
7 analytical task. A dataset is not necessarily the same thing as a
|
j@250
|
8 corpus or collection (are these things different?). Corpus indicates
|
j@250
|
9 that a set of pieces have been curated in some way and in that sense
|
j@250
|
10 `belong together'. A dataset is just simply a set of pieces gathered
|
j@250
|
11 together to analyse, and the pieces can be from any corpus or
|
j@251
|
12 backend."))
|
j@250
|
13
|
j@251
|
14 (defclass dataset (list-slot-sequence) ())
|