#include "THaIdealBeam.h"
#include "TMath.h"
#include "TDatime.h"
#include "VarDef.h"
ClassImp(THaIdealBeam)
THaIdealBeam::THaIdealBeam( const char* name, const char* description )
: THaBeam( name, description )
{
fDirection.SetXYZ(0.0,0.0,1.0);
}
THaAnalysisObject::EStatus THaIdealBeam::Init( const TDatime& run_time )
{
if( THaBeam::Init(run_time) )
return fStatus;
Update();
return kOK;
}
Int_t THaIdealBeam::ReadRunDatabase( const TDatime& date )
{
Int_t err = THaBeam::ReadRunDatabase( date );
if( err ) return err;
FILE* file = OpenRunDBFile( date );
if( !file ) return kFileError;
static const Double_t degrad = TMath::Pi()/180.0;
Double_t x = 0.0, y = 0.0, th = 0.0, ph = 0.0;
const TagDef tags[] = {
{ "x", &x },
{ "y", &y },
{ "theta", &th },
{ "phi", &ph },
{ 0 }
};
LoadDB( file, date, tags, fPrefix );
fPosition.SetXYZ( x, y, 0.0 );
Double_t tt = TMath::Tan(degrad*th);
Double_t tp = TMath::Tan(degrad*ph);
fDirection.SetXYZ( tt, tp, 1.0 );
fDirection *= 1.0/TMath::Sqrt( 1.0+tt*tt+tp*tp );
fclose(file);
return kOK;
}
Last change: Sat Nov 7 21:26:48 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.