diff --git a/Reconstruction/MuonIdentification/MuonCombinedEvent/MuonCombinedEvent/CandidateSummary.h b/Reconstruction/MuonIdentification/MuonCombinedEvent/MuonCombinedEvent/CandidateSummary.h
index e106aa0590c3d683067da73acd7d9a5255a09a80..c4b4a13d9f0de35a398f286b2aff8df35a876a0e 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedEvent/MuonCombinedEvent/CandidateSummary.h
+++ b/Reconstruction/MuonIdentification/MuonCombinedEvent/MuonCombinedEvent/CandidateSummary.h
@@ -85,6 +85,7 @@ public:
     double lhr;
     int saveAnn;
     int saveStau;
+    bool isSiliconAssociated;
     StauRpcHitsLists* rpcHitsLists;
 
     CandidateSummary()
@@ -134,6 +135,7 @@ public:
           lhr(-999.),
           saveAnn(-1),
           saveStau(-1),
+          isSiliconAssociated(false),
           rpcHitsLists(NULL)
     {
     }
diff --git a/Reconstruction/MuonIdentification/MuonCombinedEvent/src/MuonOverlapDescriptor.cxx b/Reconstruction/MuonIdentification/MuonCombinedEvent/src/MuonOverlapDescriptor.cxx
index b2ae28a7fb5e3b289f6c445984f9b8bf11366e10..167f04dcf9fde5b2042c6b7a6c07974d91235c1d 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedEvent/src/MuonOverlapDescriptor.cxx
+++ b/Reconstruction/MuonIdentification/MuonCombinedEvent/src/MuonOverlapDescriptor.cxx
@@ -75,15 +75,15 @@ MsgStream& Rec::operator << ( MsgStream& sl, const MuonOverlapDescriptor& itself
 // if namespace, need to use MsgStream& Rec::operator :-(
 { 
   if (itself.hasOverlap()) {
-    sl <<"Muon overlap desriptor: "<< endreq;
+    sl <<"Muon overlap desriptor: "<< endmsg;
     sl <<"ID pointers: " << (itself.sharesIndetTrack()? "identical":"different")
        <<",  MS pointers: " << (itself.sharesSpectroTrack()? "identical" : "different")
-       <<endreq;
+       <<endmsg;
     sl <<"MS hits: " << itself.nSharedPrecisionHits() << " shared prec. hits of "
-       << itself.nTotalPrecisionHits()<<" total." << endreq;
+       << itself.nTotalPrecisionHits()<<" total." << endmsg;
     sl <<"         " << itself.nSharedSpectroPhiHits() << " shared phi hits of "
-       << itself.nTotalSpectroPhiHits()<<" totoal."<<endreq;
-  } else sl<<"Muon overlap desriptor: no Overlap."<<endreq;
+       << itself.nTotalSpectroPhiHits()<<" totoal."<<endmsg;
+  } else sl<<"Muon overlap desriptor: no Overlap."<<endmsg;
   return sl; 
 }