diff --git a/Reconstruction/MuonIdentification/MuonCombinedAlgs/src/MuonCreatorAlg.cxx b/Reconstruction/MuonIdentification/MuonCombinedAlgs/src/MuonCreatorAlg.cxx
index c8b2873eca0138d4883847d918c1e21d440a2846..e66d0fdc6aafec09ebd3f64f2c5d94f30348f1f5 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedAlgs/src/MuonCreatorAlg.cxx
+++ b/Reconstruction/MuonIdentification/MuonCombinedAlgs/src/MuonCreatorAlg.cxx
@@ -56,6 +56,17 @@ StatusCode MuonCreatorAlg::initialize()
   if ( not m_monTool.name().empty() ) {
     ATH_CHECK( m_monTool.retrieve() );
   }
+  ATH_MSG_DEBUG("MuonCreatorAlg has been setup  successfully");
+  ATH_MSG_DEBUG("    *** SegmentTrackContainer:            "<<m_segTrkContainerName);
+  ATH_MSG_DEBUG("    *** SegmentContainer:                 "<<m_segContainerName);
+  ATH_MSG_DEBUG("    *** CombinedTrackContainer:           "<<m_combinedTrkCollectionName);
+  ATH_MSG_DEBUG("    *** xAOD::CombinedTrackContainer:     "<<m_combinedCollectionName);
+ 
+  ATH_MSG_DEBUG("    *** xAOD::ExtrpolatedTrackContainer:  "<<m_extrapolatedCollectionName);
+  ATH_MSG_DEBUG("    *** ExtrpolatedTrackContainer:        "<<m_extrapolatedTrkCollectionName);  
+  ATH_MSG_DEBUG("    *** xAOD::MSOnlyTrackContainer:       "<<m_msOnlyExtrapolatedCollectionName);
+  ATH_MSG_DEBUG("    *** ExtrpolatedTackContainer:         "<<m_msOnlyExtrapolatedTrkCollectionName);
+  
 
   return StatusCode::SUCCESS;
 }
diff --git a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedKeys.py b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedKeys.py
index 9ee62629c01b3789cc6c4853fa0e4e72fe620a43..75f85ea4e78caacbbb10258a2ec6dfff687ace2c 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedKeys.py
+++ b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedKeys.py
@@ -61,12 +61,6 @@ class CombinedFitTracks(JobProperty):
     allowedTypes = ['str']
     StoredValue  = 'CombinedMuonTracks'
 
-class CombinedFitTracksLargeD0(JobProperty):
-    """StoreGate key for tracks from combined fit using large d0 inner tracking particles"""
-    statusOn     = True
-    allowedTypes = ['str']
-    StoredValue  = 'CombinedMuonTracksLRT'
-
 class RefittedExtrapolatedMSTracks(JobProperty):
     """StoreGate key for tracks with refitted extrapolation using the MS part of the combined track"""
     statusOn     = True
@@ -285,7 +279,6 @@ jobproperties.MuonCombinedContainerKeys.add_JobProperty(ExtrapolatedMSOnlyTracks
 # Large d0 tracking muons
 jobproperties.MuonCombinedContainerKeys.add_JobProperty(FinalMuonsLargeD0)
 jobproperties.MuonCombinedContainerKeys.add_JobProperty(InDetTrackParticlesLargeD0)
-jobproperties.MuonCombinedContainerKeys.add_JobProperty(CombinedFitTracksLargeD0)
 jobproperties.MuonCombinedContainerKeys.add_JobProperty(MuGirlMuonsLargeD0)
 
 
diff --git a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedRecExampleConfigDb.py b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedRecExampleConfigDb.py
index c54557a5c2894478615ed8396f2db86599ce30e6..f6e471ade4e56822e7ec9bbcfd601569380d7058 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedRecExampleConfigDb.py
+++ b/Reconstruction/MuonIdentification/MuonCombinedRecExample/python/MuonCombinedRecExampleConfigDb.py
@@ -87,17 +87,18 @@ addAlgorithm("MuonCombinedRecExample.MuonCombinedAlgs.MuonCreatorAlg","MuonCreat
 addAlgorithm("MuonCombinedRecExample.MuonCombinedAlgs.MuonCreatorAlg","MuonCreatorAlg_LargeD0",
                                                                       MuonContainerLocation=MuonCbKeys.FinalMuonsLargeD0(),
                                                                       InDetCandidateLocation=MuonCbKeys.InDetTrackParticlesLargeD0(),
-                                                                      ExtrapolatedLocation="ExtraPolatedMuon_LargeD0",
-                                                                      ExtrapolatedTrackLocation="ExtraPolatedMuonTrack_LargeD0",
-                                                                      MSOnlyExtrapolatedLocation="MSOnlyExtraPolatedMuons_LargeD0",
-                                                                      MSOnlyExtrapolatedTrackLocation="MSOnlyExtraPolatedMuonTrack_LargeD0",
-                                                                      CombinedLocation=MuonCbKeys.CombinedFitTracksLargeD0(),
+                                                                      ExtrapolatedLocation="ExtraPolated"+MuonCbKeys.FinalMuonsLargeD0(),
+                                                                      #ExtrapolatedTrackLocation="ExtraPolatedMuonLRT",
+                                                                      MSOnlyExtrapolatedLocation="MSOnlyExtraPolated"+MuonCbKeys.FinalMuonsLargeD0(),
+                                                                      #MSOnlyExtrapolatedTrackLocation="MSOnlyExtraPolated"+MuonCbKeys.FinalMuonsLargeD0(),
+                                                                      CombinedLocation="Combined"+MuonCbKeys.FinalMuonsLargeD0(),
                                                                       SegmentContainerName="MuonSegments_LargeD0",
                                                                       TrackSegmentContainerName="TrakMuonSegments_LargeD0",
                                                                       TagMaps=["muidcoTagMap_LargeD0","stacoTagMap_LargeD0","segmentTagMap_LargeD0","MuGirlMap_LargeD0","caloTagMap_LargeD0"],
                                                                       BuildSlowMuon= False,
                                                                       MakeClusters=False ,
-                                                                      MuonCreatorTool="MuonCombined::MuonCreatorTool/MuonCreatorTool_LRT"   )
+                                                                      MuonCreatorTool="MuonCombined::MuonCreatorTool/MuonCreatorTool_LRT",
+                                                                      OutputLevel=DEBUG   )
 
 
 addAlgorithm("MuonCombinedRecExample.MuonCombinedAlgs.StauCreatorAlg","StauCreatorAlg")
diff --git a/Reconstruction/MuonIdentification/MuonCombinedRecExample/share/MuonCombined_OutputItemsAOD.py b/Reconstruction/MuonIdentification/MuonCombinedRecExample/share/MuonCombined_OutputItemsAOD.py
index 69757f5a3c2c8868bd454a25287e15aa9a67b6d7..d2d6813559ffd2af81f4ceb83252f1eecf34fe49 100644
--- a/Reconstruction/MuonIdentification/MuonCombinedRecExample/share/MuonCombined_OutputItemsAOD.py
+++ b/Reconstruction/MuonIdentification/MuonCombinedRecExample/share/MuonCombined_OutputItemsAOD.py
@@ -28,8 +28,9 @@ if DetFlags.detdescr.Muon_on():
    if InDetFlags.doR3LargeD0():
        MuonCombinedAODList+=[ "xAOD::MuonContainer#"+MuonCbKeys.FinalMuonsLargeD0() ]
        MuonCombinedAODList+=[ "xAOD::MuonAuxContainer#"+MuonCbKeys.FinalMuonsLargeD0()+"Aux.-DFCommonMuonsTight.-DFCommonGoodMuon.-DFCommonMuonsMedium.-DFCommonMuonsLoose" ] # See note
-       MuonCombinedAODList+=[ "xAOD::TrackParticleContainer#"+MuonCbKeys.CombinedFitTracksLargeD0()]
-       MuonCombinedAODList+=[ "xAOD::TrackParticleAuxContainer#"+MuonCbKeys.CombinedFitTracksLargeD0()+"Aux." + excludedAuxData]
+      
+       MuonCombinedAODList+=[ "xAOD::TrackParticleContainer#Combined"+MuonCbKeys.FinalMuonsLargeD0()+"TrackParticles"]
+       MuonCombinedAODList+=[ "xAOD::TrackParticleAuxContainer#Combined"+MuonCbKeys.FinalMuonsLargeD0()+"TrackParticlesAux." + excludedAuxData]
 
    # Note: hack to remove derivation framework variables that are added by DRAW building and are supposed to be transient