Index: /trunk/MagicSoft/Mars/Changelog
===================================================================
--- /trunk/MagicSoft/Mars/Changelog	(revision 1845)
+++ /trunk/MagicSoft/Mars/Changelog	(revision 1846)
@@ -1,3 +1,10 @@
                                                  -*-*- END OF LINE -*-*-
+
+ 2003/03/20: Thomas Bretz
+
+    * mfilter/MF.[h,cc]:
+      -	changed fFilter (already used in base class MTask) to fF
+
+
 
  2003/03/19: Abelardo Moralejo
Index: /trunk/MagicSoft/Mars/mfilter/MF.cc
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MF.cc	(revision 1845)
+++ /trunk/MagicSoft/Mars/mfilter/MF.cc	(revision 1846)
@@ -100,5 +100,5 @@
 // Default Constructor. Don't use.
 //
-MF::MF() : fFilter(NULL)
+MF::MF() : fF(NULL)
 {
     fName  = gsDefName.Data();
@@ -117,5 +117,5 @@
 
     *fLog << inf << "Trying to resolve filter rule..." << endl;
-    if (!(fFilter=ParseString(text, 1)))
+    if (!(fF=ParseString(text, 1)))
     {
         *fLog << err << dbginf << "Parsing '" << text << "' failed." << endl;
@@ -124,7 +124,7 @@
 
     *fLog << inf << endl;
-    *fLog << "Using Filter rule " << fFilter->GetName();
+    *fLog << "Using Filter rule " << fF->GetName();
     *fLog << " for " << fName << ":" << endl;
-    fFilter->Print();
+    fF->Print();
     *fLog << endl << endl;
 }
@@ -136,6 +136,6 @@
 MF::~MF()
 {
-    if (fFilter)
-        delete fFilter;
+    if (fF)
+        delete fF;
 }
 
@@ -404,5 +404,5 @@
 Bool_t MF::PreProcess(MParList *plist)
 {
-    if (!fFilter)
+    if (!fF)
     {
         *fLog << err << dbginf << "No filter rule available." << endl;
@@ -410,5 +410,5 @@
     }
 
-    if (!fFilter->CallPreProcess(plist))
+    if (!fF->CallPreProcess(plist))
     {
         *fLog << err << dbginf << "PreProcessing filters in ";
@@ -426,5 +426,5 @@
 Bool_t MF::Process()
 {
-    return fFilter->CallProcess();
+    return fF->CallProcess();
 }
 
@@ -435,5 +435,5 @@
 Bool_t MF::PostProcess()
 {
-    return fFilter->CallPostProcess();
+    return fF->CallPostProcess();
 }
 
@@ -444,5 +444,5 @@
 Bool_t MF::IsExpressionTrue() const
 {
-    return fFilter->IsExpressionTrue();
+    return fF->IsExpressionTrue();
 }
 
@@ -451,5 +451,5 @@
     out << "   MF " << GetUniqueName();
 
-    if (!fFilter)
+    if (!fF)
     {
         out << ";" << endl;
@@ -457,5 +457,5 @@
     }
 
-    out << "(\"" << fFilter->GetRule() << "\"";
+    out << "(\"" << fF->GetRule() << "\"";
         if (fName!=gsDefName || fTitle!=gsDefTitle)
     {
Index: /trunk/MagicSoft/Mars/mfilter/MF.h
===================================================================
--- /trunk/MagicSoft/Mars/mfilter/MF.h	(revision 1845)
+++ /trunk/MagicSoft/Mars/mfilter/MF.h	(revision 1846)
@@ -21,5 +21,5 @@
     static const TString gsDefTitle; //!
 
-    MFilter *fFilter; // Filter
+    MFilter *fF; // Filter
 
     Int_t IsAlNum(TString txt) const;
