ATLAS Offline Software
Loading...
Searching...
No Matches
TrigL2BphysCnv_p2.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
8
10
11//-----------------------------------------------------------------------------
12// Persistent to transient
13//-----------------------------------------------------------------------------
15 TrigL2Bphys *transObj,
16 MsgStream &log )
17{
18 log << MSG::DEBUG << "TrigL2BphysCnv_p2::persToTrans called " << endmsg;
19
20
22 m_elementLinkL2BphysCnv.persToTrans(&persObj->m_secondaryDecay, &secondaryDecay, log);
23
24 *transObj = TrigL2Bphys (persObj->m_roiID,
25 persObj->m_eta,
26 persObj->m_phi,
27 static_cast<TrigL2Bphys::pType>(persObj->m_particleType),
28 persObj->m_mass,
29 secondaryDecay);
30
31 transObj->fitmass (persObj->m_fitmass) ;
32 transObj->fitchi2 (persObj->m_fitchi2) ;
33 transObj->fitndof (persObj->m_fitndof) ;
34 transObj->fitx (persObj->m_fitx) ;
35 transObj->fity (persObj->m_fity) ;
36 transObj->fitz (persObj->m_fitz) ;
37
39 trackELVCnv.persToTrans(&persObj->m_trackVector, &trackVector, log);
40 for (const ElementLink<TrigInDetTrackCollection> el : trackVector)
41 transObj->addTrack (el);
42}
43
44//-----------------------------------------------------------------------------
45// Transient to persistent
46//-----------------------------------------------------------------------------
48 TrigL2Bphys_p2 *persObj,
49 MsgStream &log )
50{
51 log << MSG::DEBUG << "TrigL2BphysCnv_p2::transToPers called " << endmsg;
52
53 persObj->m_roiID = transObj->roiId() ;
54 persObj->m_eta = transObj->eta() ;
55 persObj->m_phi = transObj->phi() ;
56 persObj->m_mass = transObj->mass() ;
57 persObj->m_fitmass = transObj->fitmass() ;
58 persObj->m_fitchi2 = transObj->fitchi2() ;
59 persObj->m_fitndof = transObj->fitndof() ;
60 persObj->m_fitx = transObj->fitx() ;
61 persObj->m_fity = transObj->fity() ;
62 persObj->m_fitz = transObj->fitz() ;
63
64 persObj->m_particleType = static_cast<TrigL2Bphys_p2::pType_p1>(transObj->particleType());
65
66
67
68 trackELVCnv.transToPers(&transObj->trackVector(), &persObj->m_trackVector, log);
69
70 m_elementLinkL2BphysCnv.transToPers(&transObj->secondaryDecayLink(), &persObj->m_secondaryDecay, log);
71}
#define endmsg
static const ElementLinkVectorCnv_p1< ElementLinkVector< Rec::TrackParticleContainer > > trackELVCnv
ElementLinkVector implementation for standalone ROOT.
ElementLinkCnv_p1< ElementLink< TrigL2BphysContainer > > m_elementLinkL2BphysCnv
virtual void persToTrans(const TrigL2Bphys_p2 *persObj, TrigL2Bphys *transObj, MsgStream &log)
virtual void transToPers(const TrigL2Bphys *transObj, TrigL2Bphys_p2 *persObj, MsgStream &log)
ElementLinkInt_p1 m_secondaryDecay
pType_p1 m_particleType
ElementLinkIntVector_p1 m_trackVector
float fity() const
accessor method: y position of vertex
Definition TrigL2Bphys.h:84
const ElementLink< TrigL2BphysContainer > & secondaryDecayLink() const
const ElementLinkVector< TrigInDetTrackCollection > & trackVector() const
accessor method:vector of tracks used to make particle
Definition TrigL2Bphys.h:93
float fitz() const
accessor method: z position of vertex
Definition TrigL2Bphys.h:86
void addTrack(const ElementLink< TrigInDetTrackCollection > &track)
set method: add track to particle
pType particleType() const
accessor method: particle Type
Definition TrigL2Bphys.h:68
float fitx() const
accessor method: x position of vertex
Definition TrigL2Bphys.h:82
float mass() const
accessor method: mass
Definition TrigL2Bphys.h:74
float phi() const
accessor method: phi
Definition TrigL2Bphys.h:72
float eta() const
accessor method: eta
Definition TrigL2Bphys.h:70
pType
enum for different particle types
Definition TrigL2Bphys.h:47
int roiId() const
accessor method: ID of L1 RoI
Definition TrigL2Bphys.h:66
int fitndof() const
accessor method: ndof from vertex fit
Definition TrigL2Bphys.h:80
float fitchi2() const
accessor method: chi2 from vertex fit
Definition TrigL2Bphys.h:78
float fitmass() const
accessor method: mass from vertex fit
Definition TrigL2Bphys.h:76