#ifndef ROOT_THaVDCUVTrack
#define ROOT_THaVDCUVTrack
#include "THaCluster.h"
#include "TVector3.h"
class THaVDCCluster;
class THaVDCUVPlane;
class THaTrack;
class THaVDCUVTrack : public THaCluster {
public:
THaVDCUVTrack() :
fUClust(NULL), fVClust(NULL), fUVPlane(NULL), fTrack(NULL), fPartner(NULL),
fX(0.0), fY(0.0), fTheta(0.0), fPhi(0.0) {}
virtual ~THaVDCUVTrack() {}
void CalcDetCoords();
THaVDCCluster* GetUCluster() const { return fUClust; }
THaVDCCluster* GetVCluster() const { return fVClust; }
THaVDCUVPlane* GetUVPlane() const { return fUVPlane; }
THaVDCUVTrack* GetPartner() const { return fPartner; }
Double_t GetX() const { return fX; }
Double_t GetY() const { return fY; }
Double_t GetTheta() const { return fTheta; }
Double_t GetPhi() const { return fPhi; }
void CalcChisquare(Double_t &chi2, Int_t &nhits) const;
void SetUCluster( THaVDCCluster* clust) { fUClust = clust;}
void SetVCluster( THaVDCCluster* clust) { fVClust = clust;}
void SetUVPlane( THaVDCUVPlane* plane) { fUVPlane = plane;}
void SetTrack( THaTrack* track) { fTrack = track; }
void SetPartner( THaVDCUVTrack* partner) { fPartner = partner;}
void SetX( Double_t x ) { fX = x;}
void SetY( Double_t y ) { fY = y;}
void SetTheta( Double_t theta ) { fTheta = theta;}
void SetPhi( Double_t phi ) { fPhi = phi;}
void Set( Double_t x, Double_t y, Double_t theta, Double_t phi )
{ fX = x; fY = y; fTheta = theta; fPhi = phi; }
void Set( Double_t x, Double_t y, Double_t theta, Double_t phi,
const TVector3& offset );
protected:
THaVDCCluster* fUClust;
THaVDCCluster* fVClust;
THaVDCUVPlane* fUVPlane;
THaTrack* fTrack;
THaVDCUVTrack* fPartner;
Double_t fX;
Double_t fY;
Double_t fTheta;
Double_t fPhi;
private:
THaVDCUVTrack( const THaVDCUVTrack& );
THaVDCUVTrack& operator=( const THaVDCUVTrack& );
ClassDef(THaVDCUVTrack,0)
};
inline
void THaVDCUVTrack::Set( Double_t x, Double_t y, Double_t theta, Double_t phi,
const TVector3& offset )
{
Set( x, y, theta, phi );
fCenter.SetXYZ( x, y, 0.0 );
fCenter += offset;
}
#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.