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...
 
MuonServiceProxytheService
 the event setup proxy, it takes care the services update More...
 
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 29 of file StandAloneMuonProducer.h.

Constructor & Destructor Documentation

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

constructor with config

Definition at line 44 of file StandAloneMuonProducer.cc.

References edm::ParameterSet::getParameter(), LogTrace, MuonServiceProxy_cff::MuonServiceProxy, and AlCaHLTBitMon_QueryRunRegistry::string.

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

destructor

Definition at line 96 of file StandAloneMuonProducer.cc.

References LogTrace.

96  {
97  LogTrace("Muon|RecoMuon|StandAloneMuonProducer") << "StandAloneMuonProducer destructor called" << endl;
98  if (theService)
99  delete theService;
100  if (theTrackFinder)
101  delete theTrackFinder;
102 }
#define LogTrace(id)
MuonServiceProxy * theService
the event setup proxy, it takes care the services update
MuonTrackFinder * theTrackFinder
the track finder

Member Function Documentation

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

reconstruct muons

Definition at line 105 of file StandAloneMuonProducer.cc.

References LogTrace, metname, and AlCaHLTBitMon_QueryRunRegistry::string.

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 }
edm::InputTag theSeedCollectionLabel
MuonSeed Collection Label.
const std::string metname
#define LogTrace(id)
MuonServiceProxy * theService
the event setup proxy, it takes care the services update
std::string const & label() const
Definition: InputTag.h:36
MuonTrackFinder * theTrackFinder
the track finder
edm::OrphanHandle< reco::TrackCollection > reconstruct(const edm::Handle< edm::View< TrajectorySeed > > &, edm::Event &, const edm::EventSetup &)
reconstruct standalone tracks starting from a collection of seeds
edm::EDGetTokenT< edm::View< TrajectorySeed > > seedToken
void StandAloneMuonProducer::setAlias ( std::string  alias)
inlineprivate

Definition at line 54 of file StandAloneMuonProducer.h.

References SiStripOfflineCRack_cfg::alias.

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

Member Data Documentation

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

Definition at line 50 of file StandAloneMuonProducer.h.

std::string StandAloneMuonProducer::theAlias
private

Definition at line 52 of file StandAloneMuonProducer.h.

edm::InputTag StandAloneMuonProducer::theSeedCollectionLabel
private

MuonSeed Collection Label.

Definition at line 42 of file StandAloneMuonProducer.h.

MuonServiceProxy* StandAloneMuonProducer::theService
private

the event setup proxy, it takes care the services update

Definition at line 48 of file StandAloneMuonProducer.h.

MuonTrackFinder* StandAloneMuonProducer::theTrackFinder
private

the track finder

Definition at line 45 of file StandAloneMuonProducer.h.