Skip to content
Snippets Groups Projects
Commit f6776e7c authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

LumiBlockAthenaPool: enable thread-checker and fix warnings

parent ca51daf8
No related branches found
No related tags found
46 merge requests!59674InDetPerformanceMonitoring with LumiBlock selection,!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!58990Draft:Fixing bug in FTF config when running with Reco_tf,!58835DataQualityConfigurations: Modify L1Calo config for web display,!58791DataQualityConfigurations: Modify L1Calo config for web display,!58373Modification of V2.3 processing to work well with all clients,!58289New NVSI calibration,!58286New NVSI calibration,!58106Update NVSI example algorithm,!57937Draft: New nighlty test for trigger with a Run 4 single muon RDO,!57841Edits to ZDC signal processing in preparation for analysis of data from LHCf run,!57590Fixing LAr DT dumper,!57584Draft: LAr DB fixes,!57316ATR-26311 and ATR-25754 moving one dimuon and few egamma chains from dev to phys or MC,!57090ATLASRECTS-7305: fixes for large cluster building,!56828Draft: [trigEGam] Integration beteween mongroups and TrigEgammaMonitoring,!56523Draft: Proposal for CA-Based AODFix,!56154tauRecTools: fix conditional decoration in TauIDVarCalculator,!55990MM offline DQ - plit PBC in 2 FEB in occupancy plots,!55989ATR-25904: fixed the RUN3_ROI_OVERFLOW_SHIFT and m_OverflowPerRoIMask to 12,!55609Add Athena TEvent-based file access,!55378Draft: Fix ToF channels,!55330Draft: PixelMonitoring: re-implementation of assessment of mva histograms in the online-post processing,!55327Fix memory leak in eFEX Tau algorithm (ATR-25988),!55308Fill offline MET histograms only if container is valid and non-empty,!55304Move fill of offline MET conditional on container being valid and non-empty,!55301Move fill of offline MET conditional on container being valid and non-empty,!55300Move fill of offline MET conditional on container being valid and non-empty,!55158Update JetInputs DQ web display config to add missing plots,!54932Draft: TrigBtagEmulationTool: Add BJet trigger emulation tool,!54737Draft: HLT_mu3vtx_L12MU8F Trigger Updates,!54628Draft: Added HLT_RoICluster_Composites container to EDM conifg.,!54441Draft: Add new scheme to use only half of rings as input,!54269One-line fix for e/g algorithm issue,!54263Draft: changing sTGC TDO tag,!54132Draft: Initial sTGC raw data monitoring,!54090r22 JetTagging: fix_tow_Run3,!54037Add mu3 thresholds and HLT_2mu3 (ATR-23494),!53857TauTrig : move to use tracktwoMVA as Primary chains and keep only few...,!53685fix AFP digitization setup with CA,!53648Switch to GSF by default for electron chains inside the TrigEgammaMatchingTool,!53614Typo fix PoolWriteConfig.py for DAOD compression,!53586LumiBlockAthenaPool: enable thread-checker and fix warnings,!53294ctau seeding,!52778Draft: Update the collisions HLT egamma han config for Run3,!52702Draft: update of muonSelectionTool for r22 and run3
LumiBlock/LumiBlockPers/LumiBlockAthenaPool
/*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
......@@ -8,13 +8,11 @@
/////////////////////////////////////////////////////////////////
#include "LumiBlockCollectionCnv.h"
#include "LumiBlockTPCnv/LumiBlockCollectionCnv_p1.h"
#include "LumiBlockTPCnv/LumiBlockCollectionCnv_p2.h"
LumiBlockCollection_PERS* LumiBlockCollectionCnv::createPersistent(LumiBlockCollection* transCont) {
MsgStream log(msgSvc(), "LumiBlockCollectionConverter" );
LumiBlockCollection_PERS * persObj = m_TPConverter.createPersistent( transCont, log );
LumiBlockCollection_PERS * persObj = m_converter.createPersistent( transCont, log );
log << MSG::DEBUG << "Success" << endmsg;
return persObj;
......@@ -22,20 +20,16 @@ LumiBlockCollection_PERS* LumiBlockCollectionCnv::createPersistent(LumiBlockColl
LumiBlockCollection* LumiBlockCollectionCnv::createTransient() {
MsgStream log(msgSvc(), "LumiBlockCollectionConverter" );
static pool::Guid p1_guid("CF1F40C9-6125-4C35-87FF-DDA2C319000C");
static pool::Guid p2_guid("DEF9282A-F174-4382-8248-B94567CD869F");
static LumiBlockCollectionCnv_p1 TPConverter_p1;
static LumiBlockCollectionCnv_p2 TPConverter_p2;
static const pool::Guid p1_guid("CF1F40C9-6125-4C35-87FF-DDA2C319000C");
static const pool::Guid p2_guid("DEF9282A-F174-4382-8248-B94567CD869F");
if( compareClassGuid(p2_guid) ) {
std::unique_ptr< LumiBlockCollection_p2 > col_vect( poolReadObject< LumiBlockCollection_p2 >() );
return TPConverter_p2.createTransient( col_vect.get(), log );
return m_converter.createTransient( col_vect.get(), log );
}
else if( compareClassGuid(p1_guid) ) {
std::unique_ptr< LumiBlockCollection_p1 > col_vect( poolReadObject< LumiBlockCollection_p1 >() );
return TPConverter_p1.createTransient( col_vect.get(), log );
return m_converter_p1.createTransient( col_vect.get(), log );
}
else {
throw std::runtime_error("Unsupported persistent version of LumiBlockCollection");
......
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
......@@ -13,6 +13,7 @@
#include "AthenaPoolCnvSvc/T_AthenaPoolCustomCnv.h"
#include "LumiBlockData/LumiBlockCollection.h"
#include "LumiBlockTPCnv/LumiBlockCollectionCnv_p1.h"
#include "LumiBlockTPCnv/LumiBlockCollectionCnv_p2.h"
// the latest persistent representation type of LumiBlockCollection
......@@ -29,10 +30,10 @@ protected:
virtual LumiBlockCollection_PERS* createPersistent (LumiBlockCollection* transCont);
virtual LumiBlockCollection* createTransient ();
// virtual AthenaPoolTopLevelTPCnvBase* getTopLevelTPCnv() { return &m_TPConverter; }
private:
LumiBlockCollectionCnv_p2 m_TPConverter;
LumiBlockCollectionCnv_p1 m_converter_p1;
LumiBlockCollectionCnv_p2 m_converter;
};
#endif // LUMIBLOCKCOLLECTIONCNV__H
......
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