Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /** \class TrackViewCandidateProducer
0002  *
0003  * Framework module that produces a collection
0004  * of candidates with a Track compoment from
0005  * a View<Track>
0006  *
0007  * \author Luca Lista, INFN
0008  *
0009  * \version $Revision: 1.1 $
0010  *
0011  * $Id: TrackViewCandidateProducer.cc,v 1.1 2009/03/04 13:11:31 llista Exp $
0012  *
0013  */
0014 
0015 #include "CommonTools/RecoAlgos/src/TrackToCandidate.h"
0016 #include "FWCore/Framework/interface/MakerMacros.h"
0017 #include "DataFormats/Common/interface/View.h"
0018 #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
0019 
0020 typedef CandidateProducer<edm::View<reco::Track>,
0021                           reco::RecoChargedCandidateCollection,
0022                           StringCutObjectSelector<reco::Track> >
0023     TrackViewCandidateProducer;
0024 
0025 DEFINE_FWK_MODULE(TrackViewCandidateProducer);