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

'CMakeLists.txt' (McParticleAlgs-00-09-10)

	* Tagging McParticleAlgs-00-09-10.
	* src/McAodValidationAlg.cxx: Avoid redundant division.
parent 95674797
No related branches found
No related tags found
No related merge requests found
################################################################################
# Package: McParticleAlgs
################################################################################
# Declare the package name:
atlas_subdir( McParticleAlgs )
# Declare the package's dependencies:
atlas_depends_on_subdirs( PUBLIC
GaudiKernel
PRIVATE
Control/AthenaBaseComps
Control/StoreGate
Event/NavFourMom
PhysicsAnalysis/TruthParticleID/McParticleEvent
PhysicsAnalysis/TruthParticleID/McParticleKernel
PhysicsAnalysis/TruthParticleID/McParticleUtils )
# External dependencies:
find_package( CLHEP )
# Component(s) in the package:
atlas_add_component( McParticleAlgs
src/*.cxx
src/components/*.cxx
INCLUDE_DIRS ${CLHEP_INCLUDE_DIRS}
LINK_LIBRARIES ${CLHEP_LIBRARIES} GaudiKernel AthenaBaseComps StoreGateLib SGtests NavFourMom McParticleEvent McParticleKernel McParticleUtils )
# Install files from the package:
atlas_install_headers( McParticleAlgs )
atlas_install_python_modules( python/*.py )
atlas_install_joboptions( share/*.py )
......@@ -188,7 +188,7 @@ StatusCode McAodValidationAlg::execute()
const TruthParticle * mc = *itr;
eneSum += mc->e();
}
ATH_MSG_DEBUG ("Sum Ene= " << (eneSum / CLHEP::GeV));
ATH_MSG_DEBUG ("Sum Ene= " << (eneSum * (1./CLHEP::GeV)));
bool validationIsOK = true;
ATH_MSG_DEBUG ("Checking the event with the validation AlgTools...");
......
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