Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef PrimaryVertexSorter_H
0002 #define PrimaryVertexSorter_H
0003 
0004 #include "DataFormats/VertexReco/interface/VertexFwd.h"
0005 #include <vector>
0006 
0007 /** \class PrimaryVertexSorter
0008  * class to sort VertexCollection
0009  * in decreasing order of the sum of the squared track pT's
0010  */
0011 struct PrimaryVertexSorter {
0012   std::vector<reco::Vertex> sortedList(const reco::VertexCollection& primaryVertex) const;
0013 };
0014 
0015 #endif