Remove evtStore()->Contains<T> from PixelMonitoring package.
http://goetz.web.cern.ch/goetz/direct_storegate_access_2019-07-13.html#Monitoring,Mon,DQ_Pixel
nightly/master/2019-07-13T2149:InnerDetector/InDetMonitoring/PixelMonitoring/src/Hits.cxx +453
81d51a0b0f8970440d68fc446d2a892fa565d544 2019-03-11_T1821 Vakho Tsulaia Dropped dependency on the old EventInfo from PixelMonitoring and TRT_Monitoring
4e0a19137dee83cf879b01f3301f5f81292ab4a9 2019-01-31_T0900 Susumu Oda Remove unnecessary include of IInDetConditionsSvc/Tool.h (ATLASRECTS-4048)
451 }
452
453 if (!(evtStore()->contains<InDetTimeCollection>(m_PixelBCIDName.key()))) {
454 ATH_MSG_DEBUG("Pixel BCID collection " <<m_PixelBCIDName.key() << " is not in event store!");
455 return StatusCode::SUCCESS;
nightly/master/2019-07-13T2149:InnerDetector/InDetMonitoring/PixelMonitoring/src/PixelMainMon.cxx +765
24ca729716eb7e78cc8028e163b055d5b46488cc 2019-06-29_T1738 scott snyder PixelMonitoring: Get lumi information from base class, not lumi tool.
c3dc826bc068b4f7c6a78ffb12dd54ebc61f4f59 2019-05-24_T1013 Iskander Ibragimov Merge branch 'bugfix/pp0-histos' into '21.0'
81d51a0b0f8970440d68fc446d2a892fa565d544 2019-03-11_T1821 Vakho Tsulaia Dropped dependency on the old EventInfo from PixelMonitoring and TRT_Monitoring
763 // track
764 if (m_doTrack) {
765 if (evtStore()->contains<TrackCollection>(m_TracksName.key())) {
766 if (fillTrackMon().isFailure()) {
767 if (msgLvl(MSG::INFO)) msg(MSG::INFO) << "Could not fill histograms" << endmsg;
nightly/master/2019-07-13T2149:InnerDetector/InDetMonitoring/PixelMonitoring/src/PixelMainMon.cxx +778
24ca729716eb7e78cc8028e163b055d5b46488cc 2019-06-29_T1738 scott snyder PixelMonitoring: Get lumi information from base class, not lumi tool.
c3dc826bc068b4f7c6a78ffb12dd54ebc61f4f59 2019-05-24_T1013 Iskander Ibragimov Merge branch 'bugfix/pp0-histos' into '21.0'
81d51a0b0f8970440d68fc446d2a892fa565d544 2019-03-11_T1821 Vakho Tsulaia Dropped dependency on the old EventInfo from PixelMonitoring and TRT_Monitoring
776 // hits
777 if (m_doRDO) {
778 if (evtStore()->contains<PixelRDO_Container>(m_Pixel_RDOName.key())) {
779 if (fillHitsMon().isFailure()) {
780 if (msgLvl(MSG::INFO)) {
nightly/master/2019-07-13T2149:InnerDetector/InDetMonitoring/PixelMonitoring/src/PixelMainMon.cxx +803
24ca729716eb7e78cc8028e163b055d5b46488cc 2019-06-29_T1738 scott snyder PixelMonitoring: Get lumi information from base class, not lumi tool.
c3dc826bc068b4f7c6a78ffb12dd54ebc61f4f59 2019-05-24_T1013 Iskander Ibragimov Merge branch 'bugfix/pp0-histos' into '21.0'
81d51a0b0f8970440d68fc446d2a892fa565d544 2019-03-11_T1821 Vakho Tsulaia Dropped dependency on the old EventInfo from PixelMonitoring and TRT_Monitoring
801 // cluster
802 if (m_doCluster) {
803 if (evtStore()->contains<InDet::PixelClusterContainer>(m_Pixel_SiClustersName.key())) {
804 if (fillClustersMon().isFailure()) {
805 if (msgLvl(MSG::INFO)) msg(MSG::INFO) << "Could not fill histograms" << endmsg;
nightly/master/2019-07-13T2149:InnerDetector/InDetMonitoring/PixelMonitoring/src/PixelMainMon.cxx +816
24ca729716eb7e78cc8028e163b055d5b46488cc 2019-06-29_T1738 scott snyder PixelMonitoring: Get lumi information from base class, not lumi tool.
c3dc826bc068b4f7c6a78ffb12dd54ebc61f4f59 2019-05-24_T1013 Iskander Ibragimov Merge branch 'bugfix/pp0-histos' into '21.0'
81d51a0b0f8970440d68fc446d2a892fa565d544 2019-03-11_T1821 Vakho Tsulaia Dropped dependency on the old EventInfo from PixelMonitoring and TRT_Monitoring
814 // space point
815 if (m_doSpacePoint) {
816 if (evtStore()->contains<SpacePointContainer>(m_Pixel_SpacePointsName.key())) {
817 if (fillSpacePointMon().isFailure()) {
818 if (msgLvl(MSG::INFO)) msg(MSG::INFO) << "Could not fill histograms" << endmsg;
Edited by Susumu Oda