Index: trunk/MagicSoft/Mars/mbase/MReadTree.cc
===================================================================
--- trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 962)
+++ trunk/MagicSoft/Mars/mbase/MReadTree.cc	(revision 963)
@@ -136,5 +136,5 @@
 //  out.
 //
-Bool_t MReadTree::PreProcess (MParList *pList)
+Bool_t MReadTree::PreProcess(MParList *pList)
 {
     //
@@ -145,5 +145,5 @@
     if (!fNumEntries)
     {
-        *fLog << dbginf << "No Entries found in chain (file/s)." << endl;
+        *fLog << dbginf << "No entries found in chain (file/s)." << endl;
         return kFALSE;
     }
@@ -152,5 +152,5 @@
     // output logging information
     //
-    *fLog << fNumEntries << " Entries found in file(s)." << endl;
+    *fLog << fNumEntries << " entries found in file(s)." << endl;
 
     //
@@ -160,5 +160,6 @@
     TIter Next(fChain->GetListOfBranches());
     TBranch *branch=NULL;
-    
+
+    Int_t num=0;
     //
     // loop over all tasks for processing
@@ -175,5 +176,8 @@
         //
         if (HasVeto(name))
+        {
+            *fLog << "Branch " << name << " has veto... skipped." << endl;
             continue;
+        }
 
         //
@@ -204,5 +208,10 @@
         //
         fChain->SetBranchAddress(name, pcont);
-    }
+        *fLog << "Branch " << name << " enabled for reading." << endl;
+
+        num++;
+    }
+
+    *fLog << "MReadTree will read " << num << " branches." << endl;
 
     return kTRUE;
@@ -238,5 +247,5 @@
 // Get the Event with the current EventNumber fNumEntry
 //
-Bool_t MReadTree::GetEvent() 
+Bool_t MReadTree::GetEvent()
 {
     fChain->GetEntry(fNumEntry);
