ATLAS Offline Software
Loading...
Searching...
No Matches
TgcPrepDataContainerCnv_p1.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
9
14// Gaudi
15#include "GaudiKernel/ISvcLocator.h"
16#include "GaudiKernel/Bootstrap.h"
17#include "GaudiKernel/StatusCode.h"
18#include "GaudiKernel/Service.h"
19#include "GaudiKernel/MsgStream.h"
20
21// Athena
25
26
28 // Do not initialize again:
29 m_isInitialized=true;
30
31 // get DetectorStore service
32 SmartIF<StoreGateSvc> detStore{Gaudi::svcLocator()->service("DetectorStore")};
33 CHECK( detStore.isValid() );
34
35 // Get the helper from the detector store
36 CHECK( detStore->retrieve(m_TgcId) );
37
38 CHECK( m_eventCnvTool.retrieve() );
39
40 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << "Converter initialized." << endmsg;
41 return StatusCode::SUCCESS;
42}
44 const Trk::ITrkEventCnvTool* cnv_tool = m_eventCnvTool->getCnvTool(id);
45 if (!cnv_tool) return nullptr;
46 return dynamic_cast<const MuonGM::TgcReadoutElement*>(cnv_tool->getDetectorElement(id));
47}
49{
50
51 // The transient model has a container holding collections and the
52 // collections hold channels.
53 //
54 // The persistent model flattens this so that the persistent
55 // container has two vectors:
56 // 1) all collections, and
57 // 2) all RDO
58 //
59 // The persistent collections, then only maintain indexes into the
60 // container's vector of all channels.
61 //
62 // So here we loop over all collection and add their channels
63 // to the container's vector, saving the indexes in the
64 // collection.
65
68
69 TgcPrepDataCnv_p1 chanCnv;
70 TRANS::const_iterator it_Coll = transCont->begin();
71 TRANS::const_iterator it_CollEnd = transCont->end();
72 unsigned int collIndex = 0;
73 unsigned int chanBegin = 0;
74 unsigned int chanEnd = 0;
75 int numColl = transCont->numberOfCollections();
76
77 persCont->m_collections.resize(numColl);
78 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << " Preparing " << persCont->m_collections.size() << "Collections" << endmsg;
79
80 for (collIndex = 0; it_Coll != it_CollEnd; ++collIndex, ++it_Coll) {
81 // Add in new collection
82 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << " New collection" << endmsg;
83 const Muon::TgcPrepDataCollection& collection = (**it_Coll);
84 chanBegin = chanEnd;
85 chanEnd += collection.size();
86 Muon::MuonPRD_Collection_p1& pcollection = persCont->m_collections[collIndex];
87 pcollection.m_id = collection.identify().get_identifier32().get_compact();
88 pcollection.m_hashId = (unsigned int) collection.identifyHash();
89 pcollection.m_begin = chanBegin;
90 pcollection.m_end = chanEnd;
91 // Add in channels
92 persCont->m_PRD.resize(chanEnd);
93 for (unsigned int i = 0; i < collection.size(); ++i) {
94 const Muon::TgcPrepData* chan = collection[i];
95 persCont->m_PRD[i + chanBegin] = toPersistent((CONV**)nullptr, chan, log );
96 }
97 }
98 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << " *** Writing TgcPrepDataContainer ***" << endmsg;
99}
100
102{
103
104 // The transient model has a container holding collections and the
105 // collections hold channels.
106 //
107 // The persistent model flattens this so that the persistent
108 // container has two vectors:
109 // 1) all collections, and
110 // 2) all channels
111 //
112 // The persistent collections, then only maintain indexes into the
113 // container's vector of all channels.
114 //
115 // So here we loop over all collection and extract their channels
116 // from the vector.
117
118
119 Muon::TgcPrepDataCollection* coll = nullptr;
120
121 TgcPrepDataCnv_p1 chanCnv;
123
124 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << " Reading " << persCont->m_collections.size() << "Collections" << endmsg;
125 for (unsigned int icoll = 0; icoll < persCont->m_collections.size(); ++icoll) {
126
127 // Create trans collection - is NOT owner of TgcPrepData (SG::VIEW_ELEMENTS)
128 // IDet collection don't have the Ownership policy c'tor
129 const Muon::MuonPRD_Collection_p1& pcoll = persCont->m_collections[icoll];
130 Identifier collID(Identifier(pcoll.m_id));
131 IdentifierHash collIDHash(IdentifierHash(pcoll.m_hashId));
132 coll = new Muon::TgcPrepDataCollection(collIDHash);
133 coll->setIdentifier(Identifier(pcoll.m_id));
134 unsigned int nchans = pcoll.m_end - pcoll.m_begin;
135 coll->resize(nchans);
136// No hash based lookup for Tgcs?
137 const MuonGM::TgcReadoutElement * de = getReadOutElement(collID);
138 // Fill with channels
139 for (unsigned int ichan = 0; ichan < nchans; ++ ichan) {
140 const TPObjRef pchan = persCont->m_PRD[ichan + pcoll.m_begin];
141 Muon::TgcPrepData* chan = dynamic_cast<Muon::TgcPrepData*>(createTransFromPStore((CONV**)nullptr, pchan, log ) );
142 if(chan) {
143 chan->m_detEl = de;
144 (*coll)[ichan] = chan;
145 }
146 }
147
148 // register the rdo collection in IDC with hash - faster addCollection
149 StatusCode sc = transCont->addCollection(coll, collIDHash);
150 if (sc.isFailure()) {
151 throw std::runtime_error("Failed to add collection to ID Container");
152 }
153 if (log.level() <= MSG::DEBUG) {
154 log << MSG::DEBUG << "AthenaPoolTPCnvIDCont::persToTrans, collection, hash_id/coll id = " << (int) collIDHash << " / " <<
155 collID.get_compact() << ", added to Identifiable container." << endmsg;
156 }
157 }
158
159 if (log.level() <= MSG::DEBUG) log << MSG::DEBUG << " *** Reading TgcPrepDataContainer" << endmsg;
160}
161
162
163
164//================================================================
166{
167 if(!m_isInitialized) {
168 if (this->initialize(log) != StatusCode::SUCCESS) {
169 log << MSG::FATAL << "Could not initialize TgcPrepDataContainerCnv_p1 " << endmsg;
170 return nullptr;
171 }
172 }
173 std::unique_ptr<Muon::TgcPrepDataContainer> trans(new Muon::TgcPrepDataContainer(m_TgcId->module_hash_max()));
174 persToTrans(persObj, trans.get(), log);
175 return(trans.release());
176}
177
178
#define endmsg
Helpers for checking error return status codes and reporting errors.
#define CHECK(...)
Evaluate an expression and check for errors.
static Double_t sc
void resize(size_type sz)
size_type size() const noexcept
Common base class for all TP converters, specialized for a given transient type.
Definition TPConverter.h:37
CNV::Trans_t * createTransFromPStore(CNV **cnv, const TPObjRef &ref, MsgStream &log) const
TPObjRef toPersistent(CNV **cnv, const typename CNV::TransBase_t *transObj, MsgStream &log) const
const_iterator end() const
return const_iterator for end of container
virtual size_t numberOfCollections() const override final
return number of collections
virtual StatusCode addCollection(const T *coll, IdentifierHash hashId) override final
insert collection into container with id hash if IDC should not take ownership of collection,...
const_iterator begin() const
return const_iterator for first entry
value_type get_compact() const
Get the compact id.
This is a "hash" representation of an Identifier.
value_type get_compact() const
Get the compact id.
Identifier32 get_identifier32() const
Get the 32-bit version Identifier, will be invalid if >32 bits needed.
A TgcReadoutElement corresponds to a single TGC chamber; therefore typically a TGC station contains s...
unsigned int m_end
End index into master collection.
unsigned int m_hashId
Hash Identifier of this collection (write this one as well, so we don't rely on the IdHelper for it)
unsigned int m_begin
Begin index into master collection.
unsigned int m_id
Identifier of this collection.
std::vector< Muon::MuonPRD_Collection_p1 > m_collections
std::vector< TPObjRef > m_PRD
virtual Identifier identify() const override final
virtual void setIdentifier(Identifier id)
virtual IdentifierHash identifyHash() const override final
virtual Muon::TgcPrepDataContainer * createTransient(const Muon::MuonPRD_Container_p1 *persObj, MsgStream &log)
ToolHandle< Trk::IEventCnvSuperTool > m_eventCnvTool
virtual void transToPers(const TRANS *transCont, PERS *persCont, MsgStream &log)
virtual void persToTrans(const PERS *persCont, TRANS *transCont, MsgStream &log)
const MuonGM::TgcReadoutElement * getReadOutElement(const Identifier &id) const
Class to represent TGC measurements.
Definition TgcPrepData.h:32
This class is an object reference used in Athena persistent data model.
Definition TPObjRef.h:20
virtual const Trk::TrkDetElementBase * getDetectorElement(const Identifier &id, const IdentifierHash &idHash) const =0
Returns the detectorElement associated with this Identifier & Hash.
MuonPrepDataCollection< TgcPrepData > TgcPrepDataCollection
MuonPrepDataContainerT< TgcPrepData > TgcPrepDataContainer
void initialize()