File indexing completed on 2024-04-06 12:04:21
0001 #ifndef DataFormats_HLTReco_EgammaObjectFwd_h
0002 #define DataFormats_HLTReco_EgammaObjectFwd_h
0003
0004 #include <vector>
0005 #include "DataFormats/Common/interface/Ref.h"
0006 #include "DataFormats/Common/interface/RefVector.h"
0007 #include "DataFormats/Common/interface/RefProd.h"
0008
0009 namespace trigger {
0010 class EgammaObject;
0011
0012 typedef std::vector<EgammaObject> EgammaObjectCollection;
0013 typedef edm::Ref<EgammaObjectCollection> EgammaObjectRef;
0014 typedef edm::RefProd<EgammaObjectCollection> EgammaObjectRefProd;
0015 typedef edm::RefVector<EgammaObjectCollection> EgammaObjectRefVector;
0016 typedef EgammaObjectRefVector::iterator EgammaObjectIterator;
0017 }
0018
0019 #endif