Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:10

0001 /* \class PtMinTrackSelector
0002  *
0003  * selects track above a minumum pt cut
0004  *
0005  * \author: Luca Lista, INFN
0006  *
0007  */
0008 #include "FWCore/Framework/interface/MakerMacros.h"
0009 #include "CommonTools/UtilAlgos/interface/PtMinSelector.h"
0010 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0011 #include "DataFormats/TrackReco/interface/Track.h"
0012 #include "DataFormats/TrackReco/interface/TrackFwd.h"
0013 
0014 typedef SingleObjectSelector<reco::TrackCollection, PtMinSelector> PtMinTrackSelector;
0015 
0016 DEFINE_FWK_MODULE(PtMinTrackSelector);