PandaRoot
PndSdsTimeWalkCorr.h
Go to the documentation of this file.
1 //****************************************************************************
2 //* This file is part of PandaRoot. *
3 //* *
4 //* PandaRoot is distributed under the terms of the *
5 //* GNU General Public License (GPL) version 3, *
6 //* copied verbatim in the file "LICENSE". *
7 //* *
8 //* Copyright (C) 2006 - 2024 FAIR GmbH and copyright holders of PandaRoot *
9 //* The copyright holders are listed in the file "COPYRIGHTHOLDERS". *
10 //* The authors are listed in the file "AUTHORS". *
11 //****************************************************************************
12 
13 /*
14  * PndSdsTimeWalkCorr.h
15  *
16  * Description:
17  *
18  * Created on: Aug 26, 2010
19  * Author: Simone Esch
20  * Abstract Base Class to calculate the TimeWalkCorrection from the TOT time
21  */
22 
23 #include "TObject.h"
24 
25 #ifndef PNDSDSTIMEWALKCORR_H_
26 #define PNDSDSTIMEWALKCORR_H_
27 
28 class PndSdsTimeWalkCorr : public TObject {
29  public:
31 
32  virtual ~PndSdsTimeWalkCorr();
33  virtual Double_t CorrectionTimeWalk(Double_t tot) = 0;
34  virtual Double_t GetCharge() = 0;
35 
36  private:
37  ClassDef(PndSdsTimeWalkCorr, 1);
38 };
39 
40 #endif /* PNDSDSTIMEWALKCORR_H_ */
virtual ~PndSdsTimeWalkCorr()
virtual Double_t CorrectionTimeWalk(Double_t tot)=0
virtual Double_t GetCharge()=0