Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:40

0001 #ifndef RecoTracker_PixelVertexFinding_PVCluster_h
0002 #define RecoTracker_PixelVertexFinding_PVCluster_h
0003 /** \class PVCluster PVCluster.h RecoTracker/PixelVertexFinding/PVCluster.h 
0004  * A simple collection of tracks that represents a physical clustering
0005  * of charged particles, ie a vertex, in one dimension.  This
0006  * (typedef) class is used by the Pixel standalone vertex finding
0007  * classes found in RecoTracker/PixelVertexFinding.
0008  *
0009  *  \author Aaron Dominguez (UNL)
0010  */
0011 #include "CommonTools/Clustering1D/interface/Cluster1D.h"
0012 #include "DataFormats/TrackReco/interface/Track.h"
0013 
0014 typedef Cluster1D<reco::Track> PVCluster;
0015 
0016 #endif