Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 2514)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 2515)
@@ -3,4 +3,13 @@
 
                                                  -*-*- END OF LINE -*-*-
+ 2003/11/14: Abelardo Moralejo
+
+   * mfilter/MF.cc:
+     - added the possibility of using in the filter parameters from a
+       multi-telescope MC camera file, where master branches for each
+       telescope are tagged with ;i  being i  the number of telescope.
+       The change consists in the addittion in MF::IsAlNum of ';' as 
+       a possible alphanumeric character in the string.
+
  2003/11/13: Thomas Bretz
 
Index: /trunk/MagicSoft/Mars/mfilter/MF.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MF.cc	(revision 2514)
+++ /trunk/MagicSoft/Mars/mfilter/MF.cc	(revision 2515)
@@ -158,5 +158,5 @@
     int l = txt.Length();
     for (int i = 0; i<l; i++)
-        if (!isalnum(txt[i]) && txt[i]!='.')
+        if (!isalnum(txt[i]) && txt[i]!='.' && txt[i]!=';')
             return i;
 
