Ignore:
Timestamp:
01/25/09 14:32:11 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mjobs
Files:
3 edited

Legend:

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

    r9181 r9261  
    4949
    5050#include "MMath.h"
     51#include "MString.h"
    5152#include "MDirIter.h"
    5253
     
    891892    const Double_t exp = TMath::Power(10, i);
    892893
    893     TString str = Form("(%s #pm %s)·10^{%d} ",
    894                        FormFloat(p1/exp).Data(), FormFloat(e1/exp).Data(), i);
    895 
    896     str += Form("#left(#frac{E}{%s}#right)^{-%s #pm %s}", unit,
    897                 FormFloat(p0).Data(), FormFloat(e0).Data());
     894    TString str = MString::Format("(%s #pm %s)·10^{%d} ",
     895                                  FormFloat(p1/exp).Data(), FormFloat(e1/exp).Data(), i);
     896
     897    str += MString::Format("#left(#frac{E}{%s}#right)^{-%s #pm %s}", unit,
     898                           FormFloat(p0).Data(), FormFloat(e0).Data());
    898899
    899900    str += " TeV^{-1} m^{-2} s^{-1}";
     
    909910        return FormFlux(f, "500GeV");
    910911    case 1:
    911         return Form("\\chi^{2}/NDF=%.2f/%d", f.GetChisquare(),f.GetNDF());
     912        return MString::Format("\\chi^{2}/NDF=%.2f/%d", f.GetChisquare(),f.GetNDF());
    912913    case 2:
    913         return Form("P=%.0f%%", 100*TMath::Prob(f.GetChisquare(),  f.GetNDF()));
     914        return MString::Format("P=%.0f%%", 100*TMath::Prob(f.GetChisquare(),  f.GetNDF()));
    914915    }
    915916    return "";
     
    14921493        return kFALSE;
    14931494
    1494     CheckEnv();
     1495    if (!CheckEnv())
     1496        return kFALSE;
    14951497
    14961498    // --------------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mjobs/MJStar.cc

    r9230 r9261  
    140140    }
    141141
    142     //if (!CheckEnv())
    143     //    return kFALSE;
    144 
    145     CheckEnv();
    146 
    147142    // --------------------------------------------------------------------------------
    148143
     
    152147    *fLog << fSequence.GetFileName() << endl;
    153148    *fLog << endl;
     149
     150    if (!CheckEnv())
     151        return kFALSE;
    154152 
    155153    // --------------------------------------------------------------------------------
  • trunk/MagicSoft/Mars/mjobs/MJob.cc

    r9257 r9261  
    277277// For exmaple:
    278278//    RandomNumberGenerator: TRandom3
    279 //    RandomNumberSeeValue:  0
     279//    RandomNumberSeedValue:  0
    280280//
    281281Bool_t MJob::InitRandomNumberGenerator() const
     
    301301
    302302    // Nothing: Keep seed value, 0 set time as seed value, val set seed
    303     const TString seed = GetEnv("RandomNumberSeedNumber", "");
     303    const TString seed = GetEnv("RandomNumberSeedValue", "");
    304304    if (!seed.IsNull())
    305305    {
Note: See TracChangeset for help on using the changeset viewer.