1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef EgammaCandidates_GsfElectronIsoNumCollection_h
#define EgammaCandidates_GsfElectronIsoNumCollection_h
#include "DataFormats/Common/interface/AssociationVector.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include <vector>
namespace reco {
typedef edm::AssociationVector<reco::GsfElectronRefProd, std::vector<int> > GsfElectronIsoNumCollection;
typedef GsfElectronIsoNumCollection::value_type GsfElectronIsoNum;
typedef edm::Ref<GsfElectronIsoNumCollection> GsfElectronIsoNumCollectionRef;
typedef edm::RefProd<GsfElectronIsoNumCollection> GsfElectronIsoNumCollectionRefProd;
typedef edm::RefVector<GsfElectronIsoNumCollection> GsfElectronIsoNumCollectionRefVector;
} // namespace reco
#endif
|