PandaRoot
PndSdsTimeWalkCorr.h
Go to the documentation of this file.
1 /*
2  * PndSdsTimeWalkCorr.h
3  *
4  * Description:
5  *
6  * Created on: Aug 26, 2010
7  * Author: Simone Esch
8  * Abstract Base Class to calculate the TimeWalkCorrection from the TOT time
9  */
10 
11 #include "TObject.h"
12 
13 #ifndef PNDSDSTIMEWALKCORR_H_
14 #define PNDSDSTIMEWALKCORR_H_
15 
16 class PndSdsTimeWalkCorr : public TObject {
17  public:
19 
20  virtual ~PndSdsTimeWalkCorr();
21  virtual Double_t CorrectionTimeWalk(Double_t tot) = 0;
22  virtual Double_t GetCharge() = 0;
23 
24  private:
25  ClassDef(PndSdsTimeWalkCorr, 1);
26 };
27 
28 #endif /* PNDSDSTIMEWALKCORR_H_ */
virtual ~PndSdsTimeWalkCorr()
virtual Double_t CorrectionTimeWalk(Double_t tot)=0
virtual Double_t GetCharge()=0