StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtHybridDriftVelocity.cc
1 /***************************************************************************
2  *
3  * $Id: StSvtHybridDriftVelocity.cc,v 1.1 2000/11/30 20:38:30 caines Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Hybrid BASE class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtHybridDriftVelocity.cc,v $
13  * Revision 1.1 2000/11/30 20:38:30 caines
14  * Drift Velocity files
15  *
16  **************************************************************************/
18 // //
19 // This class represents the SVT drift velocity object. //
20 // //
22 
23 
24 #include "StSvtHybridDriftVelocity.hh"
25 
27 
29 {
30  //Default constructor.
31  numberOfAnodes = 240;
32 }
33 
34 StSvtHybridDriftVelocity::StSvtHybridDriftVelocity(int barrel, int ladder, int wafer, int hybrid):StSvtHybridObject(barrel, ladder, wafer, hybrid)
35 {
36  numberOfAnodes = 240;
37 }
38 
39 StSvtHybridDriftVelocity::~StSvtHybridDriftVelocity()
40 {}
41 
42 StSvtHybridDriftVelocity::StSvtHybridDriftVelocity(const StSvtHybridDriftVelocity& hybrid)
43 {}
44 
45 StSvtHybridDriftVelocity& StSvtHybridDriftVelocity::operator = (const StSvtHybridDriftVelocity& hybrid)
46 {
47  return *this;
48 }
49 
50 float StSvtHybridDriftVelocity::operator [] (int anode)
51 {
52  return 0;
53 }
54