#ifndef ROOT_THaPrimaryKine
#define ROOT_THaPrimaryKine
#include "THaPhysicsModule.h"
#include "TLorentzVector.h"
#include "TString.h"
class THaTrackingModule;
class THaBeamModule;
typedef TLorentzVector FourVect;
class THaPrimaryKine : public THaPhysicsModule {
public:
THaPrimaryKine( const char* name, const char* description,
const char* spectro = "",
Double_t particle_mass = 0.0,
Double_t target_mass = 0.0 );
THaPrimaryKine( const char* name, const char* description,
const char* spectro, const char* beam,
Double_t target_mass = 0.0 );
virtual ~THaPrimaryKine();
virtual void Clear( Option_t* opt="" );
Double_t GetQ2() const { return fQ2; }
Double_t GetOmega() const { return fOmega; }
Double_t GetNu() const { return fOmega; }
Double_t GetW2() const { return fW2; }
Double_t GetXbj() const { return fXbj; }
Double_t GetScatAngle() const { return fScatAngle; }
Double_t GetEpsilon() const { return fEpsilon; }
Double_t GetQ3mag() const { return fQ3mag; }
Double_t GetThetaQ() const { return fThetaQ; }
Double_t GetPhiQ() const { return fPhiQ; }
Double_t GetMass() const { return fM; }
Double_t GetTargetMass() const { return fMA; }
const FourVect* GetP0() const { return &fP0; }
const FourVect* GetP1() const { return &fP1; }
const FourVect* GetA() const { return &fA; }
const FourVect* GetA1() const { return &fA1; }
const FourVect* GetQ() const { return &fQ; }
virtual EStatus Init( const TDatime& run_time );
virtual Int_t Process( const THaEvData& );
void SetMass( Double_t m );
void SetTargetMass( Double_t m );
void SetSpectrometer( const char* name );
void SetBeam( const char* name );
protected:
Double_t fQ2;
Double_t fOmega;
Double_t fW2;
Double_t fXbj;
Double_t fScatAngle;
Double_t fEpsilon;
Double_t fQ3mag;
Double_t fThetaQ;
Double_t fPhiQ;
FourVect fP0;
FourVect fP1;
FourVect fA;
FourVect fA1;
FourVect fQ;
Double_t fQx;
Double_t fQy;
Double_t fQz;
Double_t fM;
Double_t fMA;
virtual Int_t DefineVariables( EMode mode = kDefine );
virtual Int_t ReadRunDatabase( const TDatime& date );
TString fSpectroName;
TString fBeamName;
THaTrackingModule* fSpectro;
THaBeamModule* fBeam;
ClassDef(THaPrimaryKine,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.