GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Go4EventServerTypes.h
Go to the documentation of this file.
1 // $Id: Go4EventServerTypes.h 478 2009-10-29 12:26:09Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 // master include file to get all go4 event class services
15 
16 #ifndef GO4EVENTSERVERTYPES_H
17 #define GO4EVENTSERVERTYPES_H
18 
19 
20 /*
21 * Enumeration specifying the id values for the standard event sources/ event stores.
22 * To be checked in the event factories.
23 */
24 enum
25 {
26  GO4EV_NULL, // no event store/source
27  GO4EV_FILE, // root file with own tree
28  GO4EV_TREE, // branch of singleton tree
29  GO4EV_MBS_FILE, // mbs listmode file (input only)
30  GO4EV_MBS_STREAM, // mbs stream server (input only)
31  GO4EV_MBS_TRANSPORT, // mbs transport server (input only)
32  GO4EV_MBS_EVENTSERVER, // mbs event server (input only)
33  GO4EV_MBS_REVSERV, // remote event server (input only)
34  GO4EV_BACK, // backstore in memory (pseudo-ringbuffer?)
35  GO4EV_USER, // user defined source class
36  GO4EV_MBS_RANDOM // random generated mbs event
37 };
38 
39 
40 #endif //GO4EVENTSERVERTYPES_H
41