Skip to content
Snippets Groups Projects
Commit de63366d authored by Christopher Rob Jones's avatar Christopher Rob Jones Committed by Christopher Rob Jones
Browse files

RichSIMDGeomPhoton: Add write accessors for CK angles

parent f83267f2
No related branches found
No related tags found
1 merge request!4371DecodedDataFromMCRichHits: Improvements to hit time handling
Pipeline #6742724 passed
......@@ -129,7 +129,18 @@ namespace Rich::SIMD::Future {
void setValidityMask( const MASK& valid ) noexcept { m_valid = valid; }
public:
// getters
// write access getters
/** Get accessor for the Cherenkov theta angle
* @return the current value of the Cherenkov theta angle */
[[nodiscard]] SIMDFP& CherenkovTheta() noexcept { return m_ckTheta; }
/** Get accessor for Cherenkov phi angle
* @return the current value of the Cherenkov phi angle */
[[nodiscard]] SIMDFP& CherenkovPhi() noexcept { return m_ckPhi; }
public:
// read access getters
/** Get accessor for the Cherenkov theta angle
* @return the current value of the Cherenkov theta angle */
......
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