ATLAS Offline Software
Loading...
Searching...
No Matches
TGCSimHitCollectionCnv_p1.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3*/
4
9
10//#include <cmath>
12
13// Gaudi
14#include "GaudiKernel/MsgStream.h"
15// Athena
17
19{
20 // for reasons of efficiency, set size before hand
21 unsigned int size=transCont->size();
22 persCont->m_TGCid.reserve(size);
23 persCont->m_globalTime.reserve(size);
24 persCont->m_stX.reserve(size);
25 persCont->m_stY.reserve(size);
26 persCont->m_stZ.reserve(size);
27 persCont->m_enX.reserve(size);
28 persCont->m_enY.reserve(size);
29 persCont->m_enZ.reserve(size);
30 persCont->m_partLink.reserve(size);
31
32 // make convertor to handle HepMcParticleLinks
33 HepMcParticleLinkCnv_p1 hepMcPLCnv;
34 HepMcParticleLink_p1 persLink; // will use this as a temp object inside the loop
35
36 // loop through container, filling pers object
37 TGCSimHitCollection::const_iterator it = transCont->begin(), itEnd = transCont->end();
38 for (; it != itEnd; ++it) {
39 persCont->m_TGCid.push_back(it->TGCid());
40 persCont->m_globalTime.push_back(it->globalTime());
41 persCont->m_stX.push_back(it->localPosition().x());
42 persCont->m_stY.push_back(it->localPosition().y());
43 persCont->m_stZ.push_back(it->localPosition().z());
44 persCont->m_enX.push_back(it->localDireCos().x());
45 persCont->m_enY.push_back(it->localDireCos().y());
46 persCont->m_enZ.push_back(it->localDireCos().z());
47
48 hepMcPLCnv.transToPers(&it->particleLink(),&persLink, log);
49 persCont->m_partLink.push_back(persLink);
50 }
51}
52
53
55 std::unique_ptr<TGCSimHitCollection> trans(new TGCSimHitCollection("DefaultCollectionName",persObj->m_globalTime.size()));
56 persToTrans(persObj, trans.get(), log);
57 return(trans.release());
58}
59
60
62{
63 HepMcParticleLinkCnv_p1 hepMcPLCnv;
64
65 //transCont->reserve(persCont->m_TGCid.size()); //done in createTransient
66 for (unsigned int i = 0; i < persCont->m_TGCid.size(); i++) {
67 Amg::Vector3D position(persCont->m_stX[i], persCont->m_stY[i], persCont->m_stZ[i]);
68 Amg::Vector3D localDireCos(persCont->m_enX[i], persCont->m_enY[i], persCont->m_enZ[i]);
69
71 hepMcPLCnv.persToTrans(&persCont->m_partLink[i],&link, log);
72
73 transCont->Emplace(persCont->m_TGCid[i], persCont->m_globalTime[i], position, localDireCos,
74 link, 0, 0);
75 }
76}
77
AtlasHitsVector< TGCSimHit > TGCSimHitCollection
CONT::const_iterator const_iterator
const_iterator begin() const
void Emplace(Args &&... args)
size_type size() const
const_iterator end() const
virtual void persToTrans(const HepMcParticleLink_p1 *persObj, HepMcParticleLink *transObj, MsgStream &msg) const override
Method creating the transient representation of HepMcParticleLink from its persistent representation ...
virtual void transToPers(const HepMcParticleLink *transObj, HepMcParticleLink_p1 *persObj, MsgStream &msg) const override
Method creating the persistent representation HepMcParticleLink_p1 from its transient representation ...
std::vector< float > m_stZ
Represents m_localPosition in transient class.
std::vector< HepMcParticleLink_p1 > m_partLink
std::vector< float > m_enZ
Represents m_localDireCos in transient class.
virtual void transToPers(const TGCSimHitCollection *transCont, Muon::TGCSimHitCollection_p1 *persCont, MsgStream &log)
virtual TGCSimHitCollection * createTransient(const Muon::TGCSimHitCollection_p1 *persObj, MsgStream &log)
virtual void persToTrans(const Muon::TGCSimHitCollection_p1 *persCont, TGCSimHitCollection *transCont, MsgStream &log)
Eigen::Matrix< double, 3, 1 > Vector3D