Ignore:
Timestamp:
04/18/05 10:35:54 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
4 edited

Legend:

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

    r5994 r6949  
    227227}
    228228
     229void 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
    229239// --------------------------------------------------------------------------
    230240//
  • trunk/MagicSoft/Mars/mbase/MContinue.h

    r5994 r6949  
    4242    Bool_t IsAllowEmpty() const { return TestBit(kAllowEmpty); }
    4343
    44 
    4544    void SetInverted(Bool_t i=kTRUE);
    4645    Bool_t IsInverted() const;
     
    5150    Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print=kFALSE);
    5251
     52    // TObject
     53    void Print(Option_t *o="") const; //*MENU*
     54
    5355    ClassDef(MContinue, 1) //Task returning kCONTINUE
    5456};
  • trunk/MagicSoft/Mars/mbase/MParContainer.cc

    r6500 r6949  
    321321}
    322322
     323Int_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
    323331// --------------------------------------------------------------------------
    324332//
     
    640648
    641649    *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, "");
    644652    if (call->GetMethod())
    645653    {
     
    653661
    654662    *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, "");
    657665    if (call->GetMethod())
    658666    {
  • trunk/MagicSoft/Mars/mbase/MParContainer.h

    r6500 r6949  
    122122    virtual Bool_t AsciiWrite(ostream &out) const;
    123123
    124     Int_t Read(const char *name=NULL) { return TObject::Read(name?name:(const char*)fName); }
     124    Int_t Read(const char *name=NULL);
    125125
    126126    virtual void GetNames(TObjArray &arr) const;
Note: See TracChangeset for help on using the changeset viewer.