Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class EtaPtMinPixelMatchGsfElectronFullCloneSelector
0002  *
0003  * selects electron above a minumum pt cut
0004  * Also clones super cluster and track of selected electrons
0005  *
0006  * \author: Luca Lista, INFN
0007  *
0008  */
0009 #include "FWCore/Framework/interface/MakerMacros.h"
0010 #include "CommonTools/UtilAlgos/interface/AndSelector.h"
0011 #include "CommonTools/UtilAlgos/interface/PtMinSelector.h"
0012 #include "CommonTools/UtilAlgos/interface/EtaRangeSelector.h"
0013 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0014 #include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
0015 #include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
0016 #include "CommonTools/RecoAlgos/interface/GsfElectronSelector.h"
0017 
0018 typedef GsfElectronSingleObjectSelector<AndSelector<EtaRangeSelector, PtMinSelector> >
0019     EtaPtMinPixelMatchGsfElectronFullCloneSelector;
0020 
0021 DEFINE_FWK_MODULE(EtaPtMinPixelMatchGsfElectronFullCloneSelector);