Changeset 4687 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
08/19/04 11:28:02 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
1 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4685 r4687  
    2020                                                 -*-*- END OF LINE -*-*-
    2121
     22 2004/08/19: Thomas Bretz
     23
     24   * mastro/MTransCelLocCam.[h,cc]:
     25     - renamed to MStarCamTrans and moved to mstarcam
     26
     27   * mastro/Makefile, mastro/AstroLinkDef.h:
     28     - removed MTransCelLocCam
     29
     30   * mstarcam/Makefile, mstarcam/AstroLinkDef.h:
     31   - cleaned up includes in Makefile
     32   - added MStarCamTrans
     33
     34
     35
    2236 2004/08/19: Robert Wagner
     37
    2338   * mtemp/MFindStars.[cc,h], mastro/MAstroCamera.cc,
    2439     mtemp/MSourceDirections.[cc,h]
    25      - Changes to reflect the change of name of
    26        MStarPos, MStarCam
     40     - Changes to reflect the change of name of MStarPos, MStarCam
    2741
    2842
  • trunk/MagicSoft/Mars/mastro/AstroLinkDef.h

    r4675 r4687  
    1313
    1414#pragma link C++ class MObservatory+;
    15 #pragma link C++ class MTransCelLocCam+;
    1615
    1716#endif
  • trunk/MagicSoft/Mars/mastro/Makefile

    r4675 r4687  
    2626           MAstroCatalog.cc \
    2727           MAstroCamera.cc \
    28            MObservatory.cc \
    29            MTransCelLocCam.cc
     28           MObservatory.cc
    3029
    3130############################################################
  • trunk/MagicSoft/Mars/mstarcam/MStarCamTrans.cc

    r4686 r4687  
    179179// Output :  ( theta,  phi)    direction for the position (X,Y) in the camera
    180180//
    181 
    182 Bool_t MStarCamTrans::Loc0CamToLoc(Double_t theta0deg, Double_t phi0deg,
     181Bool_t MStarCamTrans::Loc0CamToLoc(Double_t theta0deg, Double_t phi0deg,
    183182                                     Double_t X,         Double_t Y,
    184183                                     Double_t &thetadeg, Double_t &phideg)
     
    235234// Output :  (X, Y)      position in the camera corresponding to (theta, phi)
    236235//
    237 
    238236Bool_t MStarCamTrans::Loc0LocToCam(Double_t theta0deg, Double_t phi0deg,
    239237                                     Double_t thetadeg,  Double_t phideg,
     
    272270// Output :  ( theta0,  phi0)    direction for the position (0,0) in the camera
    273271//
    274 
    275 Bool_t MStarCamTrans::LocCamToLoc0(Double_t thetadeg,   Double_t phideg,
     272Bool_t MStarCamTrans::LocCamToLoc0(Double_t thetadeg,   Double_t phideg,
    276273                                     Double_t X,          Double_t Y,
    277274                                     Double_t &theta0deg, Double_t &phi0deg)
     
    419416// Output :  (dec,   h)    direction for the position (X,Y) in the camera
    420417//
    421 
    422 Bool_t MStarCamTrans::Cel0CamToCel(Double_t dec0deg, Double_t h0hour,
     418Bool_t MStarCamTrans::Cel0CamToCel(Double_t dec0deg, Double_t h0hour,
    423419                                     Double_t X,       Double_t Y,
    424420                                     Double_t &decdeg, Double_t &hhour)
     
    461457// Output :  (X, Y)      position in the camera corresponding to (dec, h)
    462458//
    463 
    464459Bool_t MStarCamTrans::Cel0CelToCam(Double_t dec0deg, Double_t h0hour,
    465460                                     Double_t decdeg,  Double_t hhour,
     
    545540// Output :  (theta2, phi2)  direction for the position (X2,Y2) in the camera
    546541//
    547 
    548 Bool_t MStarCamTrans::LocCamCamToLoc(Double_t theta1deg, Double_t phi1deg,
     542Bool_t MStarCamTrans::LocCamCamToLoc(Double_t theta1deg, Double_t phi1deg,
    549543                                      Double_t X1,         Double_t Y1,
    550544                                      Double_t X2,         Double_t Y2,
     
    582576// Output :  (    X2,   Y2)  position corresponding to (theta2, phi2)
    583577//
    584 
    585 Bool_t MStarCamTrans::LocCamLocToCam(Double_t theta1deg, Double_t phi1deg,
     578Bool_t MStarCamTrans::LocCamLocToCam(Double_t theta1deg, Double_t phi1deg,
    586579                                       Double_t X1,        Double_t Y1,
    587580                                       Double_t theta2deg, Double_t phi2deg,
     
    616609// Output :  (dec2, h2)  direction for the position (X2,Y2) in the camera
    617610//
    618 
    619 Bool_t MStarCamTrans::CelCamCamToCel(Double_t dec1deg, Double_t h1deg,
     611Bool_t MStarCamTrans::CelCamCamToCel(Double_t dec1deg, Double_t h1deg,
    620612                                      Double_t X1,       Double_t Y1,
    621613                                      Double_t X2,       Double_t Y2,
     
    653645// Output :  (  X2, Y2)  position corresponding to (dec2, h2)
    654646//
    655 
    656 Bool_t MStarCamTrans::CelCamCelToCam(Double_t dec1deg, Double_t h1deg,
     647Bool_t MStarCamTrans::CelCamCelToCam(Double_t dec1deg, Double_t h1deg,
    657648                                       Double_t X1,      Double_t Y1,
    658649                                       Double_t dec2deg, Double_t h2deg,
     
    685676// Output :  (theta, phi)    corresponding local coordinates
    686677//
    687 
    688 Bool_t MStarCamTrans::CelToLoc(Double_t decdeg,    Double_t hhour,
     678// (see also MAstroCatalog and MAstroSky2Local)
     679//
     680Bool_t MStarCamTrans::CelToLoc(Double_t decdeg,    Double_t hhour,
    689681                                 Double_t &thetadeg, Double_t &phideg)
    690682{
     
    719711// Output :  (dec,     h)    corresponding celestial coordinates
    720712//
    721 
    722 Bool_t MStarCamTrans::LocToCel(Double_t thetadeg, Double_t phideg,
     713// (see also MAstroCatalog and MAstroSky2Local)
     714//
     715Bool_t MStarCamTrans::LocToCel(Double_t thetadeg, Double_t phideg,
    723716                                 Double_t &decdeg,  Double_t &hhour)
    724717{
     
    760753//          and the lines of constant (Dec,   H  )
    761754//
    762 
     755// (see also MAstroCatalog::Draw and MAstroCamera::Draw)
     756//
     757// Warning: Leaks Memory!
     758//
    763759Bool_t MStarCamTrans::PlotGridAtDec0H0(TString name,
    764760                                         Double_t dec0deg, Double_t h0hour)
     
    781777//          and the lines of constant (Dec,   H  )
    782778//
    783 
     779// (see also MAstroCatalog::Draw and MAstroCamera::Draw)
     780//
     781// Warning: Leaks Memory!
     782//
    784783Bool_t MStarCamTrans::PlotGridAtTheta0Phi0(TString name,
    785784                                    Double_t theta0deg, Double_t phi0deg)
     
    801800//     set the binning along the lines (fGridFineBin)
    802801//
    803 
    804802Bool_t MStarCamTrans::SetGridParameters(
    805803             Double_t gridbinning, Double_t gridfinebin)
     
    820818//                              with the camera center at (Dec0,   H0  )
    821819//
    822 
     820// (see also MAstroCatalog::Draw and MAstroCamera::Draw)
     821//
     822// Warning: Leaks Memory!
     823//
    823824Bool_t MStarCamTrans::PlotGrid(TString name,
    824825                                 Double_t theta0deg, Double_t phi0deg,
     
    12231224    return kTRUE;
    12241225}
    1225 
    1226 //===========================================================================
    1227 
    1228 
    1229 
    1230 
    1231 
    1232 
    1233 
    1234 
    1235 
    1236 
Note: See TracChangeset for help on using the changeset viewer.