Ignore:
Timestamp:
02/01/05 17:34:49 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r6177 r6181  
    195195    SetUseRootData();
    196196
    197     TString dat = GetEnv("DataType", "");
    198     if (dat.BeginsWith("raw", TString::kIgnoreCase))
    199       {
    200         fDataFlag = 0;
    201         SetUseRawData();
    202       }
    203     if (dat.BeginsWith("root", TString::kIgnoreCase))
     197    if (HasEnv("DataType"))
     198    {
     199      TString dat = GetEnv("DataType", "");
     200      if (dat.BeginsWith("raw", TString::kIgnoreCase))
     201        {
     202          fDataFlag = 0;
     203          SetUseRawData();
     204        }
     205      if (dat.BeginsWith("root", TString::kIgnoreCase))
    204206      {
    205207        fDataFlag = 0;
    206208        SetUseRootData();
    207209      }
    208     if (dat.BeginsWith("mc", TString::kIgnoreCase))
    209       {
    210         fDataFlag = 0;
    211         SetUseMC();
    212       }
     210      if (dat.BeginsWith("mc", TString::kIgnoreCase))
     211        {
     212          fDataFlag = 0;
     213          SetUseMC();
     214        }
     215    }
    213216   
    214217    return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.