Changeset 19007 for trunk


Ignore:
Timestamp:
04/27/18 20:25:29 (7 years ago)
Author:
tbretz
Message:
Replaced some unicode characters by proper string representations.
Location:
trunk/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mjobs/MJSpectrum.cc

    r9851 r19007  
    913913    const Double_t exp = TMath::Power(10, i);
    914914
    915     TString str = MString::Format("(%s #pm %s)·10^{%d} ",
     915    TString str = MString::Format("(%s #pm %s)\u00b710^{%d} ",
    916916                                  FormFloat(p1/exp).Data(), FormFloat(e1/exp).Data(), i);
    917917
     
    11371137    spectrum.SetMarkerStyle(kFullDotMedium);
    11381138    spectrum.SetTitle("Differential flux times E^{2}");
    1139     spectrum.SetYTitle("E^{2}·dN/dE [N·TeV/sm^{2}]");
     1139    spectrum.SetYTitle("E^{2}\u00b7dN/dE [N\u00b7TeV/sm^{2}]");
    11401140    spectrum.SetDirectory(0);
    11411141    spectrum.DrawCopy();
  • trunk/Mars/mjtrain/MJTrainSeparation.cc

    r9869 r19007  
    837837        *fLog << " * weights for off-data" << endl;
    838838    if (fDataSetTrain.IsWobbleMode())
    839         *fLog << " * random source position in a distance of 0.4°" << endl;
     839        *fLog << " * random source position in a distance of 0.4\u00b0" << endl;
    840840    *fLog << endl;
    841841    *fLog << "Events used for training:"   << endl;
     
    10281028        *fLog << " * weights for off-data" << endl;
    10291029    if (fDataSetTrain.IsWobbleMode())
    1030         *fLog << " * random source position in a distance of 0.4°" << endl;
     1030        *fLog << " * random source position in a distance of 0.4\u00b0" << endl;
    10311031    *fLog << endl;
    10321032    *fLog << "Events used for test:"   << endl;
  • trunk/Mars/mreport/MReportCC.cc

    r14935 r19007  
    251251    *fLog << "   Hum=" << Form("%3.0f", fHumidity);
    252252    *fLog << "%  Temp=" << Form("%+3.0f", fTemperature);
    253     *fLog << "°C  Wind=" << Form("%3.0f", fWindSpeed);
     253    *fLog << "\u00b0C  Wind=" << Form("%3.0f", fWindSpeed);
    254254    *fLog << "km/h  SolarRad=" << Form("%4.0f", fSolarRadiation) << "W/m^2" << endl;
    255255}
Note: See TracChangeset for help on using the changeset viewer.