ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitProd/TreeFiller/interface/AssociationMaps.h
Revision: 1.22
Committed: Fri Jul 17 08:55:56 2009 UTC (15 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_012i, Mit_012h, Mit_012g, Mit_012f, Mit_012e, Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010
Changes since 1.21: +32 -30 lines
Log Message:
Added forwards for MitAna/DataTree objects.

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: AssociationMaps.h,v 1.21 2009/06/18 22:58:48 bendavid Exp $
3 //
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 MITPROD_TREEFILLER_ASSOCIATIONMAPS_H
12 #define MITPROD_TREEFILLER_ASSOCIATIONMAPS_H
13
14 #include "DataFormats/CaloRecHit/interface/CaloCluster.h"
15 #include "DataFormats/CaloRecHit/interface/CaloClusterFwd.h"
16 #include "DataFormats/CaloTowers/interface/CaloTowerDetId.h"
17 #include "DataFormats/EgammaCandidates/interface/Conversion.h"
18 #include "DataFormats/EgammaCandidates/interface/ConversionFwd.h"
19 #include "DataFormats/EgammaReco/interface/SuperCluster.h"
20 #include "DataFormats/EgammaReco/interface/SuperClusterFwd.h"
21 #include "DataFormats/HepMCCandidate/interface/GenParticle.h"
22 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
23 #include "DataFormats/JetReco/interface/PFJetCollection.h"
24 #include "DataFormats/MuonReco/interface/Muon.h"
25 #include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h"
26 #include "DataFormats/TrackReco/interface/Track.h"
27 #include "DataFormats/TrackReco/interface/TrackFwd.h"
28 #include "DataFormats/VertexReco/interface/Vertex.h"
29 #include "DataFormats/VertexReco/interface/VertexFwd.h"
30 #include "SimDataFormats/Track/interface/SimTrack.h"
31 #include "SimDataFormats/Track/interface/SimTrackContainer.h"
32 #include "SimDataFormats/TrackingAnalysis/interface/TrackingParticle.h"
33 #include "SimDataFormats/TrackingAnalysis/interface/TrackingParticleFwd.h"
34 #include "MitProd/TreeFiller/interface/AssociationMap.h"
35 #include "MitEdm/DataFormats/interface/Types.h"
36 #include "MitEdm/DataFormats/interface/BasePartFwd.h"
37
38 #include "MitAna/DataTree/interface/TrackFwd.h"
39 #include "MitAna/DataTree/interface/BasicClusterFwd.h"
40 #include "MitAna/DataTree/interface/SuperClusterFwd.h"
41 #include "MitAna/DataTree/interface/MCParticleFwd.h"
42 #include "MitAna/DataTree/interface/CaloTowerFwd.h"
43 #include "MitAna/DataTree/interface/ElectronFwd.h"
44 #include "MitAna/DataTree/interface/MuonFwd.h"
45 #include "MitAna/DataTree/interface/ConversionFwd.h"
46 #include "MitAna/DataTree/interface/ParticleFwd.h"
47 #include "MitAna/DataTree/interface/VertexFwd.h"
48 #include "MitAna/DataTree/interface/PFCandidateFwd.h"
49 #include "MitAna/DataTree/interface/CaloJetFwd.h"
50 #include "MitAna/DataTree/interface/PFJetFwd.h"
51
52 namespace mithep
53 {
54 typedef std::pair<int,int> PairIntKey;
55
56 typedef AssociationMap<const mitedm::TrackPtr, mithep::Track*> TrackMap;
57 typedef AssociationMap<const reco::CaloClusterPtr, mithep::BasicCluster*> BasicClusterMap;
58 typedef AssociationMap<const reco::SuperClusterRef, mithep::SuperCluster*> SuperClusterMap;
59 typedef AssociationMap<const edm::Ptr<reco::GenParticle>, mithep::MCParticle*> AODGenParticleMap;
60 typedef AssociationMap<const int, mithep::MCParticle*> GenParticleBarcodeMap;
61 typedef AssociationMap<const SimTrackRef, mithep::MCParticle*> SimTrackMap;
62 typedef AssociationMap<const unsigned int, mithep::MCParticle*> SimTrackTidMap;
63 typedef AssociationMap<const TrackingParticleRef, mithep::MCParticle*> TrackingParticleMap;
64 typedef AssociationMap<const edm::Ptr<reco::Track>, mithep::Electron*> ConversionElectronMap;
65 typedef AssociationMap<const reco::ConversionRef, mithep::Conversion*> ConversionMap;
66 typedef AssociationMap<const mitedm::BasePartPtr, mithep::Particle*> BasePartMap;
67 typedef AssociationMap<const edm::Ptr<reco::Track>, mithep::Particle*> TrackPartMap;
68 typedef AssociationMap<const CaloTowerDetId, mithep::CaloTower*> CaloTowerMap;
69 typedef AssociationMap<const mitedm::VertexPtr, mithep::Vertex*> VertexMap;
70 typedef AssociationMap<const DetId, mithep::SuperCluster*> SuperClusterIdMap;
71 typedef AssociationMap<const edm::Ptr<reco::Muon>, mithep::Muon*> MuonMap;
72 typedef AssociationMap<const reco::PFCandidatePtr, mithep::PFCandidate*> PFCandidateMap;
73 typedef AssociationMap<const edm::Ptr<reco::CaloJet>, mithep::CaloJet*> CaloJetMap;
74 typedef AssociationMap<const edm::Ptr<reco::PFJet>, mithep::PFJet*> PFJetMap;
75 }
76 #endif