StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtDaqData.hh
1 /***************************************************************************
2  *
3  * $Id: StSvtDaqData.hh,v 1.3 2001/07/11 23:29:47 munhoz Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Data BASE class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtDaqData.hh,v $
13  * Revision 1.3 2001/07/11 23:29:47 munhoz
14  * adding capability for zero suppressed and pedestal reading
15  *
16  * Revision 1.1 2000/06/13 20:42:05 caines
17  * StRoot/StSvtDaqMaker
18  *
19  **************************************************************************/
20 
21 #ifndef STSVTDAQDATA_HH
22 #define STSVTDAQDATA_HH
23 
24 #include "StSvtClassLibrary/StSvtData.hh"
25 
26 class StSvtHybridDaqData;
27 class StSVTReader;
28 
29 class StSvtDaqData: public StSvtData
30 {
31 public:
32  StSvtDaqData();
33  StSvtDaqData(const char* config, StSVTReader* reader=0, const char* option = "ZS", int run=0, int event=0, int trigger=0);
34  StSvtDaqData(StSvtConfig* config, StSVTReader* reader=0, const char* option = "ZS", int run=0, int event=0, int trigger=0);
35 
36  int setData(StSVTReader* reader, const char* option = "ZS");
37 
38 protected:
39 
40  ClassDef(StSvtDaqData,1)
41 };
42 
43 #endif