Changeset 19306


Ignore:
Timestamp:
10/25/18 19:43:12 (6 years ago)
Author:
tbretz
Message:
Replaced \circ by #circ because the old one looks weird.
Location:
trunk/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mastro/MAstroCatalog.cc

    r12763 r19306  
    756756    TAxis &y = *h.GetYaxis();
    757757
    758     y.SetTitle("Altitude [\\circ]");
     758    y.SetTitle("Altitude [#circ]");
    759759    y.CenterTitle();
    760760
     
    12101210    TString txt;
    12111211    txt += MString::Format("\\alpha=%.2fh ",      fmod(ra/15+48, 24));
    1212     txt += MString::Format("\\delta=%.1f\\circ ", fmod(dec+270,180)-90);
    1213     txt += MString::Format("/ FOV=%.1f\\circ",    fRadiusFOV);
     1212    txt += MString::Format("\\delta=%.1f#circ ", fmod(dec+270,180)-90);
     1213    txt += MString::Format("/ FOV=%.1f#circ",    fRadiusFOV);
    12141214
    12151215    if (!fTime || !fObservatory)
     
    12251225
    12261226    txt.Prepend("#splitline{");
    1227     txt += MString::Format("  \\theta=%.1f\\circ ", fmod(zd+270,180)-90);
    1228     txt += MString::Format("\\phi=%.1f\\circ ",     fmod(az+720, 360));
    1229     txt += MString::Format(" / \\rho=%.1f\\circ",   rho*TMath::RadToDeg());
     1227    txt += MString::Format("  \\theta=%.1f#circ ", fmod(zd+270,180)-90);
     1228    txt += MString::Format("\\phi=%.1f#circ ",     fmod(az+720, 360));
     1229    txt += MString::Format(" / \\rho=%.1f#circ",   rho*TMath::RadToDeg());
    12301230    txt += "}{<";
    12311231    txt += fTime->GetSqlDateTime();
  • trunk/Mars/mhflux/MAlphaFitter.cc

    r19002 r19306  
    497497    const Int_t    l1 = w<=0 ? 0 : (Int_t)TMath::Ceil(-TMath::Log10(w));
    498498    const Int_t    l2 = m<=0 ? 0 : (Int_t)TMath::Ceil(-TMath::Log10(m));
    499     const TString fmt = MString::Format("\\sigma_{L/M}=%%.1f  \\omega=%%.%df\\circ  E=%%d B=%%d  x<%%.%df  \\tilde\\chi_{b}=%%.1f  \\tilde\\chi_{s}=%%.1f  c=%%.1f  f=%%.2f",
     499    const TString fmt = MString::Format("\\sigma_{L/M}=%%.1f  \\omega=%%.%df#circ  E=%%d B=%%d  x<%%.%df  \\tilde\\chi_{b}=%%.1f  \\tilde\\chi_{s}=%%.1f  c=%%.1f  f=%%.2f",
    500500                                        l1<1?1:l1+1, l2<1?1:l2+1);
    501501    const TString txt = MString::Format(fmt.Data(), fSignificance, w, (int)fEventsExcess,
Note: See TracChangeset for help on using the changeset viewer.