Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:45:26

0001 /** \class ChargedCandidateProducer
0002  *
0003  * Framework module that produces a collection
0004  * of candidates with a Track Component
0005  *
0006  * \author Steven Lowette
0007  *
0008  * $Id: ChargedCandidateProducer.cc,v 1.1 2009/11/17 12:01:31 lowette Exp $
0009  *
0010  */
0011 
0012 #include "CommonTools/RecoAlgos/src/TrackToCandidate.h"
0013 #include "FWCore/Framework/interface/MakerMacros.h"
0014 
0015 typedef CandidateProducer<edm::View<reco::Track>,
0016                           reco::RecoChargedCandidateCollection,
0017                           AnySelector,
0018                           converter::helper::CandConverter<reco::Track>::type>
0019     ChargedCandidateProducer;
0020 
0021 DEFINE_FWK_MODULE(ChargedCandidateProducer);