00001 /*************************************************************************** 00002 * 00003 * $Id: StSvtPedSub.h,v 1.2 2000/08/21 12:57:31 caines Exp $ 00004 * 00005 * Author: Helen Caines 00006 *************************************************************************** 00007 * 00008 * Description: SVT Pedestal Subtraction Code 00009 * 00010 *************************************************************************** 00011 * 00012 * $Log: StSvtPedSub.h,v $ 00013 * Revision 1.2 2000/08/21 12:57:31 caines 00014 * Now opens and reads in ped using CalibMaker 00015 * 00016 * Revision 1.1 2000/06/15 20:04:54 caines 00017 * Initial versions of sequence adjusting codes 00018 * 00019 * 00020 **************************************************************************/ 00021 00022 #ifndef STSVTPEDSUB_H 00023 #define STSVTPEDSUB_H 00024 00025 00026 class StSvtHybridPed; 00027 class StSvtHybridData; 00028 class StSvtHybridCollection; 00029 00030 class StSvtPedSub 00031 { 00032 protected: 00033 00034 StSvtHybridPed *mPed; 00035 StSvtHybridCollection *mSvtPed; 00036 00037 public: 00038 00039 StSvtPedSub(StSvtHybridCollection *PedPointer); 00040 ~StSvtPedSub(); 00041 00042 int SubtractPed( StSvtHybridData* fData, int Index, int PedOffset); 00043 00044 00045 }; 00046 00047 00048 #endif 00049 00050
1.5.9