Ignore:
Timestamp:
01/05/05 19:40:26 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhbase/MFillH.cc

    r4997 r5713  
    166166        return;
    167167
    168     fTitle = "Fill " + fHName;
     168    fTitle = Form("Fill %s", fHName.Data());
    169169    if (fParContainerName.IsNull())
    170170        return;
    171171
    172     fTitle += " from " + fParContainerName;
     172    fTitle += Form(" from %s", fParContainerName.Data());
    173173}
    174174
     
    209209
    210210    if (!title)
    211         fTitle = "Fill " + fHName + " from " + par->GetDescriptor();
     211        fTitle = Form("Fill %s from %s", fName.Data(), par->GetDescriptor().Data());
    212212}
    213213
     
    236236        return;
    237237
    238     fTitle = (TString)"Fill " + hist->GetDescriptor();
     238    fTitle = Form("Fill %s", hist->GetDescriptor().Data());
    239239    if (!par)
    240240        return;
    241241
    242     fTitle += " from " + fParContainerName;
     242    fTitle += Form(" from %s", fParContainerName.Data());
    243243}
    244244
     
    265265
    266266    if (!title)
    267         fTitle = (TString)"Fill " + hist->GetDescriptor() + " from " + par->GetDescriptor();
     267        fTitle = Form("Fill %s from %s", hist->GetDescriptor().Data(), par->GetDescriptor().Data());
    268268}
    269269
Note: See TracChangeset for help on using the changeset viewer.