1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
loizides |
1.11 |
// $Id: AssociationMaps.h,v 1.10 2008/09/08 20:12:26 bendavid Exp $
|
3 |
loizides |
1.1 |
//
|
4 |
|
|
// AssociationMaps
|
5 |
|
|
//
|
6 |
|
|
// This header file defines the standard types for the AssociationMaps we want to use.
|
7 |
|
|
//
|
8 |
|
|
// Authors: J.Bendavid
|
9 |
|
|
//--------------------------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
loizides |
1.11 |
#ifndef MITPROD_TREEFILLER_ASSOCIATIONMAPS_H
|
12 |
|
|
#define MITPROD_TREEFILLER_ASSOCIATIONMAPS_H
|
13 |
loizides |
1.1 |
|
14 |
|
|
#include "MitProd/TreeFiller/interface/AssociationMap.h"
|
15 |
|
|
#include "MitAna/DataTree/interface/Track.h"
|
16 |
sixie |
1.8 |
#include "MitAna/DataTree/interface/BasicCluster.h"
|
17 |
bendavid |
1.10 |
#include "MitAna/DataTree/interface/CaloTower.h"
|
18 |
bendavid |
1.6 |
#include "MitAna/DataTree/interface/Types.h"
|
19 |
loizides |
1.1 |
#include "DataFormats/TrackReco/interface/Track.h"
|
20 |
|
|
#include "DataFormats/TrackReco/interface/TrackFwd.h"
|
21 |
sixie |
1.8 |
#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 |
loizides |
1.1 |
#include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
|
26 |
|
|
#include "DataFormats/GsfTrackReco/interface/GsfTrackFwd.h"
|
27 |
bendavid |
1.10 |
#include "DataFormats/CaloTowers/interface/CaloTowerDetId.h"
|
28 |
bendavid |
1.5 |
#include "MitAna/DataTree/interface/MCParticle.h"
|
29 |
loizides |
1.1 |
#include "MitAna/DataTree/interface/Electron.h"
|
30 |
bendavid |
1.2 |
#include "MitAna/DataTree/interface/Conversion.h"
|
31 |
bendavid |
1.9 |
#include "SimDataFormats/Track/interface/SimTrack.h"
|
32 |
|
|
#include "SimDataFormats/Track/interface/SimTrackContainer.h"
|
33 |
loizides |
1.1 |
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h"
|
34 |
|
|
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticleFwd.h"
|
35 |
bendavid |
1.2 |
#include "DataFormats/EgammaCandidates/interface/Conversion.h"
|
36 |
|
|
#include "DataFormats/EgammaCandidates/interface/ConversionFwd.h"
|
37 |
bendavid |
1.6 |
#include "MitEdm/DataFormats/interface/BasePartFwd.h"
|
38 |
loizides |
1.1 |
|
39 |
loizides |
1.11 |
namespace mithep
|
40 |
loizides |
1.1 |
{
|
41 |
loizides |
1.7 |
typedef std::pair<int,int> PairIntKey;
|
42 |
|
|
|
43 |
sixie |
1.8 |
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 |
bendavid |
1.9 |
typedef AssociationMap<const SimTrackRef, mithep::MCParticle*> SimTrackMap;
|
49 |
|
|
typedef AssociationMap<const TrackingParticleRef, mithep::MCParticle*> TrackingParticleMap;
|
50 |
sixie |
1.8 |
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 |
bendavid |
1.10 |
typedef AssociationMap<const CaloTowerDetId, mithep::CaloTower*> CaloTowerMap;
|
54 |
loizides |
1.1 |
}
|
55 |
|
|
#endif
|