StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtHybridDriftCurve.hh
1 /***************************************************************************
2  *
3  * $Id: StSvtHybridDriftCurve.hh,v 1.1 2004/07/26 00:04:43 munhoz Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Drift Velocity curve class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtHybridDriftCurve.hh,v $
13  * Revision 1.1 2004/07/26 00:04:43 munhoz
14  * adding drift curve class
15  *
16  *
17  **************************************************************************/
18 
19 #ifndef STSVTHYBRIDDRIFTCURVE_HH
20 #define STSVTHYBRIDDRIFTCURVE_HH
21 
22 #include "StSvtHybridObject.hh"
23 
25 {
26 public:
28  StSvtHybridDriftCurve(int barrel, int ladder, int wafer, int hybrid);
30 
32  StSvtHybridDriftCurve& operator = (const StSvtHybridDriftCurve&);
33 
34  void setParameter(int adc, int param, double value){driftCurve[adc-1][param-1]=value;}
35  double getParameter(int adc, int param){return driftCurve[adc-1][param-1];}
36 
37 private:
38  double driftCurve[3][10];
39 
40  ClassDef(StSvtHybridDriftCurve,1)
41 };
42 
43 #endif