Changeset 1146


Ignore:
Timestamp:
01/09/02 15:56:59 (23 years ago)
Author:
blanch
Message:
There has been added the functions GetStarField[De,Ra].
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/include-Classes/MMcFormat/MMcRunHeader.cxx

    r1061 r1146  
    152152    fCamVersion = fcam;
    153153}
     154
     155// -------------------------------------------------------------------------
     156//
     157// GetStarFieldRa. Get RA coordinates of the starfield
     158//
     159void MMcRunHeader::GetStarFieldRa(Int_t *hour, Int_t *minute, Int_t *second)
     160{
     161    *hour=fStarFieldRaH;
     162    *minute=fStarFieldRaM;
     163    *second=fStarFieldRaS;
     164}
     165// -------------------------------------------------------------------------
     166//
     167// GetStarFieldDe. Get DE coordinates of the starfield
     168//
     169void MMcRunHeader::GetStarFieldDe(Int_t *degree, Int_t *minute, Int_t *second)
     170{
     171    *degree=fStarFieldDeD;
     172    *minute=fStarFieldDeM;
     173    *second=fStarFieldDeS;
     174}
Note: See TracChangeset for help on using the changeset viewer.