Ignore:
Timestamp:
10/24/01 14:51:21 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MFilterList.cc

    r858 r986  
    232232// one the option string must conatin a "v"
    233233//
    234 void MFilterList::Print(Option_t *opt)
     234void MFilterList::Print(Option_t *opt) const
    235235{
    236236    TString str(opt);
  • trunk/MagicSoft/Mars/mbase/MFilterList.h

    r961 r986  
    4242    Bool_t PostProcess();
    4343
    44     void Print(Option_t *opt = "");
     44    void Print(Option_t *opt = "") const;
    4545
    4646    ClassDef(MFilterList, 0)            // List to combine several filters logically
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r855 r986  
    132132//  Print MParContainer name and title.
    133133//
    134 void MParContainer::Print(Option_t *)
     134void MParContainer::Print(Option_t *) const
    135135{
    136136    *fLog <<"OBJ: " << IsA()->GetName() << "\t" << GetName() << "\t" << GetTitle() << endl;
  • trunk/MagicSoft/Mars/mbase/MParContainer.h

    r858 r986  
    6464    virtual void     SetTitle(const char *title=""); // *MENU*
    6565    virtual void     ls(Option_t *option="");
    66     virtual void     Print(Option_t *option="");
     66    virtual void     Print(Option_t *option="") const;
    6767    virtual Int_t    Sizeof() const;
    6868
  • trunk/MagicSoft/Mars/mbase/MParList.cc

    r984 r986  
    358358    // if object is not existing in the list try to create one
    359359    //
    360     *fLog << dbginf << "Object '" << oname << "' of type '" << cname << "' not found... creating." << endl;
     360    *fLog << dbginf << "Object '" << oname << "' [" << cname << "] not found... creating." << endl;
    361361
    362362    //
     
    406406//   print some information about the current status of MParList
    407407//
    408 void MParList::Print(Option_t *t)
    409 {
    410     *fLog << dbginf << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;
     408void MParList::Print(Option_t *t) const
     409{
     410    *fLog << dbginf << "ParList: " << GetName() << " <" << GetTitle() << ">" << endl;
    411411    *fLog << endl;
    412412}
  • trunk/MagicSoft/Mars/mbase/MParList.h

    r984 r986  
    7474    void SetOwner(Bool_t enable=kTRUE);
    7575
    76     void Print(Option_t *t = NULL);
     76    void Print(Option_t *t = NULL) const;
    7777
    7878    ClassDef(MParList, 0) // list of parameter containers (MParContainer)
  • trunk/MagicSoft/Mars/mbase/MTime.cc

    r858 r986  
    3939ClassImp(MTime);
    4040
    41 void MTime::Print(Option_t *)
     41void MTime::Print(Option_t *) const
    4242{
    4343    fLog->setf(ios::showbase);
  • trunk/MagicSoft/Mars/mbase/MTime.h

    r458 r986  
    5151    ~MTime() {}
    5252
    53     void Print(Option_t *t=NULL);
     53    void Print(Option_t *t=NULL) const;
    5454
    5555    void SetTime(UInt_t t1, UInt_t t0)
Note: See TracChangeset for help on using the changeset viewer.