OtherThing

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#ifndef DataFormats_TestObjects_OtherThing_h
#define DataFormats_TestObjects_OtherThing_h

#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
#include "DataFormats/Common/interface/RefProd.h"
#include "DataFormats/Common/interface/RefToBaseProd.h"
#include "DataFormats/Common/interface/RefToBase.h"
#include "DataFormats/Common/interface/Ptr.h"
#include "DataFormats/Common/interface/PtrVector.h"
#include "DataFormats/TestObjects/interface/ThingCollectionfwd.h"
#include "DataFormats/TestObjects/interface/Thing.h"
#include "FWCore/Utilities/interface/typedefs.h"

namespace edmtest {

  struct OtherThing {
    cms_int32_t a;
    edm::RefProd<ThingCollection> refProd;
    edm::Ref<ThingCollection> ref;
    edm::RefVector<ThingCollection> refVec;
    edm::RefVector<ThingCollection> oneNullOneNot;
    edm::RefToBase<Thing> refToBase;
    edm::RefToBaseProd<Thing> refToBaseProd;
    edm::Ptr<Thing> ptr;
    edm::PtrVector<Thing> ptrVec;
    edm::PtrVector<Thing> ptrOneNullOneNot;
  };
}  // namespace edmtest

#endif