ATLAS Offline Software
LArEM_SuperCell_ID.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
15 #include "LArEM_region.h"
16 
17 #include "GaudiKernel/MsgStream.h"
18 
19 #include <cmath>
20 #include <iostream>
21 #include <set>
22 #include <string>
23 
24 
25 
27  LArEM_Base_ID("LArEM_SuperCell_ID", "slar_em", 1)
28 {
29 }
30 
32 
34 /*=================================================================*/
35 {
36  MsgStream log(m_msgSvc, "LArEM_SuperCell_ID" );
37 
38  log << MSG::DEBUG << "initialize_from_dictionary" << endmsg;
39 
40  // Check whether this helper should be reinitialized
41  if (!reinitialize(dict_mgr)) {
42  log << MSG::DEBUG << "Request to reinitialize not satisfied - tags have not changed" << endmsg;
43  return (0);
44  }
45  else {
46  if(m_msgSvc)log << MSG::DEBUG << "(Re)initialize" << endmsg;
47  }
48 
49  // init base object
51  return (1);
52 
53  return 0;
54 }
55 
LArEM_Base_ID
This class factors out code common between LArEM_ID and LArEM_SuperCell_ID.
Definition: LArEM_Base_ID.h:36
AtlasDetectorID::m_msgSvc
IMessageSvc * m_msgSvc
pointer to the message service
Definition: AtlasDetectorID.h:369
LArEM_SuperCell_ID.h
Helper class for LArEM offline identifiers for supercells.
LArEM_SuperCell_ID::initialize_from_dictionary
virtual int initialize_from_dictionary(const IdDictMgr &dict_mgr)
initialization from the identifier dictionary
Definition: LArEM_SuperCell_ID.cxx:33
AtlasDetectorID.h
This class provides an interface to generate or decode an identifier for the upper levels of the dete...
IdDictMgr
Definition: IdDictMgr.h:16
LArEM_SuperCell_ID::~LArEM_SuperCell_ID
~LArEM_SuperCell_ID()
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
AtlasDetectorID::group
const std::string & group() const
Group name for this helper.
Definition: AtlasDetectorID.cxx:34
LArEM_region.h
IdentifierHash.h
AtlasDetectorID::reinitialize
bool reinitialize(const IdDictMgr &dict_mgr)
Test whether an idhelper should be reinitialized based on the change of tags.
Definition: AtlasDetectorID.cxx:223
DEBUG
#define DEBUG
Definition: page_access.h:11
python.CaloCondTools.log
log
Definition: CaloCondTools.py:20
LArEM_SuperCell_ID::LArEM_SuperCell_ID
LArEM_SuperCell_ID()
Definition: LArEM_SuperCell_ID.cxx:26
LArEM_Base_ID::initialize_base_from_dictionary
int initialize_base_from_dictionary(const IdDictMgr &dict_mgr, const std::string &group_name)
initialization from the identifier dictionary
Definition: LArEM_Base_ID.cxx:444