StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtHybridPed.hh
1 /***************************************************************************
2  *
3  * $Id: StSvtHybridPed.hh,v 1.2 2000/11/30 20:39:12 caines Exp $
4  *
5  * Author: Marcelo Munhoz
6  ***************************************************************************
7  *
8  * Description: SVT Hybrid Pedestal class
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtHybridPed.hh,v $
13  * Revision 1.2 2000/11/30 20:39:12 caines
14  * Changed to allow us of database
15  *
16  * Revision 1.1 2000/06/15 15:45:54 caines
17  * Add Pedestal Class for SVT
18  *
19  **************************************************************************/
20 
21 #ifndef STSVTHYBRIDPED_HH
22 #define STSVTHYBRIDPED_HH
23 
24 #include "StSvtEnumerations.hh"
25 #include "StSvtHybridPixels.hh"
26 
28 {
29 public:
31  StSvtHybridPed(int barrel, int ladder, int wafer, int hybrid, pedestalType type=kTime);
32 
33  pedestalType getType(){return mType;}
34  void setType(pedestalType type){mType = type;}
35 
36  float getRMS(){return mRMS;}
37  void setRMS(float rms){mRMS = rms;}
38 
39 private:
40  pedestalType mType; // Pedestal Type (kCapacitor or kTime)
41  float mRMS;
42 
43 protected:
44 
45  ClassDef(StSvtHybridPed,1)
46 };
47 
48 #endif