Skip to content
Snippets Groups Projects
Commit c58d5c95 authored by Atlas-Software Librarian's avatar Atlas-Software Librarian Committed by Graeme Stewart
Browse files

'CMakeLists.txt' (PFODQA-00-00-10)

parent 9cc29bfd
No related branches found
No related tags found
No related merge requests found
################################################################################
# Package: PFODQA
################################################################################
# Declare the package name:
atlas_subdir( PFODQA )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
GaudiKernel
PRIVATE
Control/AthenaMonitoring
Event/xAOD/xAODCaloEvent
Event/xAOD/xAODPFlow
Reconstruction/PFlow/PFlowUtils
Reconstruction/PFlow/PFlowValidation/PFOHistUtils
Tracking/TrkValidation/TrkValHistUtils )
# External dependencies:
find_package( ROOT COMPONENTS Core Tree MathCore Hist RIO pthread )
# Component(s) in the package:
atlas_add_component( PFODQA
src/*.cxx
src/components/*.cxx
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} GaudiKernel AthenaMonitoringLib xAODCaloEvent xAODPFlow PFOHistUtils TrkValHistUtils )
11 May 2015 Mark Hodgkinson
Fix Coverity issues 17432, 16380
Tag as PFODQA-00-00-10
4 November 2014 Mark Hodgkinson 4 November 2014 Mark Hodgkinson
Add usage of new PFOAttributes class Add usage of new PFOAttributes class
Tag as PFODQA-00-00-09 Tag as PFODQA-00-00-09
......
...@@ -42,6 +42,7 @@ StatusCode PhysValCluster::fillHistograms(){ ...@@ -42,6 +42,7 @@ StatusCode PhysValCluster::fillHistograms(){
if (!theClusterContainer){ if (!theClusterContainer){
if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << " Have NULL pointer to xAOD::PFOContainer " << endreq; if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << " Have NULL pointer to xAOD::PFOContainer " << endreq;
return StatusCode::SUCCESS;
} }
xAOD::CaloClusterContainer::const_iterator firstCluster = theClusterContainer->begin(); xAOD::CaloClusterContainer::const_iterator firstCluster = theClusterContainer->begin();
......
...@@ -59,6 +59,7 @@ StatusCode PhysValPFO::fillHistograms(){ ...@@ -59,6 +59,7 @@ StatusCode PhysValPFO::fillHistograms(){
if (!thePFOContainer){ if (!thePFOContainer){
if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << " Have NULL pointer to xAOD::PFOContainer " << endreq; if (msgLvl(MSG::WARNING)) msg(MSG::WARNING) << " Have NULL pointer to xAOD::PFOContainer " << endreq;
return StatusCode::SUCCESS;
} }
xAOD::PFOContainer::const_iterator firstPFO = thePFOContainer->begin(); xAOD::PFOContainer::const_iterator firstPFO = thePFOContainer->begin();
......
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