#ifndef ROOT_THaRaster
#define ROOT_THaRaster
#include "THaBeamDet.h"
#include "TVector.h"
class THaRaster : public THaBeamDet {
public:
THaRaster( const char* name, const char* description = "",
THaApparatus* a = NULL );
virtual ~THaRaster();
virtual Int_t Decode( const THaEvData& );
virtual Int_t Process();
virtual TVector3 GetPosition() const { return fPosition[2]; }
virtual TVector3 GetDirection() const { return fDirection; }
Double_t GetRawPosX() { return fRawPos(0); }
Double_t GetRawPosY() { return fRawPos(1); }
Double_t GetRawSlopeX() { return fRawSlope(0); }
Double_t GetRawSlopeY() { return fRawSlope(1); }
Double_t GetPosBPMAX() { return fPosition[0](0); }
Double_t GetPosBPMAY() { return fPosition[0](1); }
Double_t GetPosBPMAZ() { return fPosition[0](2); }
Double_t GetPosBPMBX() { return fPosition[1](0); }
Double_t GetPosBPMBY() { return fPosition[1](1); }
Double_t GetPosBPMBZ() { return fPosition[1](2); }
Double_t GetPosTarX() { return fPosition[2](0); }
Double_t GetPosTarY() { return fPosition[2](1); }
Double_t GetPosTarZ() { return fPosition[2](2); }
protected:
void ClearEvent();
virtual Int_t ReadDatabase( const TDatime& date );
virtual Int_t DefineVariables( EMode mode = kDefine );
THaRaster& operator=( const THaRaster& ) { return *this; }
TVector fRawPos;
TVector fRawSlope;
TVector3 fPosition[3];
TVector3 fDirection;
TMatrix fRaw2Pos[3];
TVector3 fPosOff[3];
TVector fRasterFreq;
TVector fSlopePedestal;
TVector fRasterPedestal;
Int_t fNfired;
ClassDef(THaRaster,0)
};
#endif
Last change: Sat Nov 7 21:26:49 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.