Changeset 6949 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 04/18/05 10:35:54 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MContinue.cc
r5994 r6949 227 227 } 228 228 229 void MContinue::Print(Option_t *o) const 230 { 231 *fLog << all << GetDescriptor() << ":"; 232 if (GetFilter()) 233 *fLog << " <" << GetFilter()->GetDescriptor() << ">"; 234 *fLog << endl; 235 if (GetFilter()) 236 Getfilter()->Print(); 237 } 238 229 239 // -------------------------------------------------------------------------- 230 240 // -
trunk/MagicSoft/Mars/mbase/MContinue.h
r5994 r6949 42 42 Bool_t IsAllowEmpty() const { return TestBit(kAllowEmpty); } 43 43 44 45 44 void SetInverted(Bool_t i=kTRUE); 46 45 Bool_t IsInverted() const; … … 51 50 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE); 52 51 52 // TObject 53 void Print(Option_t *o="") const; //*MENU* 54 53 55 ClassDef(MContinue, 1) //Task returning kCONTINUE 54 56 }; -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r6500 r6949 321 321 } 322 322 323 Int_t MParContainer::Read(const char *name) 324 { 325 const Int_t rc = TObject::Read(name?name:(const char*)fName); 326 if (name) 327 SetName(name); 328 return rc; 329 } 330 323 331 // -------------------------------------------------------------------------- 324 332 // … … 640 648 641 649 *fLog << "Trying to find MethodCall '" << ClassName(); 642 *fLog << ":: Get" << part1 << "' instead..." << flush;643 call = new TMethodCall(IsA(), (TString)"Get"+part1, "");650 *fLog << "::" << part1 << "' instead..." << flush; 651 call = new TMethodCall(IsA(), part1, ""); 644 652 if (call->GetMethod()) 645 653 { … … 653 661 654 662 *fLog << "Trying to find MethodCall '" << ClassName(); 655 *fLog << ":: " << part1 << "' instead..." << flush;656 call = new TMethodCall(IsA(), part1, "");663 *fLog << "::Get" << part1 << "' instead..." << flush; 664 call = new TMethodCall(IsA(), (TString)"Get"+part1, ""); 657 665 if (call->GetMethod()) 658 666 { -
trunk/MagicSoft/Mars/mbase/MParContainer.h
r6500 r6949 122 122 virtual Bool_t AsciiWrite(ostream &out) const; 123 123 124 Int_t Read(const char *name=NULL) { return TObject::Read(name?name:(const char*)fName); }124 Int_t Read(const char *name=NULL); 125 125 126 126 virtual void GetNames(TObjArray &arr) const;
Note:
See TracChangeset
for help on using the changeset viewer.