Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/edm4eic/InclusiveKinematicsCollectionData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_InclusiveKinematics_CollectionData_H
0004 #define EDM4EIC_InclusiveKinematics_CollectionData_H
0005 
0006 // datamodel specific includes
0007 #include "edm4eic/InclusiveKinematicsData.h"
0008 #include "edm4eic/InclusiveKinematicsObj.h"
0009 #include "edm4eic/ReconstructedParticle.h"
0010 
0011 // schema evolution specific includes
0012 
0013 // podio specific includes
0014 #include "podio/CollectionBuffers.h"
0015 #include "podio/ICollectionProvider.h"
0016 
0017 #include <deque>
0018 #include <memory>
0019 
0020 namespace edm4eic {
0021 
0022 
0023 using InclusiveKinematicsObjPointerContainer = std::deque<InclusiveKinematicsObj*>;
0024 using InclusiveKinematicsDataContainer = std::vector<InclusiveKinematicsData>;
0025 
0026 
0027 /**
0028  * Class encapsulating everything related to storage of data that is needed by a
0029  * collection.
0030  */
0031 class InclusiveKinematicsCollectionData {
0032 public:
0033   /**
0034    * The Objs of this collection
0035    */
0036   InclusiveKinematicsObjPointerContainer entries{};
0037 
0038   /**
0039    * Default constructor setting up the necessary buffers
0040    */
0041   InclusiveKinematicsCollectionData();
0042 
0043   /**
0044    * Constructor from existing I/O buffers
0045    */
0046   InclusiveKinematicsCollectionData(podio::CollectionReadBuffers buffers, bool isSubsetColl);
0047 
0048   /**
0049    * Non copy-able, move-only class
0050    */
0051   InclusiveKinematicsCollectionData(const InclusiveKinematicsCollectionData&) = delete;
0052   InclusiveKinematicsCollectionData& operator=(const InclusiveKinematicsCollectionData&) = delete;
0053   InclusiveKinematicsCollectionData(InclusiveKinematicsCollectionData&& other) = default;
0054   InclusiveKinematicsCollectionData& operator=(InclusiveKinematicsCollectionData&& other) = default;
0055 
0056   /**
0057    * Deconstructor
0058    */
0059   ~InclusiveKinematicsCollectionData() = default;
0060 
0061   void clear(bool isSubsetColl);
0062 
0063   podio::CollectionWriteBuffers getCollectionBuffers(bool isSubsetColl);
0064 
0065   void prepareForWrite(bool isSubsetColl);
0066 
0067   void prepareAfterRead(uint32_t collectionID);
0068 
0069   void makeSubsetCollection();
0070 
0071 
0072   bool setReferences(const podio::ICollectionProvider* collectionProvider, bool isSubsetColl);
0073 
0074 private:
0075   // members to handle 1-to-N-relations
0076   podio::UVecPtr<edm4eic::ReconstructedParticle> m_rel_scat{nullptr}; ///< Relation buffer for read / write
0077 
0078   // members to handle vector members
0079 
0080   // I/O related buffers
0081   podio::CollRefCollection m_refCollections{};
0082   podio::VectorMembersInfo m_vecmem_info{};
0083   std::unique_ptr<InclusiveKinematicsDataContainer> m_data{nullptr};
0084 };
0085 
0086 
0087 } // namespace edm4eic
0088 
0089 
0090 #endif