CMS 3D CMS Logo

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

#include <StandAloneMuonProducer.h>

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

Public Member Functions

void produce (edm::Event &, const edm::EventSetup &) override
 reconstruct muons More...
 
 StandAloneMuonProducer (const edm::ParameterSet &)
 constructor with config More...
 
 ~StandAloneMuonProducer () override
 destructor More...
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Member Functions

void setAlias (std::string alias)
 

Private Attributes

edm::EDGetTokenT< edm::View< TrajectorySeed > > seedToken
 
std::string theAlias
 
edm::InputTag theSeedCollectionLabel
 MuonSeed Collection Label. More...
 
std::unique_ptr< MuonServiceProxytheService
 the event setup proxy, it takes care the services update More...
 
std::unique_ptr< MuonTrackFindertheTrackFinder
 the track finder More...
 

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

StandAlone muon reconstructor: reconstructs muons using DT, CSC and RPC information,
starting from internal seeds (L2 muon track segments).

Author
R.Bellan - INFN TO

Definition at line 30 of file StandAloneMuonProducer.h.

Constructor & Destructor Documentation

◆ StandAloneMuonProducer()

StandAloneMuonProducer::StandAloneMuonProducer ( const edm::ParameterSet parameterSet)

constructor with config

Definition at line 45 of file StandAloneMuonProducer.cc.

45  {
46  LogTrace("Muon|RecoMuon|StandAloneMuonProducer") << "constructor called" << endl;
47 
48  // Parameter set for the Builder
49  ParameterSet trajectoryBuilderParameters = parameterSet.getParameter<ParameterSet>("STATrajBuilderParameters");
50 
51  // MuonSeed Collection Label
53 
54  // service parameters
55  ParameterSet serviceParameters = parameterSet.getParameter<ParameterSet>("ServiceParameters");
56 
57  // TrackLoader parameters
58  ParameterSet trackLoaderParameters = parameterSet.getParameter<ParameterSet>("TrackLoaderParameters");
59  edm::ConsumesCollector iC = consumesCollector();
60 
61  // the services
62  theService = std::make_unique<MuonServiceProxy>(serviceParameters, consumesCollector());
63 
64  auto trackLoader = std::make_unique<MuonTrackLoader>(trackLoaderParameters, iC, theService.get());
65  std::unique_ptr<MuonTrajectoryBuilder> trajectoryBuilder;
66  // instantiate the concrete trajectory builder in the Track Finder
67  string typeOfBuilder = parameterSet.getParameter<string>("MuonTrajectoryBuilder");
68  if (typeOfBuilder == "StandAloneMuonTrajectoryBuilder")
69  trajectoryBuilder =
70  std::make_unique<StandAloneMuonTrajectoryBuilder>(trajectoryBuilderParameters, theService.get(), iC);
71  else if (typeOfBuilder == "DirectMuonTrajectoryBuilder")
72  trajectoryBuilder = std::make_unique<DirectMuonTrajectoryBuilder>(trajectoryBuilderParameters, theService.get());
73  else if (typeOfBuilder == "Exhaustive")
74  trajectoryBuilder =
75  std::make_unique<ExhaustiveMuonTrajectoryBuilder>(trajectoryBuilderParameters, theService.get(), iC);
76  else {
77  LogWarning("Muon|RecoMuon|StandAloneMuonProducer")
78  << "No Trajectory builder associated with " << typeOfBuilder
79  << ". Falling down to the default (StandAloneMuonTrajectoryBuilder)";
80  trajectoryBuilder =
81  std::make_unique<StandAloneMuonTrajectoryBuilder>(trajectoryBuilderParameters, theService.get(), iC);
82  }
83  theTrackFinder = std::make_unique<MuonTrackFinder>(std::move(trajectoryBuilder), std::move(trackLoader));
84 
85  setAlias(parameterSet.getParameter<std::string>("@module_label"));
86 
87  produces<reco::TrackCollection>().setBranchAlias(theAlias + "Tracks");
88  produces<reco::TrackCollection>("UpdatedAtVtx").setBranchAlias(theAlias + "UpdatedAtVtxTracks");
89  produces<TrackingRecHitCollection>().setBranchAlias(theAlias + "RecHits");
90  produces<reco::TrackExtraCollection>().setBranchAlias(theAlias + "TrackExtras");
91  produces<reco::TrackToTrackMap>().setBranchAlias(theAlias + "TrackToTrackMap");
92 
93  produces<std::vector<Trajectory> >().setBranchAlias(theAlias + "Trajectories");
94  produces<TrajTrackAssociationCollection>().setBranchAlias(theAlias + "TrajToTrackMap");
95 
96  seedToken = consumes<edm::View<TrajectorySeed> >(theSeedCollectionLabel);
97 }

References edm::ParameterSet::getParameter(), LogTrace, eostools::move(), edm::parameterSet(), and AlCaHLTBitMon_QueryRunRegistry::string.

◆ ~StandAloneMuonProducer()

StandAloneMuonProducer::~StandAloneMuonProducer ( )
override

destructor

Definition at line 100 of file StandAloneMuonProducer.cc.

100  {
101  LogTrace("Muon|RecoMuon|StandAloneMuonProducer") << "StandAloneMuonProducer destructor called" << endl;
102 }

References LogTrace.

Member Function Documentation

◆ produce()

void StandAloneMuonProducer::produce ( edm::Event event,
const edm::EventSetup eventSetup 
)
override

reconstruct muons

Definition at line 105 of file StandAloneMuonProducer.cc.

105  {
106  const std::string metname = "Muon|RecoMuon|StandAloneMuonProducer";
107 
108  LogTrace(metname) << endl << endl << endl;
109  LogTrace(metname) << "Stand Alone Muon Reconstruction Started" << endl;
110 
111  // Take the seeds container
112  LogTrace(metname) << "Taking the seeds: " << theSeedCollectionLabel.label() << endl;
114  event.getByToken(seedToken, seeds);
115 
116  // Update the services
117  theService->update(eventSetup);
118 
119  // Reconstruct
120  LogTrace(metname) << "Track Reconstruction" << endl;
121  theTrackFinder->reconstruct(seeds, event, eventSetup);
122 
123  LogTrace(metname) << "Event loaded"
124  << "================================" << endl
125  << endl;
126 }

References LogTrace, metname, InitialStep_cff::seeds, and AlCaHLTBitMon_QueryRunRegistry::string.

◆ setAlias()

void StandAloneMuonProducer::setAlias ( std::string  alias)
inlineprivate

Definition at line 55 of file StandAloneMuonProducer.h.

55  {
56  alias.erase(alias.size() - 1, alias.size());
57  theAlias = alias;
58  }

References SiStripOfflineCRack_cfg::alias, and theAlias.

Member Data Documentation

◆ seedToken

edm::EDGetTokenT<edm::View<TrajectorySeed> > StandAloneMuonProducer::seedToken
private

Definition at line 51 of file StandAloneMuonProducer.h.

◆ theAlias

std::string StandAloneMuonProducer::theAlias
private

Definition at line 53 of file StandAloneMuonProducer.h.

Referenced by setAlias().

◆ theSeedCollectionLabel

edm::InputTag StandAloneMuonProducer::theSeedCollectionLabel
private

MuonSeed Collection Label.

Definition at line 43 of file StandAloneMuonProducer.h.

◆ theService

std::unique_ptr<MuonServiceProxy> StandAloneMuonProducer::theService
private

the event setup proxy, it takes care the services update

Definition at line 49 of file StandAloneMuonProducer.h.

◆ theTrackFinder

std::unique_ptr<MuonTrackFinder> StandAloneMuonProducer::theTrackFinder
private

the track finder

Definition at line 46 of file StandAloneMuonProducer.h.

edm::Handle
Definition: AssociativeIterator.h:50
StandAloneMuonProducer::setAlias
void setAlias(std::string alias)
Definition: StandAloneMuonProducer.h:55
StandAloneMuonProducer::theSeedCollectionLabel
edm::InputTag theSeedCollectionLabel
MuonSeed Collection Label.
Definition: StandAloneMuonProducer.h:43
edm::InputTag::label
std::string const & label() const
Definition: InputTag.h:36
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
edm::LogWarning
Definition: MessageLogger.h:141
InitialStep_cff.seeds
seeds
Definition: InitialStep_cff.py:232
edm::ParameterSet
Definition: ParameterSet.h:36
StandAloneMuonProducer::theTrackFinder
std::unique_ptr< MuonTrackFinder > theTrackFinder
the track finder
Definition: StandAloneMuonProducer.h:46
StandAloneMuonProducer::seedToken
edm::EDGetTokenT< edm::View< TrajectorySeed > > seedToken
Definition: StandAloneMuonProducer.h:51
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
eostools.move
def move(src, dest)
Definition: eostools.py:511
SiStripOfflineCRack_cfg.alias
alias
Definition: SiStripOfflineCRack_cfg.py:129
edm::parameterSet
ParameterSet const & parameterSet(Provenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:671
event
Definition: event.py:1
StandAloneMuonProducer::theService
std::unique_ptr< MuonServiceProxy > theService
the event setup proxy, it takes care the services update
Definition: StandAloneMuonProducer.h:49
edm::InputTag
Definition: InputTag.h:15
edm::ConsumesCollector
Definition: ConsumesCollector.h:39
StandAloneMuonProducer::theAlias
std::string theAlias
Definition: StandAloneMuonProducer.h:53
metname
const std::string metname
Definition: MuonSeedOrcaPatternRecognition.cc:43