Skip to content
Snippets Groups Projects
Commit d246566c authored by Tomasz Bold's avatar Tomasz Bold
Browse files

changed place where cache loader resides

parent acb41c04
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,10 @@ StatusCode PixelRawDataProvider::execute() {
if(!ExternalCacheMode) rdoContainer = std::make_unique<PixelRDO_Container>(m_pixel_id->wafer_hash_max());
else{
SG::UpdateHandle<PixelRDO_Cache> updateh(m_rdoCacheKey);
if(!updateh.isValid()) ATH_MSG_FATAL("Failure to retrieve cache " << m_rdoCacheKey.key());
if( ! updateh.isValid() ) {
ATH_MSG_FATAL("Failure to retrieve cache " << m_rdoCacheKey.key());
return StatusCode::FAILURE;
}
rdoContainer = std::make_unique<PixelRDO_Container>(updateh.ptr());
ATH_MSG_DEBUG("Created container " << m_rdoContainerKey.key() << " using external cache " << m_rdoCacheKey.key());
}
......@@ -120,23 +123,26 @@ StatusCode PixelRawDataProvider::execute() {
if (!m_roiSeeded) {
ATH_MSG_DEBUG("No RoI seed, fetching all ROBs");
listOfRobs = m_pixelCabling->getAllRobs(); // need ROB id (not ROD)
}
else {//Enter RoI-seeded mode
SG::ReadHandle<TrigRoiDescriptorCollection> roiCollection(m_roiCollectionKey);
ATH_CHECK(roiCollection.isValid());
TrigRoiDescriptorCollection::const_iterator roi = roiCollection->begin();
TrigRoiDescriptorCollection::const_iterator roiE = roiCollection->end();
TrigRoiDescriptor superRoI;//add all RoIs to a super-RoI
superRoI.setComposite(true);
superRoI.manageConstituents(false);
for (; roi!=roiE; ++roi) {
superRoI.push_back(*roi);
}
m_regionSelector->DetROBIDListUint( PIXEL,
superRoI,
listOfRobs);
ATH_MSG_DEBUG("RoI seed, fetching regions infromation");
SG::ReadHandle<TrigRoiDescriptorCollection> roiCollection(m_roiCollectionKey);
ATH_CHECK(roiCollection.isValid());
TrigRoiDescriptorCollection::const_iterator roi = roiCollection->begin();
TrigRoiDescriptorCollection::const_iterator roiE = roiCollection->end();
TrigRoiDescriptor superRoI;//add all RoIs to a super-RoI
superRoI.setComposite(true);
superRoI.manageConstituents(false);
for (; roi!=roiE; ++roi) {
ATH_MSG_DEBUG("Adding RoI "<< **roi);
superRoI.push_back(*roi);
}
m_regionSelector->DetROBIDListUint( PIXEL,
superRoI,
listOfRobs);
}
std::vector<const ROBFragment*> listOfRobf;
m_robDataProvider->getROBData( listOfRobs, listOfRobf);
......@@ -152,6 +158,7 @@ StatusCode PixelRawDataProvider::execute() {
IPixelRDO_Container *containerInterface = tempcont ? static_cast< IPixelRDO_Container* >(tempcont.get()) :
static_cast< IPixelRDO_Container* >(rdoContainer.ptr());
ATH_MSG_DEBUG( "Container interface ptr: " << containerInterface );
// ask PixelRawDataProviderTool to decode it and to fill the IDC
if (m_rawDataTool->convert(listOfRobf, containerInterface).isFailure())
ATH_MSG_ERROR("BS conversion into RDOs failed");
......
......@@ -227,3 +227,14 @@ import DecisionHandling
for a in AthSequencer("HLTAllSteps").getChildren():
if isinstance(a, DecisionHandling.DecisionHandlingConf.TriggerSummaryAlg):
a.OutputLevel = DEBUG
AthSequencer("AthAlgSeq").InDetCacheCreatorTrig.OutputLevel = DEBUG
def d(alg):
alg.OutputLevel = DEBUG
alg.ProviderTool.OutputLevel = DEBUG
d(AthSequencer("electronInViewAlgs").InDetPixelRawDataProvider)
d(AthSequencer("efcbViewNode_FS").InDetPixelRawDataProvider_MuonFS)
......@@ -481,6 +481,7 @@ if opt.doL1Unpacking:
from TrigUpgradeTest.TestUtils import L1EmulationTest
topSequence += L1EmulationTest()
# ---------------------------------------------------------------
# Monitoring
# ---------------------------------------------------------------
......@@ -519,3 +520,12 @@ if svcMgr.MessageSvc.OutputLevel<INFO:
from AthenaCommon.JobProperties import jobproperties
jobproperties.print_JobProperties('tree&value')
print svcMgr
from AthenaCommon.Configurable import Configurable
Configurable.configurableRun3Behavior=True
from TriggerJobOpts.TriggerConfig import triggerIDCCacheCreatorsCfg
from AthenaConfiguration.AllConfigFlags import ConfigFlags
ConfigFlags.lock()
triggerIDCCacheCreatorsCfg(ConfigFlags).appendToGlobals()
Configurable.configurableRun3Behavior=False
......@@ -2,6 +2,17 @@
# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
#
# this is copy paste from Trigger/TrigValidation/TrigUpgradeTest/python/InDetConfig.py
# once the cunction below is moved to the destination pkg, will eliminate this duplication
class InDetCacheNames:
Pixel_ClusterKey = "PixelTrigClustersCache"
SCT_ClusterKey = "SCT_ClustersCache"
SpacePointCachePix = "PixelSpacePointCache"
SpacePointCacheSCT = "SctSpacePointCache"
SCTRDOCacheKey = "SctRDOCache"
PixRDOCacheKey = "PixRDOCache"
def makeInDetAlgs( whichSignature='' ):
#If signature specified add suffix to the algorithms
signature = "_" + whichSignature if whichSignature else ''
......@@ -12,17 +23,6 @@ def makeInDetAlgs( whichSignature='' ):
from InDetTrigRecExample.InDetTrigFlags import InDetTrigFlags
from InDetRecExample.InDetKeys import InDetKeys
#Create IdentifiableCaches
from InDetPrepRawDataFormation.InDetPrepRawDataFormationConf import InDet__CacheCreator
InDetCacheCreatorTrigViews = InDet__CacheCreator(name = "InDetCacheCreatorTrigViews" + signature,
Pixel_ClusterKey = "PixelTrigClustersCache" + signature,
SCT_ClusterKey = "SCT_ClustersCache" + signature,
SpacePointCachePix = "PixelSpacePointCache" + signature,
SpacePointCacheSCT = "SctSpacePointCache" + signature,
SCTRDOCacheKey = "SctRDOCache" + signature,
PixRDOCacheKey = "PixRDOCache" + signature)
eventAlgs.append(InDetCacheCreatorTrigViews)
from AthenaCommon.AppMgr import ToolSvc
from AthenaCommon.AppMgr import ServiceMgr
......@@ -50,7 +50,7 @@ def makeInDetAlgs( whichSignature='' ):
ProviderTool = InDetPixelRawDataProviderTool,)
InDetPixelRawDataProvider.isRoI_Seeded = True
InDetPixelRawDataProvider.RoIs = "EMViewRoIs"
InDetPixelRawDataProvider.RDOCacheKey = InDetCacheCreatorTrigViews.PixRDOCacheKey
InDetPixelRawDataProvider.RDOCacheKey = InDetCacheNames.PixRDOCacheKey
viewAlgs.append(InDetPixelRawDataProvider)
......@@ -78,7 +78,7 @@ def makeInDetAlgs( whichSignature='' ):
ProviderTool = InDetSCTRawDataProviderTool)
InDetSCTRawDataProvider.isRoI_Seeded = True
InDetSCTRawDataProvider.RoIs = "EMViewRoIs"
InDetSCTRawDataProvider.RDOCacheKey = InDetCacheCreatorTrigViews.SCTRDOCacheKey
InDetSCTRawDataProvider.RDOCacheKey = InDetCacheNames.SCTRDOCacheKey
viewAlgs.append(InDetSCTRawDataProvider)
......@@ -157,7 +157,7 @@ def makeInDetAlgs( whichSignature='' ):
ClustersName = "PixelTrigClusters",)
InDetPixelClusterization.isRoI_Seeded = True
InDetPixelClusterization.RoIs = "EMViewRoIs"
InDetPixelClusterization.ClusterContainerCacheKey = InDetCacheCreatorTrigViews.Pixel_ClusterKey
InDetPixelClusterization.ClusterContainerCacheKey = InDetCacheNames.Pixel_ClusterKey
viewAlgs.append(InDetPixelClusterization)
......@@ -205,7 +205,7 @@ def makeInDetAlgs( whichSignature='' ):
conditionsTool = InDetSCT_ConditionsSummaryToolWithoutFlagged)
InDetSCT_Clusterization.isRoI_Seeded = True
InDetSCT_Clusterization.RoIs = "EMViewRoIs"
InDetSCT_Clusterization.ClusterContainerCacheKey = InDetCacheCreatorTrigViews.SCT_ClusterKey
InDetSCT_Clusterization.ClusterContainerCacheKey = InDetCacheNames.SCT_ClusterKey
viewAlgs.append(InDetSCT_Clusterization)
......@@ -228,8 +228,8 @@ def makeInDetAlgs( whichSignature='' ):
ProcessPixels = DetFlags.haveRIO.pixel_on(),
ProcessSCTs = DetFlags.haveRIO.SCT_on(),
ProcessOverlaps = DetFlags.haveRIO.SCT_on(),
SpacePointCacheSCT = InDetCacheCreatorTrigViews.SpacePointCacheSCT,
SpacePointCachePix = InDetCacheCreatorTrigViews.SpacePointCachePix,)
SpacePointCacheSCT = InDetCacheNames.SpacePointCacheSCT,
SpacePointCachePix = InDetCacheNames.SpacePointCachePix,)
viewAlgs.append(InDetSiTrackerSpacePointFinder)
......
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