StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtProbValues.hh
1 /***************************************************************************
2  *
3  * $Id: StSvtProbValues.hh,v 1.4 2001/05/01 00:23:58 caines Exp $
4  *
5  * Author:
6  ***************************************************************************
7  *
8  * Description:
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtProbValues.hh,v $
13  * Revision 1.4 2001/05/01 00:23:58 caines
14  * Update h files for use with zsp data
15  *
16  * Revision 1.3 2000/11/30 20:45:56 caines
17  * Dynamically calc prob values, use database
18  *
19  * Revision 1.1 2000/06/15 20:04:54 caines
20  * Initial versions of sequence adjusting codes
21  *
22  **************************************************************************/
23 
24 
25 #ifndef STSVTPROBVALUES_HH
26 #define STSVTPROBVALUES_HH
27 
28 #define MAX_ADC_COUNTS 14
29 
31 {
32 public:
34  ~StSvtProbValues();
35 
36  void SetProbValue(float sigma=0);
37  double GetProbValue(int adc);
38  double GetSigma();
39 private:
40  double mSigma;
41  double mProb[MAX_ADC_COUNTS];
42 
43 
44 };
45 
46 inline double StSvtProbValues::GetProbValue(int adc){ return mProb[adc]; }
47 inline double StSvtProbValues::GetSigma( ){ return mSigma; }
48 #endif
49