Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:19

0001 #ifndef TTtoTTmap_H
0002 #define TTtoTTmap_H
0003 
0004 #include <map>
0005 #include "TrackingTools/TransientTrack/interface/TransientTrack.h"
0006 
0007 /** Map of (key = RecTrack, 
0008  *          elt = map of(key = RecTrack, elt = covariance matrix))
0009  */
0010 
0011 typedef std::map<reco::TransientTrack, AlgebraicMatrix33> TTmap;
0012 typedef std::map<reco::TransientTrack, TTmap> TTtoTTmap;
0013 
0014 #endif