StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
dbCollection.h
1 /***************************************************************************
2  *
3  * $Id: dbCollection.h,v 1.1 2000/03/28 17:03:19 porter Exp $
4  *
5  * Author: R. Jeff Porter
6  ***************************************************************************
7  *
8  * Description: Simple table definition of a named collection for
9  * timestamped collection access (e.g. in Conditions)
10  *
11  ***************************************************************************
12  *
13  * $Log: dbCollection.h,v $
14  * Revision 1.1 2000/03/28 17:03:19 porter
15  * Several upgrades:
16  * 1. configuration by timestamp for Conditions
17  * 2. query by whereClause made more systematic
18  * 3. conflict between db-stored comments & number lists resolved
19  * 4. ensure endtime is correct for certain query falures
20  * 5. dbstl.h->handles ObjectSpace & RogueWave difference (Online vs Offline)
21  *
22  *
23  **************************************************************************/
24 #ifndef DBCOLLECTION_HH
25 #define DBCOLLECTION_HH
26 
27 
28 struct dbCollection {
29 
30  char name[64]; // name of the collection
31 
32 };
33 
34 #endif
35