Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class CaloJetSelector
0002  *
0003  * Selects track with a configurable string-based cut.
0004  * Saves clones of the selected tracks 
0005  *
0006  * \author: Luca Lista, INFN
0007  *
0008  * usage:
0009  *
0010  * module bestCaloJets = CaloJetSelector {
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/CaloJet.h"
0027 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
0028 
0029 typedef SingleObjectSelector<reco::CaloJetCollection, StringCutObjectSelector<reco::CaloJet> > CaloJetSelector;
0030 
0031 DEFINE_FWK_MODULE(CaloJetSelector);