Skip to content

Commit

Permalink
Updates in preparation for pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
Erich Varnes committed Jun 25, 2024
1 parent a8694d8 commit cc63583
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ class FCCSWEndcapTurbine_k4geo : public Segmentation {
* return The offset in phi.
*/
inline double offsetPhi() const { return m_offsetPhi; }
/** Get the coordinate offset in theta angle.
* return The offset in theta.
*/
inline double offsetTheta() const { return m_offsetTheta; }
/** Get the field name for azimuthal angle.
* return The field name for phi.
*/
Expand All @@ -57,6 +61,10 @@ class FCCSWEndcapTurbine_k4geo : public Segmentation {
* @param[in] aOffset Offset in phi.
*/
inline void setOffsetPhi(double offset) { m_offsetPhi = offset; }
/** Set the coordinate offset in theta angle.
* @param[in] aOffset Offset in theta.
*/
inline void setOffsetTheta(double offset) { m_offsetTheta = offset; }
/** Set the field name used for phi.
* @param[in] aFieldName Field name for phi.
*/
Expand Down Expand Up @@ -132,7 +140,8 @@ class FCCSWEndcapTurbine_k4geo : public Segmentation {
int m_phiBins;
/// the coordinate offset in phi
double m_offsetPhi;
/// the field name used for phi
/// the coordinate offset in theta
double m_offsetTheta; /// the field name used for phi
std::string m_phiID;
/// the number of bins in rho
int m_rhoBins;
Expand Down

0 comments on commit cc63583

Please sign in to comment.