File indexing completed on 2024-04-06 12:05:18
0001 #ifndef DataFormats_TestObjects_OtherThing_h
0002 #define DataFormats_TestObjects_OtherThing_h
0003
0004 #include "DataFormats/Common/interface/Ref.h"
0005 #include "DataFormats/Common/interface/RefVector.h"
0006 #include "DataFormats/Common/interface/RefProd.h"
0007 #include "DataFormats/Common/interface/RefToBaseProd.h"
0008 #include "DataFormats/Common/interface/RefToBase.h"
0009 #include "DataFormats/Common/interface/Ptr.h"
0010 #include "DataFormats/Common/interface/PtrVector.h"
0011 #include "DataFormats/TestObjects/interface/ThingCollectionfwd.h"
0012 #include "DataFormats/TestObjects/interface/Thing.h"
0013 #include "FWCore/Utilities/interface/typedefs.h"
0014
0015 namespace edmtest {
0016
0017 struct OtherThing {
0018 cms_int32_t a;
0019 edm::RefProd<ThingCollection> refProd;
0020 edm::Ref<ThingCollection> ref;
0021 edm::RefVector<ThingCollection> refVec;
0022 edm::RefVector<ThingCollection> oneNullOneNot;
0023 edm::RefToBase<Thing> refToBase;
0024 edm::RefToBaseProd<Thing> refToBaseProd;
0025 edm::Ptr<Thing> ptr;
0026 edm::PtrVector<Thing> ptrVec;
0027 edm::PtrVector<Thing> ptrOneNullOneNot;
0028 };
0029 }
0030
0031 #endif