From b191d068bb89fd5cbb4f0828f1c443be63a8f76c Mon Sep 17 00:00:00 2001 From: Vincent Pascuzzi <Vincent.Pascuzzi@cern.ch> Date: Sat, 17 Jun 2017 01:06:31 +0200 Subject: [PATCH] Add `copydoc` to getter functions Former-commit-id: dc98f8586311a9ca9cdb99f1c82b1bac73276a8d --- .../CaloDetDescrElement.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimParametrization/ISF_FastCaloSimParametrization/CaloDetDescrElement.h b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimParametrization/ISF_FastCaloSimParametrization/CaloDetDescrElement.h index 056b0ddb1cc..4a4ecf6b2f1 100755 --- a/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimParametrization/ISF_FastCaloSimParametrization/CaloDetDescrElement.h +++ b/Simulation/ISF/ISF_FastCaloSim/ISF_FastCaloSimParametrization/ISF_FastCaloSimParametrization/CaloDetDescrElement.h @@ -45,58 +45,76 @@ class CaloGeoDetDescrElement virtual ~CaloGeoDetDescrElement() {}; /** @brief cell eta + * @copydoc CaloGeoDetDescrElement::m_eta */ float eta() const; /** @brief cell phi + * @copydoc CaloGeoDetDescrElement::m_phi */ float phi() const; /** @brief cell r + * @copydoc CaloGeoDetDescrElement::m_r */ float r() const; /** @brief cell eta_raw + * @copydoc CaloGeoDetDescrElement::m_eta_raw */ float eta_raw() const; /** @brief cell phi_raw + * @copydoc CaloGeoDetDescrElement::m_phi_raw */ float phi_raw() const; /** @brief cell r_raw + * @copydoc CaloGeoDetDescrElement::m_r_raw */ float r_raw() const; /** @brief cell dphi + * @copydoc CaloGeoDetDescrElement::m_dphi */ float dphi() const; /** @brief cell deta + * @copydoc CaloGeoDetDescrElement::m_deta */ float deta() const; /** @brief cell dr + * @copydoc CaloGeoDetDescrElement::m_dr */ float dr() const; /** @brief cell x + * @copydoc CaloGeoDetDescrElement::m_x */ float x() const; /** @brief cell y + * @copydoc CaloGeoDetDescrElement::m_y */ float y() const; /** @brief cell z + * @copydoc CaloGeoDetDescrElement::m_z */ float z() const; /** @brief cell x_raw + * @copydoc CaloGeoDetDescrElement::m_x_raw */ float x_raw() const; /** @brief cell y_raw + * @copydoc CaloGeoDetDescrElement::m_y_raw */ float y_raw() const; /** @brief cell z_raw + * @copydoc CaloGeoDetDescrElement::m_z_raw */ float z_raw() const; /** @brief cell dx + * @copydoc CaloGeoDetDescrElement::m_dx */ float dx() const; /** @brief cell dy + * @copydoc CaloGeoDetDescrElement::m_dy */ float dy() const; /** @brief cell dz + * @copydoc CaloGeoDetDescrElement::m_dz */ float dz() const; -- GitLab