Skip to content
Snippets Groups Projects
Commit 65bfd49d authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'mster-md' into 'master'

use PathResolver to find G4particle_whitelist.txt, add missing dependency in...

See merge request atlas/athena!41832
parents 47625e75 339f626a
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!41832use PathResolver to find G4particle_whitelist.txt, add missing dependency in...
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
# Declare the package name:
atlas_subdir( EvgenProdTools )
......@@ -12,11 +12,11 @@ atlas_add_library( EvgenProdToolsLib
PUBLIC_HEADERS EvgenProdTools
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} AtlasHepMCLib AtlasHepMCsearchLib AthenaBaseComps TruthHelper GeneratorModulesLib GenInterfacesLib
PRIVATE_LINK_LIBRARIES AthenaKernel EventInfo GaudiKernel TruthUtils IOVDbDataModel AthenaPoolUtilities )
PRIVATE_LINK_LIBRARIES AthenaKernel EventInfo GaudiKernel TruthUtils IOVDbDataModel AthenaPoolUtilities PathResolver )
atlas_add_component( EvgenProdTools
src/components/*.cxx
LINK_LIBRARIES EvgenProdToolsLib IOVDbDataModel AthenaPoolUtilities )
LINK_LIBRARIES EvgenProdToolsLib )
# Install files from the package:
atlas_install_python_modules( python/*.py POST_BUILD_CMD ${ATLAS_FLAKE8} )
......
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/
#ifndef XAOD_ANALYSIS
#include "EvgenProdTools/TestHepMC.h"
#include "GaudiKernel/DataSvc.h"
#include "TruthUtils/PIDHelpers.h"
#include "PathResolver/PathResolver.h"
// For find
#include <algorithm>
......@@ -180,15 +181,18 @@ StatusCode TestHepMC::initialize() {
CHECK(m_thistSvc->regHist("/TestHepMCname/h_beamparticle2_Energy", m_h_beamparticle2_Energy));
CHECK(m_thistSvc->regHist("/TestHepMCname/h_cmEnergyDiff", m_h_cmEnergyDiff));
ATH_MSG_INFO("No decay vertex is ignored for particles with status (list):" );
ATH_MSG_INFO("No decay vertex - is ignored for particles with status (list):" );
for ( unsigned int i = 0; i < m_vertexStatuses.size(); i++ ) ATH_MSG_INFO(" : " << m_vertexStatuses.at(i) );
ATH_MSG_INFO("Vertex statuses finished");
} // End of histogramming setup
// open the files and read G4particle_whitelist.txt
static const char* fileName = "G4particle_whitelist.txt";
const std::string fileLocation = PathResolverFindDataFile ( fileName);
std::ifstream G4file;
G4file.open("G4particle_whitelist.txt");
G4file.open(fileLocation);
std::string line;
int G4pdgID;
if (!G4file.fail()){
......
......@@ -61,7 +61,7 @@
+ Database/APR/POOLCore
+ Database/APR/PersistencySvc
#+ Database/APR/RelationalCollection
#+ Database/APR/RootCollection
+ Database/APR/RootCollection
+ Database/APR/RootStorageSvc
+ Database/APR/StorageSvc
+ Database/AthenaPOOL/AthenaPoolCnvSvc
......
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