Ignore:
Timestamp:
03/14/07 19:12:17 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/gui/MGCoordinate.cc

    r7794 r8376  
    88
    99#include <stdlib.h>    // atoi
    10 #include <iostream.h>  // cout
     10#include <iostream>  // cout
    1111
    1212#include <TSystem.h>
     
    1818
    1919ClassImp(MGCoordinate);
     20
     21using namespace std;
    2022
    2123enum {
     
    2527};
    2628
    27 MGCoordinate::MGCoordinate(const TGWindow* p, const Int_t type=kETypeDeg,
     29MGCoordinate::MGCoordinate(const TGWindow* p, const Int_t type,
    2830                           const Int_t flag, const char *txt,
    2931                           const Int_t deg, const UInt_t min, const UInt_t sec)
     
    9193    TGLabel *label;
    9294
    93     const char *deg = type==kETypeDeg ? "\xb0" : "h";
    94     const char *min = type==kETypeDeg ? "'"    : "m";
    95     const char *sec = type==kETypeDeg ? "\""   : "s";
     95    const char *sdeg = type==kETypeDeg ? "\xb0" : "h";
     96    const char *smin = type==kETypeDeg ? "'"    : "m";
     97    const char *ssec = type==kETypeDeg ? "\""   : "s";
    9698
    9799    if (flag==1)
    98100    {
    99         label = new TGLabel(this, deg);
     101        label = new TGLabel(this, sdeg);
    100102        label->SetTextJustify(kTextLeft);
    101103        label->Move(37, 29-offset);
     
    103105        fList->Add(label);
    104106
    105         label = new TGLabel(this, min);
     107        label = new TGLabel(this, smin);
    106108        label->SetTextJustify(kTextLeft);
    107109        label->Move(71, 29-offset);
     
    109111        fList->Add(label);
    110112
    111         label = new TGLabel(this, sec);
     113        label = new TGLabel(this, ssec);
    112114        label->SetTextJustify(kTextLeft);
    113115        label->Move(107, 29-offset);
     
    116118    }
    117119
    118     label = new TGLabel(this, deg);
     120    label = new TGLabel(this, sdeg);
    119121    label->SetTextJustify(kTextLeft);
    120122    label->Move(39, ypos);
     
    122124    fList->Add(label);
    123125
    124     label = new TGLabel(this, min);
     126    label = new TGLabel(this, smin);
    125127    label->SetTextJustify(kTextLeft);
    126128    label->Move(73, ypos);
     
    128130    fList->Add(label);
    129131 
    130     label = new TGLabel(this, sec);
     132    label = new TGLabel(this, ssec);
    131133    label->SetTextJustify(kTextLeft);
    132134    label->Move(107, ypos);
     
    149151}
    150152
    151 void MGCoordinate::Print()
     153void MGCoordinate::Print(Option_t *o) const
    152154{
    153155    if (fLabel)
Note: See TracChangeset for help on using the changeset viewer.