Changeset 2515
- Timestamp:
- 11/14/03 17:43:04 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2513 r2515 3 3 4 4 -*-*- 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 5 14 2003/11/13: Thomas Bretz 6 15 -
trunk/MagicSoft/Mars/mfilter/MF.cc
r2406 r2515 158 158 int l = txt.Length(); 159 159 for (int i = 0; i<l; i++) 160 if (!isalnum(txt[i]) && txt[i]!='.' )160 if (!isalnum(txt[i]) && txt[i]!='.' && txt[i]!=';') 161 161 return i; 162 162
Note:
See TracChangeset
for help on using the changeset viewer.