Ignore:
Timestamp:
08/05/02 14:30:21 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
3 edited

Legend:

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

    r1477 r1481  
    364364    else
    365365        out << "\"" << fHName << "\"";
    366     out << ", ";
    367366
    368367    if (fParContainer)
    369         out << "&" << ToLower(fParContainer->GetName());
     368        out << ", &" << ToLower(fParContainer->GetName());
    370369    else
    371         out << "\"" << fParContainerName << "\"";
     370        if (!fParContainerName.IsNull())
     371            out << ", \"" << fParContainerName << "\"";
    372372
    373373    out << ");" << endl;
  • trunk/MagicSoft/Mars/mhist/MH3.cc

    r1477 r1481  
    384384// gui elements to a macro-file.
    385385//
    386 void MH3::StreamPrimitive(ofstream &out)
     386void MH3::StreamPrimitive(ofstream &out) const
    387387{
    388388    TString name = ToLower(fName);
  • trunk/MagicSoft/Mars/mhist/MH3.h

    r1477 r1481  
    2424    Double_t    fScale[3];
    2525
    26     void StreamPrimitive(ofstream &out);
     26    void StreamPrimitive(ofstream &out) const;
    2727
    2828public:
Note: See TracChangeset for help on using the changeset viewer.