StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtHybridObject.hh
1 /***************************************************************************
2  *
3  * $Id: StSvtHybridObject.hh,v 1.2 2007/03/21 17:22:20 fisyak Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Hybrid BASE class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtHybridObject.hh,v $
13  * Revision 1.2 2007/03/21 17:22:20 fisyak
14  * Ivan Kotov's drift velocities, use TGeoHMatrix for coordinate transformation
15  *
16  * Revision 1.1.1.1 2000/03/10 14:26:21 munhoz
17  * SVT Class Library
18  *
19  **************************************************************************/
20 
21 #ifndef STSVTHYBRIDOBJECT_HH
22 #define STSVTHYBRIDOBJECT_HH
23 
24 #include "StObject.h"
25 #include "StSvtHybrid.h"
26 
27 class StSvtHybridObject: public StObject, public StSvtHybrid {
28  public:
29  StSvtHybridObject(int barrel = 0, int ladder = 0, int wafer = 0, int hybrid = 0) : StObject(), StSvtHybrid(barrel, ladder, wafer, hybrid) {}
30  void SetName();
31  virtual ~StSvtHybridObject() {}
32  ClassDef(StSvtHybridObject,1)
33 };
34 #endif