Skip to content
Snippets Groups Projects
Commit 2948ce02 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'master-IDOnlMon' into 'master'

Fix for SCT/PIX online monitoring histograms in SiTrackerSpacePointFinder

See merge request !48133
parents de6fdc84 93a330c2
No related branches found
No related tags found
5 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!48133Fix for SCT/PIX online monitoring histograms in SiTrackerSpacePointFinder
...@@ -3,8 +3,8 @@ from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool ...@@ -3,8 +3,8 @@ from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
def InDetMonitoringTool(): def InDetMonitoringTool():
newMonTool = GenericMonitoringTool("MonTool") newMonTool = GenericMonitoringTool("MonTool")
newMonTool.defineHistogram('numSctClusters', type='TH1F',path='EXPERT',title="Number of SCT Clusters", xbins=50, xmin=0., xmax=100) newMonTool.defineHistogram('numSctSpacePoints', type='TH1F',path='EXPERT',title="Number of SCT SpacePoints", xbins=50, xmin=0., xmax=5000)
newMonTool.defineHistogram('numPixClusters', type='TH1F',path='EXPERT',title="Number of PIXEL Clusters", xbins=50, xmin=0., xmax=100) newMonTool.defineHistogram('numPixSpacePoints', type='TH1F',path='EXPERT',title="Number of PIXEL SpacePoints", xbins=50, xmin=0., xmax=5000)
return newMonTool return newMonTool
......
...@@ -124,10 +124,10 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const ...@@ -124,10 +124,10 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const
const InDetDD::SiDetectorElementCollection* elements = nullptr; const InDetDD::SiDetectorElementCollection* elements = nullptr;
const SiElementPropertiesTable* properties = nullptr; const SiElementPropertiesTable* properties = nullptr;
auto nReceivedClustersSCT = Monitored::Scalar<int>( "numSctClusters" , 0 ); auto nReceivedSPsSCT = Monitored::Scalar<int>( "numSctSpacePoints" , 0 );
auto nReceivedClustersPIX = Monitored::Scalar<int>( "numPixClusters" , 0 ); auto nReceivedSPsPIX = Monitored::Scalar<int>( "numPixSpacePoints" , 0 );
auto mon = Monitored::Group( m_monTool, nReceivedClustersPIX,nReceivedClustersSCT ); auto mon = Monitored::Group( m_monTool, nReceivedSPsPIX,nReceivedSPsSCT );
if (m_selectSCTs) { if (m_selectSCTs) {
SG::ReadCondHandle<InDetDD::SiDetectorElementCollection> sctDetEle(m_SCTDetEleCollKey, ctx); SG::ReadCondHandle<InDetDD::SiDetectorElementCollection> sctDetEle(m_SCTDetEleCollKey, ctx);
...@@ -211,7 +211,6 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const ...@@ -211,7 +211,6 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const
for (; it != itend; ++it){ for (; it != itend; ++it){
const SCT_ClusterCollection *colNext=&(**it); const SCT_ClusterCollection *colNext=&(**it);
nReceivedClustersSCT = colNext->size();
// Create SpacePointCollection // Create SpacePointCollection
IdentifierHash idHash = colNext->identifyHash(); IdentifierHash idHash = colNext->identifyHash();
...@@ -244,6 +243,7 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const ...@@ -244,6 +243,7 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const
return StatusCode::RECOVERABLE; return StatusCode::RECOVERABLE;
} }
ATH_MSG_VERBOSE( size << " SpacePoints successfully added to Container !" ); ATH_MSG_VERBOSE( size << " SpacePoints successfully added to Container !" );
nReceivedSPsSCT += size;
} }
} }
m_numberOfSCT+= sct_clcontainer->size(); m_numberOfSCT+= sct_clcontainer->size();
...@@ -269,7 +269,6 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const ...@@ -269,7 +269,6 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const
for (; colNext != lastCol; ++colNext) for (; colNext != lastCol; ++colNext)
{ {
ATH_MSG_VERBOSE( "Collection num " << numColl++ ); ATH_MSG_VERBOSE( "Collection num " << numColl++ );
nReceivedClustersPIX = (*colNext)->size();
IdentifierHash idHash = (*colNext)->identifyHash(); IdentifierHash idHash = (*colNext)->identifyHash();
SpacePointContainer::IDC_WriteHandle lock = spacePointContainerPixel->getWriteHandle(idHash); SpacePointContainer::IDC_WriteHandle lock = spacePointContainerPixel->getWriteHandle(idHash);
if(lock.OnlineAndPresentInAnotherView()){ if(lock.OnlineAndPresentInAnotherView()){
...@@ -305,6 +304,7 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const ...@@ -305,6 +304,7 @@ StatusCode SiTrackerSpacePointFinder::execute (const EventContext& ctx) const
} }
ATH_MSG_VERBOSE( size ATH_MSG_VERBOSE( size
<< " SpacePoints successfully added to Container !" ); << " SpacePoints successfully added to Container !" );
nReceivedSPsPIX += size;
} }
} }
m_numberOfPixel+= pixel_clcontainer->size(); m_numberOfPixel+= pixel_clcontainer->size();
......
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