Jpp 19.3.0
the software that should make you happy
Loading...
Searching...
No Matches
JASTRONOMY::JMorphologyHistogram Struct Reference

Implementation of histogram source morphology. More...

#include <JMorphology.hh>

Inheritance diagram for JASTRONOMY::JMorphologyHistogram:
JASTRONOMY::JMorphology JASTRONOMY::JSourceLocation JASTRONOMY::angle_type_rad JASTRONOMY::angle_type JLANG::JEquals< JFirst_t, JSecond_t >

Public Member Functions

virtual ~JMorphologyHistogram ()
 Virtual destructor.
 
virtual std::istream & read (std::istream &in) override
 Read source morphology from input stream.
 
virtual std::ostream & write (std::ostream &out) const override
 Write source morphology to output stream.
 
virtual JSourceLocation get () const override
 Get location on sky.
 
const JSourceLocationgetSourceLocation () const
 Get source location.
 
 operator JAngle3D () const
 Type conversion operator.
 
double getDeclination () const
 Get declination.
 
double getRightAscension () const
 Get right ascension.
 
double getDot (const JSourceLocation &location) const
 Dot product.
 
void set (const angle_type_deg &angle)
 Convert angle.
 
bool equals (const angle_type &angle, const double precision=std::numeric_limits< double >::min()) const
 Check equality.
 

Static Public Member Functions

static std::istream & read (std::istream &in, JSourceLocation &source)
 Read source location in degrees from input stream.
 
static std::ostream & write (std::ostream &out, const JSourceLocation &source)
 Write source location in degrees to output stream.
 

Public Attributes

std::string filename
 
std::string histname
 

Protected Member Functions

void load ()
 Load histogram from file.
 

Protected Attributes

TFile * in = NULL
 
TH2D * h2 = NULL
 
double _theta_
 
double _phi_
 

Detailed Description

Implementation of histogram source morphology.

Note that all input angles are in degrees.

Definition at line 392 of file JMorphology.hh.

Constructor & Destructor Documentation

◆ ~JMorphologyHistogram()

virtual JASTRONOMY::JMorphologyHistogram::~JMorphologyHistogram ( )
inlinevirtual

Virtual destructor.

Definition at line 398 of file JMorphology.hh.

399 {
400 if (in != NULL) {
401 in->Close();
402 }
403 }

Member Function Documentation

◆ read() [1/2]

virtual std::istream & JASTRONOMY::JMorphologyHistogram::read ( std::istream & in)
inlineoverridevirtual

Read source morphology from input stream.

Parameters
ininput stream
Returns
input stream

Implements JASTRONOMY::JMorphology.

Definition at line 412 of file JMorphology.hh.

413 {
414 JMorphology::read(in, *this)
415 >> this->filename
416 >> this->histname;
417
418 load();
419
420 return in;
421 }
void load()
Load histogram from file.
static std::istream & read(std::istream &in, JSourceLocation &source)
Read source location in degrees from input stream.

◆ write() [1/2]

virtual std::ostream & JASTRONOMY::JMorphologyHistogram::write ( std::ostream & out) const
inlineoverridevirtual

Write source morphology to output stream.

Parameters
outoutput stream
Returns
output stream

Implements JASTRONOMY::JMorphology.

Definition at line 430 of file JMorphology.hh.

431 {
432 return JMorphology::write(out, *this)
433 << ' ' << this->filename
434 << ' ' << this->histname;
435 }
static std::ostream & write(std::ostream &out, const JSourceLocation &source)
Write source location in degrees to output stream.

◆ get()

virtual JSourceLocation JASTRONOMY::JMorphologyHistogram::get ( ) const
inlineoverridevirtual

Get location on sky.

Returns
location on sky

Implements JASTRONOMY::JMorphology.

Definition at line 443 of file JMorphology.hh.

444 {
445 using namespace JPP;
446
447 Double_t x;
448 Double_t y;
449
450 h2->GetRandom2(x, y, gRandom);
451
452 x = sin(getRadians(x));
453 y = sin(getRadians(y));
454
455 JDirection3D u(x, y, sqrt(1.0 - x*x - y*y));
456
457 const JRotation3D Rs(this->getSourceLocation());
458
459 u.rotate_back(Rs);
460
461 return JSourceLocation(u);
462 }
Data structure for direction in three dimensions.
double getRadians(const double angle)
Convert angle to radians.
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
const JSourceLocation & getSourceLocation() const
Get source location.
JSourceLocation()
Default constructor.

◆ load()

void JASTRONOMY::JMorphologyHistogram::load ( )
inlineprotected

Load histogram from file.

Definition at line 471 of file JMorphology.hh.

472 {
473 in = TFile::Open(filename.c_str(), "exist");
474
475 if (in == NULL || !in->IsOpen()) {
476 THROW(JFileOpenException, "File: " << filename << " not opened.");
477 }
478
479 h2 = dynamic_cast<TH2D*>(in->Get(histname.c_str()));
480
481 if (h2 == NULL) {
482 THROW(JValueOutOfRange, "Histogram: " << histname << " not found.");
483 }
484 }
#define THROW(JException_t, A)
Marco for throwing exception with std::ostream compatible message.

◆ getSourceLocation()

const JSourceLocation & JASTRONOMY::JMorphology::getSourceLocation ( ) const
inlineinherited

Get source location.

Returns
source location

Definition at line 58 of file JMorphology.hh.

59 {
60 return static_cast<const JSourceLocation&>(*this);
61 }

◆ read() [2/2]

static std::istream & JASTRONOMY::JMorphology::read ( std::istream & in,
JSourceLocation & source )
inlinestaticinherited

Read source location in degrees from input stream.

Parameters
ininput stream
sourcesource
Returns
input stream

Definition at line 71 of file JMorphology.hh.

72 {
73 angle_type_deg angle;
74
75 in >> angle;
76
77 source.set(angle);
78
79 return in;
80 }

◆ write() [2/2]

static std::ostream & JASTRONOMY::JMorphology::write ( std::ostream & out,
const JSourceLocation & source )
inlinestaticinherited

Write source location in degrees to output stream.

Parameters
outoutput stream
sourcesource
Returns
output stream

Definition at line 90 of file JMorphology.hh.

91 {
92 return out << angle_type_deg(source);
93 }

◆ operator JAngle3D()

JASTRONOMY::JSourceLocation::operator JAngle3D ( ) const
inlineinherited

Type conversion operator.

Returns
polar angles [rad]

Definition at line 496 of file JAstronomy.hh.

497 {
498 return JAngle3D(PI/2 - _theta_, _phi_);
499 }

◆ getDeclination()

double JASTRONOMY::JSourceLocation::getDeclination ( ) const
inlineinherited

Get declination.

Definition at line 502 of file JAstronomy.hh.

◆ getRightAscension()

double JASTRONOMY::JSourceLocation::getRightAscension ( ) const
inlineinherited

Get right ascension.

Definition at line 503 of file JAstronomy.hh.

◆ getDot()

double JASTRONOMY::JSourceLocation::getDot ( const JSourceLocation & location) const
inlineinherited

Dot product.

Parameters
locationsource location
Returns
dot product

Definition at line 512 of file JAstronomy.hh.

513 {
514 return
515 cos(this->_theta_) * cos(location._theta_) * cos(this->_phi_ - location._phi_) +
516 sin(this->_theta_) * sin(location._theta_);
517 }

◆ set()

void JASTRONOMY::angle_type_rad::set ( const angle_type_deg & angle)
inlineinherited

Convert angle.

Parameters
angleangle [rad]

Definition at line 293 of file JAstronomy.hh.

294 {
295 static_cast<angle_type_rad&>(*this) = angle_type_rad(angle);
296 }
angle_type_rad()
Default constructor.

◆ equals()

bool JASTRONOMY::angle_type::equals ( const angle_type & angle,
const double precision = std::numeric_limits<double>::min() ) const
inlineinherited

Check equality.

Parameters
anglepair of angles
precisionprecision
Returns
true if angles are equal; else false

Definition at line 194 of file JAstronomy.hh.

196 {
197 return (fabs(this->_theta_ - angle._theta_) <= precision &&
198 fabs(this->_phi_ - angle._phi_) <= precision);
199 }

Member Data Documentation

◆ filename

std::string JASTRONOMY::JMorphologyHistogram::filename

Definition at line 464 of file JMorphology.hh.

◆ histname

std::string JASTRONOMY::JMorphologyHistogram::histname

Definition at line 465 of file JMorphology.hh.

◆ in

TFile* JASTRONOMY::JMorphologyHistogram::in = NULL
mutableprotected

Definition at line 486 of file JMorphology.hh.

◆ h2

TH2D* JASTRONOMY::JMorphologyHistogram::h2 = NULL
mutableprotected

Definition at line 487 of file JMorphology.hh.

◆ _theta_

double JASTRONOMY::angle_type::_theta_
protectedinherited

Definition at line 250 of file JAstronomy.hh.

◆ _phi_

double JASTRONOMY::angle_type::_phi_
protectedinherited

Definition at line 251 of file JAstronomy.hh.


The documentation for this struct was generated from the following file: