Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-15 08:55:53

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_TrackSeed_H
0004 #define EDM4EIC_TrackSeed_H
0005 
0006 #include "edm4eic/TrackSeedObj.h"
0007 
0008 #include "edm4eic/TrackerHit.h"
0009 #include "edm4hep/Vector3f.h"
0010 #include "podio/RelationRange.h"
0011 #include <vector>
0012 
0013 #include "podio/utilities/MaybeSharedPtr.h"
0014 #include "podio/detail/OrderKey.h"
0015 
0016 #include <ostream>
0017 #include <cstdint>
0018 
0019 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0020 #include "nlohmann/json_fwd.hpp"
0021 #endif
0022 
0023 // forward declarations
0024 namespace edm4eic {
0025 class TrackSeedCollection;
0026 class TrackParameters;
0027 class MutableTrackParameters;
0028 }
0029 
0030 
0031 namespace podio::detail {
0032 // Internal function used in less comparison operators of the datatypes and interface types
0033 OrderKey getOrderKey(const edm4eic::TrackSeed& obj);
0034 };
0035 
0036 namespace edm4eic {
0037 
0038 class MutableTrackSeed;
0039 class TrackSeedCollection;
0040 class TrackSeedCollectionData;
0041 
0042 /** @class TrackSeed
0043  *  Seed info from the realistic seed finder
0044  *  @author: S. Li, B. Schmookler, J. Osborn
0045  */
0046 class TrackSeed {
0047 
0048   friend class MutableTrackSeed;
0049   friend class TrackSeedCollection;
0050   friend class edm4eic::TrackSeedCollectionData;
0051   friend class TrackSeedCollectionIterator;
0052   friend podio::detail::OrderKey podio::detail::getOrderKey(const TrackSeed & obj);
0053 
0054 public:
0055   using mutable_type = MutableTrackSeed;
0056   using collection_type = TrackSeedCollection;
0057 
0058   /// default constructor
0059   TrackSeed();
0060 
0061   /// Constructor initializing all members
0062   TrackSeed(const edm4hep::Vector3f& perigee);
0063 
0064   /// copy constructor
0065   TrackSeed(const TrackSeed& other) = default;
0066 
0067   /// copy-assignment operator
0068   TrackSeed& operator=(TrackSeed other) &; // Rebind this to other's internal object
0069   TrackSeed& operator=(TrackSeed other) && = delete; // Prevent rebinding temporary as the changes wouldn't persist
0070 
0071   /// create a mutable deep-copy of the object with identical relations
0072   /// if cloneRelations=false, the relations are not cloned and will be empty
0073   MutableTrackSeed clone(bool cloneRelations=true) const;
0074 
0075   /// destructor
0076   ~TrackSeed() = default;
0077 
0078   /// converting constructor from mutable object
0079   TrackSeed(const MutableTrackSeed& other);
0080 
0081   static TrackSeed makeEmpty();
0082 
0083 public:
0084 
0085   static constexpr std::string_view typeName = "edm4eic::TrackSeed";
0086 
0087   /// Access the Vector for the perigee (line surface)
0088   const edm4hep::Vector3f& getPerigee() const;
0089 
0090 
0091   /// Access the Initial track parameters
0092   const edm4eic::TrackParameters getParams() const;
0093 
0094   std::size_t hits_size() const;
0095   edm4eic::TrackerHit getHits(std::size_t) const;
0096   std::vector<edm4eic::TrackerHit>::const_iterator hits_begin() const;
0097   std::vector<edm4eic::TrackerHit>::const_iterator hits_end() const;
0098   podio::RelationRange<edm4eic::TrackerHit> getHits() const;
0099 
0100 
0101   /// check whether the object is actually available
0102   bool isAvailable() const;
0103   /// disconnect from TrackSeedObj instance
0104   void unlink() { m_obj = podio::utils::MaybeSharedPtr<TrackSeedObj>{nullptr}; }
0105 
0106   bool operator==(const TrackSeed& other) const { return m_obj == other.m_obj; }
0107   bool operator==(const MutableTrackSeed& other) const;
0108 
0109   bool operator!=(const TrackSeed& other) const { return !(*this == other); }
0110   bool operator!=(const MutableTrackSeed& other) const { return !(*this == other); }
0111 
0112   // less comparison operator, so that objects can be e.g. stored in sets.
0113   bool operator<(const TrackSeed& other) const { return podio::detail::getOrderKey(*this) < podio::detail::getOrderKey(other); }
0114 
0115   podio::ObjectID id() const { return getObjectID(); }
0116 
0117   const podio::ObjectID getObjectID() const;
0118 
0119   friend std::hash<TrackSeed>;
0120 
0121   friend void swap(TrackSeed& a, TrackSeed& b) {
0122     using std::swap;
0123     swap(a.m_obj, b.m_obj); // swap out the internal pointers
0124   }
0125 
0126 private:
0127   /// constructor from existing TrackSeedObj
0128   explicit TrackSeed(podio::utils::MaybeSharedPtr<TrackSeedObj> obj);
0129   TrackSeed(TrackSeedObj* obj);
0130 
0131   podio::utils::MaybeSharedPtr<TrackSeedObj> m_obj{nullptr};
0132 };
0133 
0134 std::ostream& operator<<(std::ostream& o, const TrackSeed& value);
0135 
0136 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0137 void to_json(nlohmann::json& j, const TrackSeed& value);
0138 #endif
0139 
0140 
0141 } // namespace edm4eic
0142 
0143 
0144 
0145 template<>
0146 struct std::hash<edm4eic::TrackSeed> {
0147   std::size_t operator()(const edm4eic::TrackSeed& obj) const {
0148     return std::hash<edm4eic::TrackSeedObj*>{}(obj.m_obj.get());
0149   }
0150 };
0151 
0152 
0153 // This is needed to avoid triggering opening every library in LD_LIBRARY_PATH
0154 // until it's fixed in ROOT. See https://github.com/root-project/root/issues/18489
0155 // and https://github.com/AIDASoft/podio/issues/770
0156 #if defined(__clang__)
0157 #pragma clang diagnostic push
0158 #pragma clang diagnostic ignored "-Wunknown-warning-option"
0159 #pragma clang diagnostic ignored "-Wdeprecated-redundant-constexpr-static-def"
0160 #pragma clang diagnostic ignored "-Wdeprecated"
0161 constexpr std::string_view edm4eic::TrackSeed::typeName;
0162 #pragma clang diagnostic pop
0163 #elif defined(__GNUC__)
0164 #pragma GCC diagnostic push
0165 #pragma GCC diagnostic ignored "-Wdeprecated"
0166 constexpr std::string_view edm4eic::TrackSeed::typeName;
0167 #pragma GCC diagnostic pop
0168 #endif
0169 
0170 #endif