Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:47

0001 #ifndef BTauReco_JetEisolAssociation_h
0002 #define BTauReco_JetEisolAssociation_h
0003 // \class JetEisolAssociation
0004 //
0005 // \short association of tracks to jet (was JetWithEisol)
0006 //
0007 //
0008 
0009 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
0010 #include "DataFormats/Common/interface/Ref.h"
0011 #include "DataFormats/Common/interface/FwdRef.h"
0012 #include "DataFormats/Common/interface/RefVector.h"
0013 #include <vector>
0014 
0015 namespace reco {
0016   typedef std::vector<std::pair<edm::RefToBase<Jet>, float> > JetEisolAssociationCollection;
0017 
0018   typedef JetEisolAssociationCollection::value_type JetEisolAssociation;
0019 
0020   typedef edm::Ref<JetEisolAssociationCollection> JetEisolAssociationRef;
0021 
0022   typedef edm::FwdRef<JetEisolAssociationCollection> JetEisolAssociationFwdRef;
0023 
0024   typedef edm::RefProd<JetEisolAssociationCollection> JetEisolAssociationRefProd;
0025 
0026   typedef edm::RefVector<JetEisolAssociationCollection> JetEisolAssociationRefVector;
0027 }  // namespace reco
0028 #endif