Skip to content
Snippets Groups Projects
Commit fdad1b9c authored by scott snyder's avatar scott snyder Committed by scott snyder
Browse files

CaloCondPhysAlgs: Migrate LArMinBiasAlg to LArMCSym.

Migrate LArMinBiasAlg from the obsolete LArMCSymTool to the
LArMCSym conditions object.

Needed to avoid warings from the thread-safety checker.
parent 12ba3a06
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ atlas_depends_on_subdirs( PUBLIC ...@@ -21,6 +21,7 @@ atlas_depends_on_subdirs( PUBLIC
LArCalorimeter/LArIdentifier LArCalorimeter/LArIdentifier
LArCalorimeter/LArRecUtils LArCalorimeter/LArRecUtils
LArCalorimeter/LArTools LArCalorimeter/LArTools
LArCalorimeter/LArRawConditions
Trigger/TrigAnalysis/TrigDecisionTool Trigger/TrigAnalysis/TrigDecisionTool
PRIVATE PRIVATE
Calorimeter/CaloConditions Calorimeter/CaloConditions
...@@ -46,7 +47,7 @@ atlas_add_component( CaloCondPhysAlgs ...@@ -46,7 +47,7 @@ atlas_add_component( CaloCondPhysAlgs
src/components/*.cxx src/components/*.cxx
INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} ${CORAL_INCLUDE_DIRS} ${COOL_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS} INCLUDE_DIRS ${ROOT_INCLUDE_DIRS} ${CORAL_INCLUDE_DIRS} ${COOL_INCLUDE_DIRS} ${CLHEP_INCLUDE_DIRS}
LINK_LIBRARIES ${ROOT_LIBRARIES} ${CORAL_LIBRARIES} ${COOL_LIBRARIES} ${CLHEP_LIBRARIES} CaloCondBlobObjs CaloDetDescrLib CaloGeoHelpers LINK_LIBRARIES ${ROOT_LIBRARIES} ${CORAL_LIBRARIES} ${COOL_LIBRARIES} ${CLHEP_LIBRARIES} CaloCondBlobObjs CaloDetDescrLib CaloGeoHelpers
CaloIdentifier AthenaBaseComps AthenaKernel StoreGateLib SGtests GaudiKernel LArCablingLib LArIdentifier TrigDecisionToolLib CaloIdentifier AthenaBaseComps AthenaKernel StoreGateLib SGtests GaudiKernel LArCablingLib LArIdentifier TrigDecisionToolLib LArRawConditions
CaloConditions CaloEvent CaloUtilsLib AthenaPoolUtilities Identifier xAODEventInfo LArHV LArReadoutGeometry LArSimEvent CxxUtils) CaloConditions CaloEvent CaloUtilsLib AthenaPoolUtilities Identifier xAODEventInfo LArHV LArReadoutGeometry LArSimEvent CxxUtils)
# Install files from the package: # Install files from the package:
......
...@@ -61,6 +61,9 @@ include( "LArDetDescr/LArDetDescr_joboptions.py" ) ...@@ -61,6 +61,9 @@ include( "LArDetDescr/LArDetDescr_joboptions.py" )
include("TileConditions/TileConditions_jobOptions.py" ) include("TileConditions/TileConditions_jobOptions.py" )
include("LArConditionsCommon/LArConditionsCommon_MC_jobOptions.py") include("LArConditionsCommon/LArConditionsCommon_MC_jobOptions.py")
from LArRecUtils.LArMCSymCondAlg import LArMCSymCondAlgDefault
LArMCSymCondAlgDefault()
from CaloCondPhysAlgs.CaloCondPhysAlgsConf import LArMinBiasAlg from CaloCondPhysAlgs.CaloCondPhysAlgsConf import LArMinBiasAlg
larMinBiasAlg = LArMinBiasAlg() larMinBiasAlg = LArMinBiasAlg()
larMinBiasAlg.datasetID_lowPt =119995 larMinBiasAlg.datasetID_lowPt =119995
......
/* /*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
#include "LArMinBiasAlg.h" #include "LArMinBiasAlg.h"
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
//Constructor //Constructor
LArMinBiasAlg:: LArMinBiasAlg(const std::string& name, ISvcLocator* pSvcLocator): LArMinBiasAlg:: LArMinBiasAlg(const std::string& name, ISvcLocator* pSvcLocator):
AthAlgorithm(name,pSvcLocator), AthAlgorithm(name,pSvcLocator),
m_larmcsym("LArMCSymTool"),
m_datasetID_lowPt(119995), m_datasetID_lowPt(119995),
m_datasetID_highPt(119996), m_datasetID_highPt(119996),
m_weight_lowPt(39.8606), m_weight_lowPt(39.8606),
...@@ -76,7 +75,7 @@ ...@@ -76,7 +75,7 @@
// retrieve CaloDetDescrMgr // retrieve CaloDetDescrMgr
ATH_CHECK( detStore()->retrieve(m_calodetdescrmgr) ); ATH_CHECK( detStore()->retrieve(m_calodetdescrmgr) );
ATH_CHECK(m_larmcsym.retrieve()); ATH_CHECK(m_mcSymKey.initialize());
ATH_CHECK(m_cablingKey.initialize()); ATH_CHECK(m_cablingKey.initialize());
...@@ -112,9 +111,12 @@ ...@@ -112,9 +111,12 @@
ATH_MSG_DEBUG(" LArMinBiasAlg execute()"); ATH_MSG_DEBUG(" LArMinBiasAlg execute()");
const EventContext& ctx = Gaudi::Hive::currentContext();
if (m_first) { if (m_first) {
SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey}; SG::ReadCondHandle<LArMCSym> mcsym (m_mcSymKey, ctx);
SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl (m_cablingKey, ctx);
const LArOnOffIdMapping* cabling{*cablingHdl}; const LArOnOffIdMapping* cabling{*cablingHdl};
if(!cabling) { if(!cabling) {
ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() ); ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() );
...@@ -140,14 +142,14 @@ ...@@ -140,14 +142,14 @@
IdentifierHash idHash=i; IdentifierHash idHash=i;
Identifier id=m_calo_id->cell_id(idHash); Identifier id=m_calo_id->cell_id(idHash);
if (m_calo_id->is_tile(id)) continue; if (m_calo_id->is_tile(id)) continue;
// convert cell id to symetric identifier // convert cell id to symmetric identifier
HWIdentifier hwid2=m_larmcsym->symOnline(id); HWIdentifier hwid2 = mcsym->ZPhiSymOfl(id);
Identifier id2 = cabling->cnvToIdentifier(hwid2); Identifier id2 = cabling->cnvToIdentifier(hwid2);
int i2 = (int) (m_calo_id->calo_cell_hash(id2)); int i2 = (int) (m_calo_id->calo_cell_hash(id2));
if(i2>=m_ncell) { if(i2>=m_ncell) {
ATH_MSG_WARNING("problem: i2: "<<i2<<" for id: "<<m_calo_id->print_to_string(id)<<" symmetrized: "<<m_calo_id->print_to_string(id2)); ATH_MSG_WARNING("problem: i2: "<<i2<<" for id: "<<m_calo_id->print_to_string(id)<<" symmetrized: "<<m_calo_id->print_to_string(id2));
} }
// we have already processed this hash => just need to associate cell i to the same symetric cell // we have already processed this hash => just need to associate cell i to the same symmetric cell
if (doneCell[i2]>=0) { if (doneCell[i2]>=0) {
m_symCellIndex[i]=doneCell[i2]; m_symCellIndex[i]=doneCell[i2];
} }
......
/* /*
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
*/ */
// TheLArMinBiasAlg.h // TheLArMinBiasAlg.h
...@@ -22,9 +22,9 @@ ...@@ -22,9 +22,9 @@
#include "CaloIdentifier/CaloCell_ID.h" #include "CaloIdentifier/CaloCell_ID.h"
#include "CaloDetDescr/CaloDetDescrManager.h" #include "CaloDetDescr/CaloDetDescrManager.h"
#include "LArElecCalib/ILArMCSymTool.h"
#include "LArElecCalib/ILArMinBias.h" #include "LArElecCalib/ILArMinBias.h"
#include "LArCabling/LArOnOffIdMapping.h" #include "LArCabling/LArOnOffIdMapping.h"
#include "LArRawConditions/LArMCSym.h"
#include "GaudiKernel/ITHistSvc.h" #include "GaudiKernel/ITHistSvc.h"
#include "TTree.h" #include "TTree.h"
...@@ -56,11 +56,12 @@ ...@@ -56,11 +56,12 @@
//--------------------------------------------------- //---------------------------------------------------
// Member variables // Member variables
//--------------------------------------------------- //---------------------------------------------------
ToolHandle<ILArMCSymTool> m_larmcsym;
int m_datasetID_lowPt; int m_datasetID_lowPt;
int m_datasetID_highPt; int m_datasetID_highPt;
double m_weight_lowPt; double m_weight_lowPt;
double m_weight_highPt; double m_weight_highPt;
SG::ReadCondHandleKey<LArMCSym> m_mcSymKey
{ this, "MCSymKey", "LArMCSym", "SG Key of LArMCSym object" };
SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}; SG::ReadCondHandleKey<LArOnOffIdMapping> m_cablingKey{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"};
const CaloDetDescrManager* m_calodetdescrmgr = nullptr; const CaloDetDescrManager* m_calodetdescrmgr = nullptr;
......
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