#ifndef ROOT_THaVDCTimeToDistConv
#define ROOT_THaVDCTimeToDistConv

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
// THaVDCTimeToDistConv                                                      //
//                                                                           //
// Base class for algorithms for converting TDC time into perpendicular      //
// drift distance                                                            //
///////////////////////////////////////////////////////////////////////////////

#include "TObject.h"

class THaVDCTimeToDistConv : public TObject {

public:
  THaVDCTimeToDistConv() {}
  virtual ~THaVDCTimeToDistConv();

  virtual Double_t ConvertTimeToDist(Double_t time, Double_t tanTheta,
				     Double_t *ddist=0) = 0;
private:

  THaVDCTimeToDistConv( const THaVDCTimeToDistConv& );
  THaVDCTimeToDistConv& operator=( const THaVDCTimeToDistConv& );

  ClassDef(THaVDCTimeToDistConv,0)             // VDCTimeToDistConv class
};

////////////////////////////////////////////////////////////////////////////////

#endif

Last change: Sat Nov 7 21:26:55 2009
Last generated: 2009-11-07 21:26

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.