Changeset 2515 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
11/14/03 17:43:04 (21 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r2513 r2515  
    33
    44                                                 -*-*- END OF LINE -*-*-
     5 2003/11/14: Abelardo Moralejo
     6
     7   * mfilter/MF.cc:
     8     - added the possibility of using in the filter parameters from a
     9       multi-telescope MC camera file, where master branches for each
     10       telescope are tagged with ;i  being i  the number of telescope.
     11       The change consists in the addittion in MF::IsAlNum of ';' as
     12       a possible alphanumeric character in the string.
     13
    514 2003/11/13: Thomas Bretz
    615
  • trunk/MagicSoft/Mars/mfilter/MF.cc

    r2406 r2515  
    158158    int l = txt.Length();
    159159    for (int i = 0; i<l; i++)
    160         if (!isalnum(txt[i]) && txt[i]!='.')
     160        if (!isalnum(txt[i]) && txt[i]!='.' && txt[i]!=';')
    161161            return i;
    162162
Note: See TracChangeset for help on using the changeset viewer.