13 |
|
|
14 |
|
#include "MitProd/TreeFiller/interface/AssociationMap.h" |
15 |
|
#include "MitAna/DataTree/interface/Track.h" |
16 |
+ |
#include "MitAna/DataTree/interface/BasicCluster.h" |
17 |
+ |
#include "MitAna/DataTree/interface/CaloTower.h" |
18 |
|
#include "MitAna/DataTree/interface/Types.h" |
19 |
|
#include "DataFormats/TrackReco/interface/Track.h" |
20 |
|
#include "DataFormats/TrackReco/interface/TrackFwd.h" |
21 |
+ |
#include "DataFormats/EgammaReco/interface/BasicClusterFwd.h" |
22 |
+ |
#include "DataFormats/EgammaReco/interface/BasicCluster.h" |
23 |
+ |
#include "DataFormats/EgammaReco/interface/SuperClusterFwd.h" |
24 |
+ |
#include "DataFormats/EgammaReco/interface/SuperCluster.h" |
25 |
|
#include "DataFormats/GsfTrackReco/interface/GsfTrack.h" |
26 |
|
#include "DataFormats/GsfTrackReco/interface/GsfTrackFwd.h" |
27 |
+ |
#include "DataFormats/CaloTowers/interface/CaloTowerDetId.h" |
28 |
|
#include "MitAna/DataTree/interface/MCParticle.h" |
29 |
|
#include "MitAna/DataTree/interface/Electron.h" |
30 |
|
#include "MitAna/DataTree/interface/Conversion.h" |
31 |
+ |
#include "SimDataFormats/Track/interface/SimTrack.h" |
32 |
+ |
#include "SimDataFormats/Track/interface/SimTrackContainer.h" |
33 |
|
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h" |
34 |
|
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticleFwd.h" |
35 |
|
#include "DataFormats/EgammaCandidates/interface/Conversion.h" |
40 |
|
{ |
41 |
|
typedef std::pair<int,int> PairIntKey; |
42 |
|
|
43 |
< |
typedef AssociationMap<const reco::TrackRef, mithep::Track*> TrackMap; |
44 |
< |
typedef AssociationMap<const reco::GsfTrackRef, mithep::Track*> GsfTrackMap; |
45 |
< |
typedef AssociationMap<const Int_t, mithep::MCParticle*> GenParticleMap; |
46 |
< |
typedef AssociationMap<const TrackingParticleRef, mithep::MCParticle*> SimParticleMap; |
47 |
< |
typedef AssociationMap<const reco::TrackRef, mithep::Electron*> ConversionElectronMap; |
48 |
< |
typedef AssociationMap<const reco::ConversionRef, mithep::Conversion*> ConversionMap; |
49 |
< |
typedef AssociationMap<const PairIntKey, mithep::Particle*> BasePartMap; |
43 |
> |
typedef AssociationMap<const reco::TrackRef, mithep::Track*> TrackMap; |
44 |
> |
typedef AssociationMap<const reco::GsfTrackRef, mithep::Track*> GsfTrackMap; |
45 |
> |
typedef AssociationMap<const reco::BasicClusterRef, mithep::BasicCluster*> BasicClusterMap; |
46 |
> |
typedef AssociationMap<const reco::SuperClusterRef, mithep::SuperCluster*> SuperClusterMap; |
47 |
> |
typedef AssociationMap<const Int_t, mithep::MCParticle*> GenParticleMap; |
48 |
> |
typedef AssociationMap<const SimTrackRef, mithep::MCParticle*> SimTrackMap; |
49 |
> |
typedef AssociationMap<const TrackingParticleRef, mithep::MCParticle*> TrackingParticleMap; |
50 |
> |
typedef AssociationMap<const reco::TrackRef, mithep::Electron*> ConversionElectronMap; |
51 |
> |
typedef AssociationMap<const reco::ConversionRef, mithep::Conversion*> ConversionMap; |
52 |
> |
typedef AssociationMap<const PairIntKey, mithep::Particle*> BasePartMap; |
53 |
> |
typedef AssociationMap<const CaloTowerDetId, mithep::CaloTower*> CaloTowerMap; |
54 |
|
} |
55 |
|
#endif |