Ignore:
Timestamp:
10/24/01 13:57:43 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r959 r984  
    457457//  from 1 to from.
    458458//
    459 TObjArray MParList::FindObjectList(const char *name, const UInt_t from, const UInt_t to) const
     459TObjArray MParList::FindObjectList(const char *name, UInt_t first, const UInt_t last) const
    460460{
    461461    TObjArray list;
    462462
    463     if (to>0 && to<=from)
    464     {
    465         *fLog << dbginf << "Cannot create entries backwards (to<from)...skipped." << endl;
     463    if (first>0 && last<first)
     464    {
     465        *fLog << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
    466466        return list;
    467467    }
     
    472472    strcpy(auxname, name);
    473473
     474    if (first==0 && last!=0)
     475        first = 1;
     476
    474477    //
    475478    // If only 'from' is specified the number of entries are ment
    476479    //
    477     const Bool_t exc = from>0 && to==0;
    478 
    479     const UInt_t first = exc ?    0 : from;
    480     const UInt_t last  = exc ? from : to;
    481 
    482     for (UInt_t num=first; num<last; num++)
    483     {
    484         if (from!=0 || to!=0)
    485             sprintf(auxname+len, ";%d", num+1);
     480    for (UInt_t i=first; i<=last; i++)
     481    {
     482        if (first!=0 || last!=0)
     483            sprintf(auxname+len, ";%d", i);
    486484
    487485        TObject *obj = FindObject(auxname);
     
    505503//  from 1 to from.
    506504//
    507 TObjArray MParList::FindCreateObjList(const char *cname, const UInt_t from, const UInt_t to, const char *oname)
     505TObjArray MParList::FindCreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname)
    508506{
    509507    TObjArray list;
    510508
    511     if (to>0 && to<=from)
    512     {
    513         *fLog << dbginf << "Cannot create entries backwards (to<from)...skipped." << endl;
     509    if (first>0 && last<first)
     510    {
     511        *fLog << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
    514512        return list;
    515513    }
     
    523521    // If only 'from' is specified the number of entries are ment
    524522    //
    525     const Bool_t exc = from>0 && to==0;
    526 
    527     const UInt_t first = exc ?    0 : from;
    528     const UInt_t last  = exc ? from : to;
    529 
    530     for (UInt_t num=first; num<last; num++)
    531     {
    532         if (from!=0 || to!=0)
    533             sprintf(auxname+len, ";%d", num+1);
     523    if (first==0 && last!=0)
     524        first = 1;
     525
     526    for (UInt_t i=first; i<=last; i++)
     527    {
     528        if (first!=0 || last!=0)
     529            sprintf(auxname+len, ";%d", i);
    534530
    535531        TObject *obj = FindCreateObj(auxname, oname);
     
    558554//  compiled programs if you are not 100% sure what you are doing.
    559555//
    560 TObjArray MParList::CreateObjList(const char *cname, const UInt_t from, const UInt_t to, const char *oname)
     556TObjArray MParList::CreateObjList(const char *cname, UInt_t first, const UInt_t last, const char *oname)
    561557{
    562558    TObjArray list;
     559
     560    if (first>0 && last<first)
     561    {
     562        gLog << dbginf << "Cannot create entries backwards (last<first)...skipped." << endl;
     563        return list;
     564    }
    563565
    564566    //
     
    584586    // If only 'from' is specified the number of entries are ment
    585587    //
    586     const Bool_t exc = from>0 && to==0;
    587 
    588     const UInt_t first = exc ?    0 : from;
    589     const UInt_t last  = exc ? from : to;
    590 
    591     for (UInt_t num=first; num<last; num++)
    592     {
    593         if (from!=0 || to!=0)
    594             sprintf(auxname+len, ";%d", num+1);
     588    if (first==0 && last!=0)
     589        first = 1;
     590
     591    for (UInt_t i=first; i<=last; i++)
     592    {
     593        if (first!=0 || last!=0)
     594            sprintf(auxname+len, ";%d", i);
    595595
    596596        //
Note: See TracChangeset for help on using the changeset viewer.