CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
TSGFromL1Muon Class Reference

#include <TSGFromL1Muon.h>

Inheritance diagram for TSGFromL1Muon:
edm::stream::EDProducer<>

Public Member Functions

void produce (edm::Event &ev, const edm::EventSetup &es) override
 
 TSGFromL1Muon (const edm::ParameterSet &cfg)
 
 ~TSGFromL1Muon () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Private Attributes

edm::ParameterSet theConfig
 
edm::EDGetTokenT< PixelTrackFiltertheFilterToken
 
std::unique_ptr< L1MuonPixelTrackFittertheFitter
 
std::unique_ptr< OrderedHitsGeneratortheHitGenerator
 
std::unique_ptr< L1MuonSeedsMergertheMerger
 
std::unique_ptr< L1MuonRegionProducertheRegionProducer
 
edm::InputTag theSourceTag
 
edm::EDGetTokenT< l1extra::L1MuonParticleCollectiontheSourceToken
 

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

Description: EDPRoducer to generate L3MuonTracjectorySeed from L1MuonParticles

Author
Marcin Konecki

Definition at line 24 of file TSGFromL1Muon.h.

Constructor & Destructor Documentation

TSGFromL1Muon::TSGFromL1Muon ( const edm::ParameterSet cfg)

Definition at line 40 of file TSGFromL1Muon.cc.

References reco::get(), edm::ParameterSet::getParameter(), AlCaHLTBitMon_QueryRunRegistry::string, and ~TSGFromL1Muon().

41 {
42  produces<L3MuonTrajectorySeedCollection>();
43  theSourceTag = cfg.getParameter<edm::InputTag>("L1MuonLabel");
44 
45  edm::ConsumesCollector iC = consumesCollector();
46  theFilterToken = consumes<PixelTrackFilter>(cfg.getParameter<edm::InputTag>("Filter"));
47 
48  edm::ParameterSet hitsfactoryPSet =
49  cfg.getParameter<edm::ParameterSet>("OrderedHitsFactoryPSet");
50  std::string hitsfactoryName = hitsfactoryPSet.getParameter<std::string>("ComponentName");
51  theHitGenerator = std::unique_ptr<OrderedHitsGenerator>{OrderedHitsGeneratorFactory::get()->create( hitsfactoryName, hitsfactoryPSet, iC)};
52 
54 
55  theRegionProducer = std::make_unique<L1MuonRegionProducer>(cfg.getParameter<edm::ParameterSet>("RegionFactoryPSet"));
56  theFitter = std::make_unique<L1MuonPixelTrackFitter>(cfg.getParameter<edm::ParameterSet>("FitterPSet"));
57 
58  edm::ParameterSet cleanerPSet = theConfig.getParameter<edm::ParameterSet>("CleanerPSet");
59  theMerger = std::make_unique<L1MuonSeedsMerger>(cleanerPSet);
60 }
T getParameter(std::string const &) const
edm::ParameterSet theConfig
Definition: TSGFromL1Muon.h:32
std::unique_ptr< L1MuonPixelTrackFitter > theFitter
Definition: TSGFromL1Muon.h:39
std::unique_ptr< L1MuonRegionProducer > theRegionProducer
Definition: TSGFromL1Muon.h:37
edm::EDGetTokenT< PixelTrackFilter > theFilterToken
Definition: TSGFromL1Muon.h:35
edm::InputTag theSourceTag
Definition: TSGFromL1Muon.h:33
std::unique_ptr< OrderedHitsGenerator > theHitGenerator
Definition: TSGFromL1Muon.h:38
edm::EDGetTokenT< l1extra::L1MuonParticleCollection > theSourceToken
Definition: TSGFromL1Muon.h:34
std::unique_ptr< L1MuonSeedsMerger > theMerger
Definition: TSGFromL1Muon.h:40
T get(const Candidate &c)
Definition: component.h:55
TSGFromL1Muon::~TSGFromL1Muon ( )
overridedefault

Referenced by TSGFromL1Muon().

Member Function Documentation

void TSGFromL1Muon::produce ( edm::Event ev,
const edm::EventSetup es 
)
override

Definition at line 64 of file TSGFromL1Muon.cc.

References objects.IsoTrackAnalyzer::candidates, ALCARECOTkAlBeamHalo_cff::filter, edm::Event::getByToken(), hfClusterShapes_cfi::hits, mps_fire::i, SeedFromProtoTrack::isValid(), LogDebug, eostools::move(), edm::Event::put(), mps_fire::result, SurveyInfoScenario_cff::seed, OrderedSeedingHits::size(), SeedingHitSet::size(), HiIsolationCommonParameters_cff::track, l1t::tracks, and SeedFromProtoTrack::trajectorySeed().

65 {
66  auto result = std::make_unique<L3MuonTrajectorySeedCollection>();
67 
69  ev.getByToken(theSourceToken, l1muon);
70 
72  ev.getByToken(theFilterToken, hfilter);
73  const PixelTrackFilter& filter = *hfilter;
74 
75  LogDebug("TSGFromL1Muon")<<l1muon->size()<<" l1 muons to seed from.";
76 
77  L1MuonParticleCollection::const_iterator muItr = l1muon->begin();
78  L1MuonParticleCollection::const_iterator muEnd = l1muon->end();
79  for ( size_t iL1 = 0; muItr < muEnd; ++muItr, ++iL1) {
80 
81  if (muItr->gmtMuonCand().empty()) continue;
82 
83  const L1MuGMTCand & muon = muItr->gmtMuonCand();
84  l1extra::L1MuonParticleRef l1Ref(l1muon, iL1);
85 
86  theRegionProducer->setL1Constraint(muon);
87  theFitter->setL1Constraint(muon);
88 
89  typedef std::vector<std::unique_ptr<TrackingRegion> > Regions;
90  Regions regions = theRegionProducer->regions();
91  for (Regions::const_iterator ir=regions.begin(); ir != regions.end(); ++ir) {
92 
94  const TrackingRegion & region = **ir;
95  const OrderedSeedingHits & candidates = theHitGenerator->run(region,ev,es);
96 
97  unsigned int nSets = candidates.size();
98  for (unsigned int ic= 0; ic <nSets; ic++) {
99 
100  const SeedingHitSet & hits = candidates[ic];
101  std::vector<const TrackingRecHit *> trh;
102  for (unsigned int i= 0, nHits = hits.size(); i< nHits; ++i) trh.push_back( hits[i]->hit() );
103 
104  theFitter->setPxConstraint(hits);
105  reco::Track* track = theFitter->run(es, trh, region);
106  if (!track) continue;
107 
108  if (!filter(track, trh) ) { delete track; continue; }
109  tracks.push_back(L1MuonSeedsMerger::TrackAndHits(track, hits));
110  }
111 
112  if(theMerger) theMerger->resolve(tracks);
113  for (L1MuonSeedsMerger::TracksAndHits::const_iterator it = tracks.begin();
114  it != tracks.end(); ++it) {
115 
116  SeedFromProtoTrack seed( *(it->first), it->second, es);
117  if (seed.isValid()) (*result).push_back(L3MuonTrajectorySeed(seed.trajectorySeed(),l1Ref));
118 
119 // GlobalError vtxerr( sqr(region->originRBound()), 0, sqr(region->originRBound()),
120 // 0, 0, sqr(region->originZBound()));
121 // SeedFromConsecutiveHits seed( candidates[ic],region->origin(), vtxerr, es);
122 // if (seed.isValid()) (*result).push_back( seed.TrajSeed() );
123  delete it->first;
124  }
125  }
126  }
127 
128  LogDebug("TSGFromL1Muon")<<result->size()<<" seeds to the event.";
129  ev.put(std::move(result));
130 }
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::pair< const reco::Track *, SeedingHitSet > TrackAndHits
std::unique_ptr< L1MuonPixelTrackFitter > theFitter
Definition: TSGFromL1Muon.h:39
std::unique_ptr< L1MuonRegionProducer > theRegionProducer
Definition: TSGFromL1Muon.h:37
edm::EDGetTokenT< PixelTrackFilter > theFilterToken
Definition: TSGFromL1Muon.h:35
std::vector< TrackAndHits > TracksAndHits
virtual unsigned int size() const =0
std::unique_ptr< OrderedHitsGenerator > theHitGenerator
Definition: TSGFromL1Muon.h:38
edm::EDGetTokenT< l1extra::L1MuonParticleCollection > theSourceToken
Definition: TSGFromL1Muon.h:34
std::unique_ptr< L1MuonSeedsMerger > theMerger
Definition: TSGFromL1Muon.h:40
unsigned int size() const
Definition: SeedingHitSet.h:46
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

edm::ParameterSet TSGFromL1Muon::theConfig
private

Definition at line 32 of file TSGFromL1Muon.h.

edm::EDGetTokenT<PixelTrackFilter> TSGFromL1Muon::theFilterToken
private

Definition at line 35 of file TSGFromL1Muon.h.

std::unique_ptr<L1MuonPixelTrackFitter> TSGFromL1Muon::theFitter
private

Definition at line 39 of file TSGFromL1Muon.h.

std::unique_ptr<OrderedHitsGenerator> TSGFromL1Muon::theHitGenerator
private

Definition at line 38 of file TSGFromL1Muon.h.

std::unique_ptr<L1MuonSeedsMerger> TSGFromL1Muon::theMerger
private

Definition at line 40 of file TSGFromL1Muon.h.

std::unique_ptr<L1MuonRegionProducer> TSGFromL1Muon::theRegionProducer
private

Definition at line 37 of file TSGFromL1Muon.h.

edm::InputTag TSGFromL1Muon::theSourceTag
private

Definition at line 33 of file TSGFromL1Muon.h.

edm::EDGetTokenT<l1extra::L1MuonParticleCollection> TSGFromL1Muon::theSourceToken
private

Definition at line 34 of file TSGFromL1Muon.h.