ATLAS Offline Software
LArDetectorToolTBEC.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "LArDetectorToolTBEC.h"
6 #include "LArDetectorFactoryTBEC.h"
8 #include "GaudiKernel/IService.h"
9 #include "GaudiKernel/ISvcLocator.h"
10 #include "GaudiKernel/MsgStream.h"
11 #include "StoreGate/StoreGateSvc.h"
14 
16  const std::string& name,
17  const IInterface* parent)
19  m_ecVisLimit(-1)
20 {
21  declareProperty("ECVisLimit", m_ecVisLimit);
22 }
23 
25 = default;
26 
28 {
29  MsgStream log(msgSvc(), name());
30 
31  // Get the detector configuration.
32  IGeoDbTagSvc *geoDbTag;
33  ATH_CHECK(service ("GeoDbTagSvc",geoDbTag));
34 
35  std::string AtlasVersion = geoDbTag->atlasVersion();
36  std::string LArVersion = geoDbTag->LAr_VersionOverride();
37 
38  IRDBAccessSvc *accessSvc;
39  ATH_CHECK(service("RDBAccessSvc",accessSvc));
40 
41  std::string detectorKey = LArVersion.empty() ? AtlasVersion : LArVersion;
42  std::string detectorNode = LArVersion.empty() ? "ATLAS" : "LAr";
43  log << MSG::INFO << "Keys for LAr are " << detectorKey << " " << detectorNode << endmsg;
44 
45 
46  log << MSG::INFO << "Creating the LAr " << endmsg;
47  log << MSG::INFO << "LAr Geometry Options:" << endmsg;
48 
49  // Locate the top level experiment node
50  GeoModelExperiment* theExpt = nullptr;
51  if (StatusCode::SUCCESS != detStore()->retrieve( theExpt, "ATLAS" ))
52  {
53  log << MSG::ERROR << "Could not find GeoModelExperiment ATLAS" << endmsg;
54  return (StatusCode::FAILURE);
55  }
56 
57  // determine the geometry layout - Atlas/Testbeam
58  std::string geometryLayout = "Atlas";
59  std::string LArTag = accessSvc->getChildTag("LAr",detectorKey,detectorNode);
60 
61  LArGeo::LArDetectorFactoryTBEC theLArFactory;
62 
63  theLArFactory.setECVisLimit (m_ecVisLimit);
64 
65 
66  if (nullptr == m_detector)
67  {
68  GeoIntrusivePtr<GeoPhysVol>world=&*theExpt->getPhysVol();
69  theLArFactory.create(world);
70 
71  if (StatusCode::SUCCESS != detStore()->record(theLArFactory.getDetectorManager(),theLArFactory.getDetectorManager()->getName()))
72  {
73  log << MSG::ERROR << "Could not record" << endmsg;
74  return (StatusCode::FAILURE);
75  }
76 
77  theExpt->addManager(theLArFactory.getDetectorManager());
78 
79 
80  return StatusCode::SUCCESS;
81  }
82 
83 
84  return StatusCode::FAILURE;
85 }
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
GeoModelExperiment::getPhysVol
GeoPhysVol * getPhysVol()
Destructor.
Definition: GeoModelExperiment.cxx:21
LArDetectorToolTBEC::create
virtual StatusCode create() override final
Definition: LArDetectorToolTBEC.cxx:27
LArDetectorToolTBEC::~LArDetectorToolTBEC
virtual ~LArDetectorToolTBEC() override final
LArDetectorToolTBEC.h
GeoModelExperiment
Definition: GeoModelExperiment.h:32
IGeoDbTagSvc::LAr_VersionOverride
virtual const std::string & LAr_VersionOverride() const =0
GeoModelExperiment.h
EventInfoWrite.AtlasVersion
AtlasVersion
Definition: EventInfoWrite.py:17
IRDBAccessSvc.h
Definition of the abstract IRDBAccessSvc interface.
IRDBAccessSvc::getChildTag
virtual std::string getChildTag(const std::string &childNode, const std::string &parentTag, const std::string &parentNode, const std::string &connName="ATLASDD")=0
Gets the tag name for the node by giving its parent node tag.
StdJOSetup.msgSvc
msgSvc
Provide convenience handles for various services.
Definition: StdJOSetup.py:36
LArGeo::LArDetectorFactoryTBEC
Definition: LArDetectorFactoryTBEC.h:13
IRDBAccessSvc
IRDBAccessSvc is an abstract interface to the athena service that provides the following functionalit...
Definition: IRDBAccessSvc.h:45
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArGeo::LArDetectorFactoryTBEC::getDetectorManager
virtual const LArDetectorManager * getDetectorManager() const
Definition: LArDetectorFactoryTBEC.cxx:202
test_pyathena.parent
parent
Definition: test_pyathena.py:15
GeoModelTool
Definition: GeoModelTool.h:17
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
IGeoDbTagSvc
Definition: IGeoDbTagSvc.h:26
python.PyKernel.detStore
detStore
Definition: PyKernel.py:41
GeoModelTool::m_detector
GeoVDetectorManager * m_detector
Definition: GeoModelTool.h:36
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
GeoModelExperiment::addManager
void addManager(const GeoVDetectorManager *)
Definition: GeoModelExperiment.cxx:40
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
IGeoDbTagSvc::atlasVersion
virtual const std::string & atlasVersion() const =0
python.CaloCondTools.log
log
Definition: CaloCondTools.py:20
declareProperty
#define declareProperty(n, p, h)
Definition: BaseFakeBkgTool.cxx:15
LArDetectorFactoryTBEC.h
LArDetectorToolTBEC::m_ecVisLimit
int m_ecVisLimit
Definition: LArDetectorToolTBEC.h:25
LArGeo::LArDetectorFactoryTBEC::create
virtual void create(GeoPhysVol *world)
Definition: LArDetectorFactoryTBEC.cxx:48
LArGeo::LArDetectorFactoryTBEC::setECVisLimit
void setECVisLimit(int maxCell)
Definition: LArDetectorFactoryTBEC.h:32
StoreGateSvc.h
IGeoDbTagSvc.h
LArDetectorToolTBEC::LArDetectorToolTBEC
LArDetectorToolTBEC(const std::string &type, const std::string &name, const IInterface *parent)
Definition: LArDetectorToolTBEC.cxx:15