Ignore:
Timestamp:
06/26/03 16:21:57 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtData.cc

    r2230 r2236  
    224224
    225225    TString str(opt);
     226    str.ToLower();
    226227
    227228    UInt_t id = 0;
    228229
    229     if (str.BeginsWith("GRAPH", TString::kIgnoreCase))
     230    if (str.BeginsWith("graph"))
    230231        if (str.Length()>5)
    231232            sscanf(&str[5], "%d", &id);
    232     if (str.BeginsWith("HIST", TString::kIgnoreCase))
     233    if (str.BeginsWith("hist"))
    233234        if (str.Length()>4)
    234235            sscanf(&str[4], "%d", &id);
     
    250251    name += pix.GetPixelId();
    251252
    252     Bool_t same = str.Contains("same", TString::kIgnoreCase);
    253 
    254     if (str.BeginsWith("GRAPH", TString::kIgnoreCase))
     253    Bool_t same = str.Contains("same");
     254
     255    if (str.BeginsWith("graph"))
    255256    {
    256257        *fLog << inf << "Drawing Graph: Pixel Idx #" << pix.GetPixelId();
     
    276277    }
    277278
    278     if (str.BeginsWith("HIST", TString::kIgnoreCase))
     279    if (str.BeginsWith("hist"))
    279280    {
    280281        // FIXME: Add Legend
Note: See TracChangeset for help on using the changeset viewer.