Skip to content
Snippets Groups Projects
Commit 412b99cf authored by Vakho Tsulaia's avatar Vakho Tsulaia Committed by Vakhtang Tsulaia
Browse files

GeoPcon and GeoPgon: extended the interface to allow const access to memory...

GeoPcon and GeoPgon: extended the interface to allow const access to memory buffers of the member vectors

This change was implemented to simplify Geo2G4 translation. In particula, it should allow
passing the buffers held by GeoPcon and GeoPgon to the constructors of G4Polycone and
G4Polyhedra respectively (see the discussion on atlas/athena!74223)
parent 2db8efde
No related branches found
No related tags found
1 merge request!392GeoPcon and GeoPgon: extended the interface to allow const access to memory buffers of the member vectors
Pipeline #9857736 passed
......@@ -70,16 +70,31 @@ class GeoPcon : public GeoShape {
return m_zPlane[i];
}
// Get a pointer to the memory buffer with Z Positions
const double* getZPlaneBuff() const {
return m_zPlane.data();
}
// Get the RMin of the specified plane.
double getRMinPlane(unsigned int i) const {
return m_rMinPlane[i];
}
// Get a pointer to the memory buffer with RMin-s
const double* getRMinBuff() const {
return m_rMinPlane.data();
}
// Get the Z Position of the specified plane.
double getRMaxPlane(unsigned int i) const {
return m_rMaxPlane[i];
}
// Get a pointer to the memory buffer with RMax-s
const double* getRMaxBuff() const {
return m_rMaxPlane.data();
}
// Executes a GeoShapeAction
virtual void exec (GeoShapeAction *action) const;
......
......@@ -62,16 +62,31 @@ class GeoPgon : public GeoShape
return m_zPlane[i];
}
// Get a pointer to the memory buffer with Z Positions
const double* getZPlaneBuff() const {
return m_zPlane.data();
}
// Get the RMin of the specified plane.
double getRMinPlane (unsigned int i) const {
return m_rMinPlane[i];
}
// Get a pointer to the memory buffer with RMin-s
const double* getRMinBuff() const {
return m_rMinPlane.data();
}
// Get the Z Position of the specified plane.
double getRMaxPlane (unsigned int i) const {
return m_rMaxPlane[i];
}
// Get a pointer to the memory buffer with RMax-s
const double* getRMaxBuff() const {
return m_rMaxPlane.data();
}
// Executes a GeoShapeAction
virtual void exec (GeoShapeAction *action) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment