Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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