CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
ME0MuonTrackCollProducer Class Reference
Inheritance diagram for ME0MuonTrackCollProducer:
edm::stream::EDProducer<>

Public Member Functions

 ME0MuonTrackCollProducer (const edm::ParameterSet &)
 
 ~ME0MuonTrackCollProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::Handle< std::vector< reco::ME0Muon > > OurMuons
 
edm::InputTag OurMuonsTag
 
edm::EDGetTokenT< ME0MuonCollectionOurMuonsToken_
 
const edm::ParameterSet parset_
 
std::vector< std::string > selectionTags
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 29 of file ME0MuonTrackCollProducer.cc.

Constructor & Destructor Documentation

ME0MuonTrackCollProducer::ME0MuonTrackCollProducer ( const edm::ParameterSet parset)
explicit

Definition at line 52 of file ME0MuonTrackCollProducer.cc.

References OurMuonsTag, and OurMuonsToken_.

52  :
53  OurMuonsTag(parset.getParameter<edm::InputTag>("me0MuonTag")),
54  selectionTags(parset.getParameter< std::vector<std::string> >("selectionTags")),
55  parset_(parset)
56 {
57  produces<reco::TrackCollection>();
58  OurMuonsToken_ = consumes<ME0MuonCollection>(OurMuonsTag);
59 }
T getParameter(std::string const &) const
const edm::ParameterSet parset_
std::vector< std::string > selectionTags
edm::EDGetTokenT< ME0MuonCollection > OurMuonsToken_
ME0MuonTrackCollProducer::~ME0MuonTrackCollProducer ( )
override

Definition at line 61 of file ME0MuonTrackCollProducer.cc.

61  {
62 }

Member Function Documentation

void ME0MuonTrackCollProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 64 of file ME0MuonTrackCollProducer.cc.

References edm::Event::getByToken(), edm::Event::getRefBeforePut(), muon::isGoodMuon(), eostools::move(), OurMuons, OurMuonsToken_, edm::Event::put(), trackingPlots::selectedTracks, and muon::Tight.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

65 {
66  using namespace reco;
67  using namespace edm;
69  iEvent.getByToken(OurMuonsToken_,OurMuons);
70 
71 
72  std::unique_ptr<reco::TrackCollection> selectedTracks(new reco::TrackCollection);
73 
75 
76 
77 
78  for(std::vector<reco::ME0Muon>::const_iterator thismuon = OurMuons->begin();
79  thismuon != OurMuons->end(); ++thismuon) {
80 
81  if (!muon::isGoodMuon(*thismuon, muon::Tight)) continue;
82  reco::TrackRef trackref;
83 
84  if (thismuon->innerTrack().isNonnull()) trackref = thismuon->innerTrack();
85 
86  const reco::Track* trk = &(*trackref);
87  // pointer to old track:
88  //reco::Track* newTrk = new reco::Track(*trk);
89 
90  selectedTracks->push_back( *trk );
91  //selectedTrackExtras->push_back( *newExtra );
92  }
93  iEvent.put(std::move(selectedTracks));
94 
95 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
edm::Handle< std::vector< reco::ME0Muon > > OurMuons
RefProd< PROD > getRefBeforePut()
Definition: Event.h:167
bool isGoodMuon(const reco::Muon &muon, SelectionType type, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
main GoodMuon wrapper call
fixed size matrix
HLT enums.
edm::EDGetTokenT< ME0MuonCollection > OurMuonsToken_
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

edm::Handle<std::vector<reco::ME0Muon> > ME0MuonTrackCollProducer::OurMuons
private

Definition at line 37 of file ME0MuonTrackCollProducer.cc.

Referenced by produce().

edm::InputTag ME0MuonTrackCollProducer::OurMuonsTag
private

Definition at line 39 of file ME0MuonTrackCollProducer.cc.

Referenced by ME0MuonTrackCollProducer().

edm::EDGetTokenT<ME0MuonCollection> ME0MuonTrackCollProducer::OurMuonsToken_
private

Definition at line 42 of file ME0MuonTrackCollProducer.cc.

Referenced by ME0MuonTrackCollProducer(), and produce().

const edm::ParameterSet ME0MuonTrackCollProducer::parset_
private

Definition at line 41 of file ME0MuonTrackCollProducer.cc.

std::vector<std::string> ME0MuonTrackCollProducer::selectionTags
private

Definition at line 40 of file ME0MuonTrackCollProducer.cc.