1 |
loizides |
1.1 |
//--------------------------------------------------------------------------------------------------
|
2 |
bendavid |
1.2 |
// $Id: AssociationMaps.h,v 1.1 2008/07/01 14:39:28 loizides 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 |
|
|
#ifndef TREEFILLER_ASSOCIATIONMAPS_H
|
12 |
|
|
#define TREEFILLER_ASSOCIATIONMAPS_H
|
13 |
|
|
|
14 |
|
|
#include "MitProd/TreeFiller/interface/AssociationMap.h"
|
15 |
|
|
#include "MitAna/DataTree/interface/Track.h"
|
16 |
|
|
#include "DataFormats/TrackReco/interface/Track.h"
|
17 |
|
|
#include "DataFormats/TrackReco/interface/TrackFwd.h"
|
18 |
|
|
#include "DataFormats/GsfTrackReco/interface/GsfTrack.h"
|
19 |
|
|
#include "DataFormats/GsfTrackReco/interface/GsfTrackFwd.h"
|
20 |
|
|
#include "MitAna/DataTree/interface/SimParticle.h"
|
21 |
|
|
#include "MitAna/DataTree/interface/Electron.h"
|
22 |
bendavid |
1.2 |
#include "MitAna/DataTree/interface/Conversion.h"
|
23 |
loizides |
1.1 |
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h"
|
24 |
|
|
#include "SimDataFormats/TrackingAnalysis/interface/TrackingParticleFwd.h"
|
25 |
bendavid |
1.2 |
#include "DataFormats/EgammaCandidates/interface/Conversion.h"
|
26 |
|
|
#include "DataFormats/EgammaCandidates/interface/ConversionFwd.h"
|
27 |
loizides |
1.1 |
|
28 |
|
|
namespace mithep
|
29 |
|
|
{
|
30 |
|
|
typedef AssociationMap<const reco::TrackRef, mithep::Track*> TrackMap;
|
31 |
|
|
typedef AssociationMap<const reco::GsfTrackRef, mithep::Track*> GsfTrackMap;
|
32 |
|
|
typedef AssociationMap<const TrackingParticleRef, mithep::SimParticle*> SimParticleMap;
|
33 |
|
|
typedef AssociationMap<const reco::TrackRef, mithep::Electron*> ConversionElectronMap;
|
34 |
bendavid |
1.2 |
typedef AssociationMap<const reco::ConversionRef, mithep::Conversion*> ConversionMap;
|
35 |
loizides |
1.1 |
}
|
36 |
|
|
#endif
|