Changeset 986 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 10/24/01 14:51:21 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MFilterList.cc
r858 r986 232 232 // one the option string must conatin a "v" 233 233 // 234 void MFilterList::Print(Option_t *opt) 234 void MFilterList::Print(Option_t *opt) const 235 235 { 236 236 TString str(opt); -
trunk/MagicSoft/Mars/mbase/MFilterList.h
r961 r986 42 42 Bool_t PostProcess(); 43 43 44 void Print(Option_t *opt = "") ;44 void Print(Option_t *opt = "") const; 45 45 46 46 ClassDef(MFilterList, 0) // List to combine several filters logically -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r855 r986 132 132 // Print MParContainer name and title. 133 133 // 134 void MParContainer::Print(Option_t *) 134 void MParContainer::Print(Option_t *) const 135 135 { 136 136 *fLog <<"OBJ: " << IsA()->GetName() << "\t" << GetName() << "\t" << GetTitle() << endl; -
trunk/MagicSoft/Mars/mbase/MParContainer.h
r858 r986 64 64 virtual void SetTitle(const char *title=""); // *MENU* 65 65 virtual void ls(Option_t *option=""); 66 virtual void Print(Option_t *option="") ;66 virtual void Print(Option_t *option="") const; 67 67 virtual Int_t Sizeof() const; 68 68 -
trunk/MagicSoft/Mars/mbase/MParList.cc
r984 r986 358 358 // if object is not existing in the list try to create one 359 359 // 360 *fLog << dbginf << "Object '" << oname << "' of type '" << cname << "'not found... creating." << endl;360 *fLog << dbginf << "Object '" << oname << "' [" << cname << "] not found... creating." << endl; 361 361 362 362 // … … 406 406 // print some information about the current status of MParList 407 407 // 408 void MParList::Print(Option_t *t) 409 { 410 *fLog << dbginf << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;408 void MParList::Print(Option_t *t) const 409 { 410 *fLog << dbginf << "ParList: " << GetName() << " <" << GetTitle() << ">" << endl; 411 411 *fLog << endl; 412 412 } -
trunk/MagicSoft/Mars/mbase/MParList.h
r984 r986 74 74 void SetOwner(Bool_t enable=kTRUE); 75 75 76 void Print(Option_t *t = NULL) ;76 void Print(Option_t *t = NULL) const; 77 77 78 78 ClassDef(MParList, 0) // list of parameter containers (MParContainer) -
trunk/MagicSoft/Mars/mbase/MTime.cc
r858 r986 39 39 ClassImp(MTime); 40 40 41 void MTime::Print(Option_t *) 41 void MTime::Print(Option_t *) const 42 42 { 43 43 fLog->setf(ios::showbase); -
trunk/MagicSoft/Mars/mbase/MTime.h
r458 r986 51 51 ~MTime() {} 52 52 53 void Print(Option_t *t=NULL) ;53 void Print(Option_t *t=NULL) const; 54 54 55 55 void SetTime(UInt_t t1, UInt_t t0)
Note:
See TracChangeset
for help on using the changeset viewer.