1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef EgammaCandidates_GsfElectronIsoCollection_h
#define EgammaCandidates_GsfElectronIsoCollection_h
#include "DataFormats/Common/interface/AssociationVector.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include <vector>
namespace reco {
typedef edm::AssociationVector<reco::GsfElectronRefProd, std::vector<double> > GsfElectronIsoCollection;
typedef GsfElectronIsoCollection::value_type GsfElectronIso;
typedef edm::Ref<GsfElectronIsoCollection> GsfElectronIsoCollectionRef;
typedef edm::RefProd<GsfElectronIsoCollection> GsfElectronIsoCollectionRefProd;
typedef edm::RefVector<GsfElectronIsoCollection> GsfElectronIsoCollectionRefVector;
} // namespace reco
#endif
|