StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSvtPedSub.h
1 /***************************************************************************
2  *
3  * $Id: StSvtPedSub.h,v 1.2 2000/08/21 12:57:31 caines Exp $
4  *
5  * Author: Helen Caines
6  ***************************************************************************
7  *
8  * Description: SVT Pedestal Subtraction Code
9  *
10  ***************************************************************************
11  *
12  * $Log: StSvtPedSub.h,v $
13  * Revision 1.2 2000/08/21 12:57:31 caines
14  * Now opens and reads in ped using CalibMaker
15  *
16  * Revision 1.1 2000/06/15 20:04:54 caines
17  * Initial versions of sequence adjusting codes
18  *
19  *
20  **************************************************************************/
21 
22 #ifndef STSVTPEDSUB_H
23 #define STSVTPEDSUB_H
24 
25 
26 class StSvtHybridPed;
27 class StSvtHybridData;
29 
31 {
32  protected:
33 
34  StSvtHybridPed *mPed;
35  StSvtHybridCollection *mSvtPed;
36 
37  public:
38 
40  ~StSvtPedSub();
41 
42  int SubtractPed( StSvtHybridData* fData, int Index, int PedOffset);
43 
44 
45 };
46 
47 
48 #endif
49 
50