StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtHybridObject.cc
1 /***************************************************************************
2  *
3  * $Id: StSvtHybridObject.cc,v 1.5 2008/06/12 14:22:12 fisyak Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Hybrid Object BASE class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtHybridObject.cc,v $
13  * Revision 1.5 2008/06/12 14:22:12 fisyak
14  * Add default no. of anodes and timeBins
15  *
16  * Revision 1.4 2007/12/26 02:30:52 fine
17  * Dummy impl of the missed StSvtHybridObject::SetName method
18  *
19  * Revision 1.3 2007/03/21 17:22:20 fisyak
20  * Ivan Kotov's drift velocities, use TGeoHMatrix for coordinate transformation
21  *
22  * Revision 1.2 2001/07/12 16:56:30 munhoz
23  * layer numbers changed for barrel 2 due to new geometry
24  *
25  * Revision 1.1.1.1 2000/03/10 14:26:21 munhoz
26  * SVT Class Library
27  *
28  **************************************************************************/
30 // //
31 // This class represents the basic unit of the SVT, i.e, a hybrid. //
32 // It should be the base class for any "hybrid object". //
33 // "Anything" (data, pedestal, drift velocity, clusters, hit points, etc.)//
34 // that is particular to one hybrid, should inherit from this class. //
35 // //
37 
38 
39 #include <assert.h>
40 #include "StSvtHybridObject.hh"
41 
42 ClassImp(StSvtHybridObject)
43 //______________________________________________
44 void StSvtHybridObject::SetName()
45 {
46  // dummy method
47  assert(0);
48 }