diff --git a/include/podio/EventStore.h b/include/podio/EventStore.h index 8206ef900..fdd71a1e4 100755 --- a/include/podio/EventStore.h +++ b/include/podio/EventStore.h @@ -35,7 +35,9 @@ namespace podio { typedef std::map ColMDMap; class EventStore : public ICollectionProvider, public IMetaDataProvider { - + /// Make non-copyable + EventStore( const EventStore & ) = delete; + EventStore& operator=( const EventStore & ) = delete; public: /// Collection entry. Each collection is identified by a name typedef std::pair CollPair;