Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /* \class StatusCandSelector

0002  * 

0003  * Candidate Selector based on the status

0004  * Usage:

0005  * 

0006  * module leptons = StatusCandSelector {

0007  *   InputTag src = myCollection

0008  *   vint32 status =  { 1 }

0009  * };

0010  *

0011  * \author: Luca Lista, INFN

0012  *

0013  */
0014 #include "FWCore/Framework/interface/MakerMacros.h"
0015 #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
0016 #include "CommonTools/UtilAlgos/interface/StatusSelector.h"
0017 #include "DataFormats/Candidate/interface/Candidate.h"
0018 
0019 typedef SingleObjectSelector<reco::CandidateCollection, StatusSelector> StatusCandSelector;
0020 
0021 DEFINE_FWK_MODULE(StatusCandSelector);