Skip to content
Snippets Groups Projects
Commit b191d068 authored by Vincent Pascuzzi's avatar Vincent Pascuzzi
Browse files

Add `copydoc` to getter functions

Former-commit-id: dc98f8586311a9ca9cdb99f1c82b1bac73276a8d
parent 6f297c41
No related branches found
No related tags found
No related merge requests found
...@@ -45,58 +45,76 @@ class CaloGeoDetDescrElement ...@@ -45,58 +45,76 @@ class CaloGeoDetDescrElement
virtual ~CaloGeoDetDescrElement() {}; virtual ~CaloGeoDetDescrElement() {};
/** @brief cell eta /** @brief cell eta
* @copydoc CaloGeoDetDescrElement::m_eta
*/ */
float eta() const; float eta() const;
/** @brief cell phi /** @brief cell phi
* @copydoc CaloGeoDetDescrElement::m_phi
*/ */
float phi() const; float phi() const;
/** @brief cell r /** @brief cell r
* @copydoc CaloGeoDetDescrElement::m_r
*/ */
float r() const; float r() const;
/** @brief cell eta_raw /** @brief cell eta_raw
* @copydoc CaloGeoDetDescrElement::m_eta_raw
*/ */
float eta_raw() const; float eta_raw() const;
/** @brief cell phi_raw /** @brief cell phi_raw
* @copydoc CaloGeoDetDescrElement::m_phi_raw
*/ */
float phi_raw() const; float phi_raw() const;
/** @brief cell r_raw /** @brief cell r_raw
* @copydoc CaloGeoDetDescrElement::m_r_raw
*/ */
float r_raw() const; float r_raw() const;
/** @brief cell dphi /** @brief cell dphi
* @copydoc CaloGeoDetDescrElement::m_dphi
*/ */
float dphi() const; float dphi() const;
/** @brief cell deta /** @brief cell deta
* @copydoc CaloGeoDetDescrElement::m_deta
*/ */
float deta() const; float deta() const;
/** @brief cell dr /** @brief cell dr
* @copydoc CaloGeoDetDescrElement::m_dr
*/ */
float dr() const; float dr() const;
/** @brief cell x /** @brief cell x
* @copydoc CaloGeoDetDescrElement::m_x
*/ */
float x() const; float x() const;
/** @brief cell y /** @brief cell y
* @copydoc CaloGeoDetDescrElement::m_y
*/ */
float y() const; float y() const;
/** @brief cell z /** @brief cell z
* @copydoc CaloGeoDetDescrElement::m_z
*/ */
float z() const; float z() const;
/** @brief cell x_raw /** @brief cell x_raw
* @copydoc CaloGeoDetDescrElement::m_x_raw
*/ */
float x_raw() const; float x_raw() const;
/** @brief cell y_raw /** @brief cell y_raw
* @copydoc CaloGeoDetDescrElement::m_y_raw
*/ */
float y_raw() const; float y_raw() const;
/** @brief cell z_raw /** @brief cell z_raw
* @copydoc CaloGeoDetDescrElement::m_z_raw
*/ */
float z_raw() const; float z_raw() const;
/** @brief cell dx /** @brief cell dx
* @copydoc CaloGeoDetDescrElement::m_dx
*/ */
float dx() const; float dx() const;
/** @brief cell dy /** @brief cell dy
* @copydoc CaloGeoDetDescrElement::m_dy
*/ */
float dy() const; float dy() const;
/** @brief cell dz /** @brief cell dz
* @copydoc CaloGeoDetDescrElement::m_dz
*/ */
float dz() const; float dz() 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