ATLAS Offline Software
Loading...
Searching...
No Matches
LArDetectorToolTBEC.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
8#include "GaudiKernel/IService.h"
9#include "GaudiKernel/ISvcLocator.h"
10#include "GaudiKernel/MsgStream.h"
14
16 const std::string& name,
17 const IInterface* parent)
18 : GeoModelTool(type,name,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 SmartIF<IGeoDbTagSvc> geoDbTag{Gaudi::svcLocator()->service("GeoDbTagSvc")};
33 ATH_CHECK(geoDbTag.isValid());
34
35 std::string AtlasVersion = geoDbTag->atlasVersion();
36 std::string LArVersion = geoDbTag->LAr_VersionOverride();
37
38 SmartIF<IRDBAccessSvc> accessSvc{Gaudi::svcLocator()->service("RDBAccessSvc")};
39 ATH_CHECK(accessSvc.isValid());
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
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}
#define endmsg
#define ATH_CHECK
Evaluate an expression and check for errors.
Definition of the abstract IRDBAccessSvc interface.
GeoPhysVol * getPhysVol()
Destructor.
void addManager(const GeoVDetectorManager *)
GeoVDetectorManager * m_detector
virtual ~LArDetectorToolTBEC() override final
virtual StatusCode create() override final
LArDetectorToolTBEC(const std::string &type, const std::string &name, const IInterface *parent)
virtual const LArDetectorManager * getDetectorManager() const override
virtual void create(GeoPhysVol *world) override