#ifndef ROOT_THaBeamDet
#define ROOT_THaBeamDet

//////////////////////////////////////////////////////////////////////////
//
// THaBeam
//
//////////////////////////////////////////////////////////////////////////

#include "THaDetector.h"
#include "TVector3.h"

class THaBeamDet : public THaDetector {
  
public:
  virtual ~THaBeamDet();
  
  virtual TVector3 GetPosition()  const = 0;
  virtual TVector3 GetDirection() const = 0;
  virtual Int_t Process() = 0;

 protected:

  // Only derived classes can construct me
  //  THaBeamDet() {}
  THaBeamDet( const char* name, const char* description ="" ,
              THaApparatus* a = NULL ) :
    THaDetector( name, description , a) {}

 public:
  ClassDef(THaBeamDet,0)    // ABC for an detector providing beam information
};

#endif


Last change: Sat Nov 7 21:26:42 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.