Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:34

0001 #ifndef TrackingTools_PatternTools_TrajTrackAssociation_h
0002 #define TrackingTools_PatternTools_TrajTrackAssociation_h
0003 
0004 #include "DataFormats/Common/interface/AssociationMap.h"
0005 #include "DataFormats/TrackReco/interface/TrackFwd.h"
0006 #include "TrackingTools/PatternTools/interface/Trajectory.h"
0007 
0008 typedef edm::AssociationMap<edm::OneToOne<std::vector<Trajectory>, reco::TrackCollection, unsigned short> >
0009     TrajTrackAssociationCollection;
0010 typedef TrajTrackAssociationCollection::value_type TrajTrackAssociation;
0011 
0012 // reference to an object in a collection of TrajTrack objects
0013 typedef edm::Ref<TrajTrackAssociationCollection> TrajTrackAssociationRef;
0014 
0015 /// reference to a collection of TrajTrack objects
0016 typedef edm::RefProd<TrajTrackAssociationCollection> TrajTrackAssociationRefProd;
0017 
0018 /// vector of references to objects in the same colletion of TrajTrack objects
0019 typedef edm::RefVector<TrajTrackAssociationCollection> TrajTrackAssociationRefVector;
0020 
0021 #endif