Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class SuperClusterRefSelector
0002  *
0003  * Selects super-cluster with a configurable string-based cut.
0004  * Saves references to the selected super-clusters 
0005  *
0006  * \author: Luca Lista, INFN
0007  *
0008  * usage:
0009  *
0010  * module bestSuperClusters = SuperClusterRefSelector {
0011  *   src = hybridSuperClusters
0012  *   string cut = "energy > 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/EgammaReco/interface/SuperCluster.h"
0027 #include "DataFormats/EgammaReco/interface/SuperClusterFwd.h"
0028 
0029 typedef SingleObjectSelector<reco::SuperClusterCollection,
0030                              StringCutObjectSelector<reco::SuperCluster>,
0031                              reco::SuperClusterRefVector>
0032     SuperClusterRefSelector;
0033 
0034 DEFINE_FWK_MODULE(SuperClusterRefSelector);