Skip to content
Snippets Groups Projects
Commit 21d8b358 authored by Johannes Junggeburth's avatar Johannes Junggeburth :dog2:
Browse files

Rename some of the containers

parent 2adb2afa
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!36175Add muons built from large d0 tracking.
......@@ -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;
}
......
......@@ -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)
......
......@@ -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")
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment