diff --git a/Trigger/TrigMonitoring/TrigIDTPMonitor/python/TrigIDTPMonitorMonitoring.py b/Trigger/TrigMonitoring/TrigIDTPMonitor/python/TrigIDTPMonitorMonitoring.py index 05f0f17c8043f7cf568d46cb59051d58fd021fb0..bcd34119ab7d640c3322d16493a3359c082317f4 100644 --- a/Trigger/TrigMonitoring/TrigIDTPMonitor/python/TrigIDTPMonitorMonitoring.py +++ b/Trigger/TrigMonitoring/TrigIDTPMonitor/python/TrigIDTPMonitorMonitoring.py @@ -280,27 +280,27 @@ class TrigIDTPMonitorElectronMonitorBase(TrigGenericMonitoringToolConfig): #MONITORING THE IBL #Innermost detector hit efficiency profiles in bins of probe track (PT): eta and phi - self.Histograms += [ defineHistogram('PTeta, PTpixelFound', type='TProfile', title="Innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for Precision Tracker vs eta; eta [radians]", + self.Histograms += [ defineHistogram('PTeta, PTpixelFound', type='TProfile', title="Expected && Found hit (IBL) for Precision Tracker vs eta; eta [radians]", xbins=15, xmin=-3, xmax=3, ymin=-0.1, ymax=1.1) ] - self.Histograms += [ defineHistogram('PTphi, PTpixelFound', type='TProfile', title="Innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for Precision Tracker vs phi; phi [radians]", - xbins=9, xmin=-3.14, xmax=3.14, + self.Histograms += [ defineHistogram('PTphi, PTpixelFound', type='TProfile', title="Expected && Found hit (IBL) for Precision Tracker vs phi; phi [radians]", + xbins=14, xmin=-3.14, xmax=3.14, ymin=-0.1, ymax=1.1) ] #2D profile histogram of inner detector region - self.Histograms += [ defineHistogram('PTeta, PTphi, PTpixelFound', type='TProfile2D', title="Innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for region; eta; phi", + self.Histograms += [ defineHistogram('PTeta, PTphi, PTpixelFound', type='TProfile2D', title="Expected && Found hit (IBL) for region; eta; phi", xbins=10, xmin=-3, xmax=3, - ybins=10, ymin=-3.14, ymax=3.14, zmin=-0.1, zmax=1.1) ] + ybins=14, ymin=-3.14, ymax=3.14, zmin=-0.1, zmax=1.1) ] #Next to Innermost detector hit efficiency profiles in bins of probe track (PT): eta and phi - self.Histograms += [ defineHistogram('PTeta, PTpixelNextToFound', type='TProfile', title="Next to innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for Precision Tracker vs eta; eta [radians]", + self.Histograms += [ defineHistogram('PTeta, PTpixelNextToFound', type='TProfile', title="Next to innermost layer of detector - Expected && Found hit (L0) for Precision Tracker vs eta; eta [radians]", xbins=15, xmin=-3, xmax=3, ymin=-0.1, ymax=1.1) ] - self.Histograms += [ defineHistogram('PTphi, PTpixelNextToFound', type='TProfile', title="Next to innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for Precision Tracker vs phi; phi [radians]", - xbins=9, xmin=-3.14, xmax=3.14, + self.Histograms += [ defineHistogram('PTphi, PTpixelNextToFound', type='TProfile', title="Next to innermost layer of detector - Expected && Found hit (L0) for Precision Tracker vs phi; phi [radians]", + xbins=22, xmin=-3.14, xmax=3.14, ymin=-0.1, ymax=1.1) ] #2D profile histogram of inner detector region - self.Histograms += [ defineHistogram('PTeta, PTphi, PTpixelNextToFound', type='TProfile2D', title="Next to innermost layer of detector - Observed Tracks/Expected Tracks (pixel) for region; eta; phi", + self.Histograms += [ defineHistogram('PTeta, PTphi, PTpixelNextToFound', type='TProfile2D', title="Next to innermost layer of detector - Expected && Found hit (L0) for region; eta; phi", xbins=10, xmin=-3, xmax=3, - ybins=10, ymin=-3.14, ymax=3.14, zmin=-0.1, zmax=1.1) ] + ybins=22, ymin=-3.14, ymax=3.14, zmin=-0.1, zmax=1.1) ] class TrigIDTPMonitorElectronOnlineMonitor(TrigIDTPMonitorElectronMonitorBase): diff --git a/Trigger/TrigMonitoring/TrigIDTPMonitor/src/TrigIDTPMonitorElectron.cxx b/Trigger/TrigMonitoring/TrigIDTPMonitor/src/TrigIDTPMonitorElectron.cxx index 951f80e3b36347cf84d0d90638060635bdf4b2fa..b55808998a0b81138b5d2bc4d28d22462e0f4dd9 100644 --- a/Trigger/TrigMonitoring/TrigIDTPMonitor/src/TrigIDTPMonitorElectron.cxx +++ b/Trigger/TrigMonitoring/TrigIDTPMonitor/src/TrigIDTPMonitorElectron.cxx @@ -938,7 +938,7 @@ HLT::ErrorCode TrigIDTPMonitorElectron::hltExecute(const HLT::TriggerElement* in } y++; } - if(m_FTFfound){ + if(m_FTFfound==0){ ATH_MSG_DEBUG("FTF:::1)COMBINED CRITERIA: This candidate was found to be INEFFICIENT"); } if(m_FTFfound==1){ @@ -951,7 +951,7 @@ HLT::ErrorCode TrigIDTPMonitorElectron::hltExecute(const HLT::TriggerElement* in //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~` //END OF ALGORITHM - ATH_MSG_INFO( "Finishing TrigIDTPMonitorElectron" ); + ATH_MSG_DEBUG( "Finishing TrigIDTPMonitorElectron" ); return HLT::OK; }