Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:27

0001 /* \class JPTJetSelector
0002  *
0003  * Selects track with a configurable string-based cut.
0004  * Saves clones of the selected tracks 
0005  *
0006  * \author: Kalanand Mishra, Fermilab
0007  *
0008  * usage:
0009  *
0010  * module bestJPTJets = JPTJetSelector {
0011  *   src = ktJets
0012  *   string cut = "pt > 20 & abs( eta ) < 2"
0013  * }
0014  *
0015  * for more details about the cut syntax, see the documentation
0016  * page below:
0017  *
0018  *   https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser
0019  *
0020  *
0021  */
0022 
0023 #include "FWCore/Framework/interface/MakerMacros.h"
0024 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0025 #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
0026 #include "DataFormats/JetReco/interface/JPTJet.h"
0027 #include "DataFormats/JetReco/interface/JPTJetCollection.h"
0028 
0029 typedef SingleObjectSelector<reco::JPTJetCollection, StringCutObjectSelector<reco::JPTJet> > JPTJetSelector;
0030 
0031 DEFINE_FWK_MODULE(JPTJetSelector);