Warning, file /include/edm4eic/MutablePMTHit.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef EDM4EIC_MutablePMTHit_H
0004 #define EDM4EIC_MutablePMTHit_H
0005
0006 #include "edm4eic/PMTHitObj.h"
0007
0008 #include "edm4eic/PMTHit.h"
0009
0010 #include "edm4hep/Vector3f.h"
0011 #include <cstdint>
0012
0013 #include "podio/utilities/MaybeSharedPtr.h"
0014
0015 #include <cstdint>
0016
0017 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0018 #include "nlohmann/json_fwd.hpp"
0019 #endif
0020
0021
0022 namespace edm4eic {
0023 class PMTHitCollection;
0024 }
0025
0026
0027 namespace edm4eic {
0028
0029
0030
0031
0032
0033
0034 class MutablePMTHit {
0035
0036 friend class PMTHitCollection;
0037 friend class PMTHitMutableCollectionIterator;
0038 friend class PMTHit;
0039
0040 public:
0041 using object_type = PMTHit;
0042 using collection_type = PMTHitCollection;
0043
0044
0045 MutablePMTHit();
0046
0047
0048 MutablePMTHit(std::uint64_t cellID, float npe, float time, float timeError, edm4hep::Vector3f position, edm4hep::Vector3f dimension, std::int32_t sector, edm4hep::Vector3f local);
0049
0050
0051 MutablePMTHit(const MutablePMTHit& other) = default;
0052
0053
0054 MutablePMTHit& operator=(MutablePMTHit other);
0055
0056
0057
0058 MutablePMTHit clone(bool cloneRelations=true) const;
0059
0060
0061 ~MutablePMTHit() = default;
0062
0063
0064 public:
0065
0066
0067 std::uint64_t getCellID() const;
0068
0069
0070 float getNpe() const;
0071
0072
0073 float getTime() const;
0074
0075
0076 float getTimeError() const;
0077
0078
0079 const edm4hep::Vector3f& getPosition() const;
0080
0081
0082 const edm4hep::Vector3f& getDimension() const;
0083
0084
0085 std::int32_t getSector() const;
0086
0087
0088 const edm4hep::Vector3f& getLocal() const;
0089
0090
0091
0092
0093 void setCellID(std::uint64_t value);
0094
0095 std::uint64_t& getCellID();
0096
0097 [[deprecated("use getCellID instead")]]
0098 std::uint64_t& cellID();
0099
0100
0101 void setNpe(float value);
0102
0103 float& getNpe();
0104
0105 [[deprecated("use getNpe instead")]]
0106 float& npe();
0107
0108
0109 void setTime(float value);
0110
0111 float& getTime();
0112
0113 [[deprecated("use getTime instead")]]
0114 float& time();
0115
0116
0117 void setTimeError(float value);
0118
0119 float& getTimeError();
0120
0121 [[deprecated("use getTimeError instead")]]
0122 float& timeError();
0123
0124
0125 void setPosition(edm4hep::Vector3f value);
0126
0127 edm4hep::Vector3f& getPosition();
0128
0129 [[deprecated("use getPosition instead")]]
0130 edm4hep::Vector3f& position();
0131
0132
0133 void setDimension(edm4hep::Vector3f value);
0134
0135 edm4hep::Vector3f& getDimension();
0136
0137 [[deprecated("use getDimension instead")]]
0138 edm4hep::Vector3f& dimension();
0139
0140
0141 void setSector(std::int32_t value);
0142
0143 std::int32_t& getSector();
0144
0145 [[deprecated("use getSector instead")]]
0146 std::int32_t& sector();
0147
0148
0149 void setLocal(edm4hep::Vector3f value);
0150
0151 edm4hep::Vector3f& getLocal();
0152
0153 [[deprecated("use getLocal instead")]]
0154 edm4hep::Vector3f& local();
0155
0156
0157
0158
0159
0160
0161
0162 bool isAvailable() const;
0163
0164 void unlink() { m_obj = podio::utils::MaybeSharedPtr<PMTHitObj>{nullptr}; }
0165
0166 bool operator==(const MutablePMTHit& other) const { return m_obj == other.m_obj; }
0167 bool operator==(const PMTHit& other) const;
0168
0169 bool operator!=(const MutablePMTHit& other) const { return !(*this == other); }
0170 bool operator!=(const PMTHit& other) const { return !(*this == other); }
0171
0172
0173 bool operator<(const MutablePMTHit& other) const { return podio::detail::getOrderKey(*this) < podio::detail::getOrderKey(other); }
0174
0175 podio::ObjectID id() const { return getObjectID(); }
0176
0177 const podio::ObjectID getObjectID() const;
0178
0179 friend void swap(MutablePMTHit& a, MutablePMTHit& b) {
0180 using std::swap;
0181 swap(a.m_obj, b.m_obj);
0182 }
0183
0184 private:
0185
0186 explicit MutablePMTHit(podio::utils::MaybeSharedPtr<PMTHitObj> obj);
0187
0188 podio::utils::MaybeSharedPtr<PMTHitObj> m_obj{nullptr};
0189 };
0190
0191 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0192 void to_json(nlohmann::json& j, const MutablePMTHit& value);
0193 #endif
0194
0195
0196 }
0197
0198
0199 #endif