CMS 3D CMS Logo

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

Public Member Functions

 OutsideInMuonSeeder (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 ~OutsideInMuonSeeder () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void doDebug (const reco::Track &tk) const
 
int doLayer (const GeometricSearchDet &layer, const TrajectoryStateOnSurface &state, std::vector< TrajectorySeed > &out, const Propagator &muon_propagator, const Propagator &tracker_propagator, const MeasurementTrackerEvent &mte) const
 

Private Attributes

const bool debug_
 Dump deug information. More...
 
const double errorRescaling_
 How much to rescale errors from STA. More...
 
const Chi2MeasurementEstimatorBaseestimator_
 
const edm::ESGetToken< Chi2MeasurementEstimatorBase, TrackingComponentsRecordestimatorToken_
 
const bool fromVertex_
 Do inside-out. More...
 
const GlobalTrackingGeometrygeometry_
 
const edm::ESGetToken< GlobalTrackingGeometry, GlobalTrackingGeometryRecordgeometryToken_
 
const int hitsToTry_
 How many hits to try on same layer. More...
 
const int layersToTry_
 How many layers to try. More...
 
const MagneticFieldmagfield_
 
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecordmagfieldToken_
 
float const maxEtaForTOB_
 
const edm::EDGetTokenT< MeasurementTrackerEventmeasurementTrackerTag_
 
float const minEtaForTEC_
 
const PropagatormuonPropagator_
 
const edm::ESGetToken< Propagator, TrackingComponentsRecordmuonPropagatorToken_
 
StringCutObjectSelector< reco::Muonselector_
 Muon selection. More...
 
edm::EDGetTokenT< edm::View< reco::Muon > > src_
 Labels for input collections. More...
 
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecordtkGeometryToken_
 
const edm::ESGetToken< Propagator, TrackingComponentsRecordtrackerPropagatorToken_
 
const TrajectoryStateUpdatorupdator_
 
const edm::ESGetToken< TrajectoryStateUpdator, TrackingComponentsRecordupdatorToken_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Definition at line 38 of file OutsideInMuonSeeder.cc.

Constructor & Destructor Documentation

◆ OutsideInMuonSeeder()

OutsideInMuonSeeder::OutsideInMuonSeeder ( const edm::ParameterSet iConfig)
explicit

Definition at line 94 of file OutsideInMuonSeeder.cc.

95  : src_(consumes<edm::View<reco::Muon>>(iConfig.getParameter<edm::InputTag>("src"))),
96  selector_(iConfig.existsAs<std::string>("cut") ? iConfig.getParameter<std::string>("cut") : "", true),
97  layersToTry_(iConfig.getParameter<int32_t>("layersToTry")),
98  hitsToTry_(iConfig.getParameter<int32_t>("hitsToTry")),
99  fromVertex_(iConfig.getParameter<bool>("fromVertex")),
100  errorRescaling_(iConfig.getParameter<double>("errorRescaleFactor")),
101  trackerPropagatorToken_(esConsumes(edm::ESInputTag("", iConfig.getParameter<std::string>("trackerPropagator")))),
102  muonPropagatorToken_(esConsumes(edm::ESInputTag("", iConfig.getParameter<std::string>("muonPropagator")))),
103  measurementTrackerTag_(consumes<MeasurementTrackerEvent>(edm::InputTag("MeasurementTrackerEvent"))),
104  estimatorToken_(esConsumes(edm::ESInputTag("", iConfig.getParameter<std::string>("hitCollector")))),
105  updatorToken_(esConsumes(edm::ESInputTag("", "KFUpdator"))),
109  minEtaForTEC_(iConfig.getParameter<double>("minEtaForTEC")),
110  maxEtaForTOB_(iConfig.getParameter<double>("maxEtaForTOB")),
111  debug_(iConfig.getUntrackedParameter<bool>("debug", false)) {
112  produces<std::vector<TrajectorySeed>>();
113 }
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:172
const bool fromVertex_
Do inside-out.
const edm::ESGetToken< Propagator, TrackingComponentsRecord > muonPropagatorToken_
T getUntrackedParameter(std::string const &, T const &) const
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magfieldToken_
const bool debug_
Dump deug information.
const double errorRescaling_
How much to rescale errors from STA.
const edm::ESGetToken< TrajectoryStateUpdator, TrackingComponentsRecord > updatorToken_
const edm::EDGetTokenT< MeasurementTrackerEvent > measurementTrackerTag_
StringCutObjectSelector< reco::Muon > selector_
Muon selection.
const edm::ESGetToken< GlobalTrackingGeometry, GlobalTrackingGeometryRecord > geometryToken_
edm::EDGetTokenT< edm::View< reco::Muon > > src_
Labels for input collections.
const int layersToTry_
How many layers to try.
const edm::ESGetToken< Chi2MeasurementEstimatorBase, TrackingComponentsRecord > estimatorToken_
const int hitsToTry_
How many hits to try on same layer.
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > tkGeometryToken_
const edm::ESGetToken< Propagator, TrackingComponentsRecord > trackerPropagatorToken_

◆ ~OutsideInMuonSeeder()

OutsideInMuonSeeder::~OutsideInMuonSeeder ( )
inlineoverride

Definition at line 41 of file OutsideInMuonSeeder.cc.

41 {}

Member Function Documentation

◆ doDebug()

void OutsideInMuonSeeder::doDebug ( const reco::Track tk) const
private

Definition at line 299 of file OutsideInMuonSeeder.cc.

References alongMomentum, geometry_, TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), mps_fire::i, GlobalTrackingGeometry::idToDet(), trajectoryStateTransform::innerStateOnSurface(), TrajectoryStateOnSurface::isValid(), LogDebug, magfield_, muonPropagator_, reco::Track::recHit(), reco::Track::recHitsSize(), SetPropagationDirection(), and GeomDet::surface().

Referenced by produce().

299  {
301  std::unique_ptr<Propagator> pmuon_cloned = SetPropagationDirection(*muonPropagator_, alongMomentum);
302  for (unsigned int i = 0; i < tk.recHitsSize(); ++i) {
303  const TrackingRecHit *hit = &*tk.recHit(i);
304  const GeomDet *det = geometry_->idToDet(hit->geographicalId());
305  if (det == nullptr)
306  continue;
307  if (i != 0)
308  tsos = pmuon_cloned->propagate(tsos, det->surface());
309  if (!tsos.isValid())
310  continue;
311  LogDebug("OutsideInMuonSeeder") << " state " << i << " at x = " << tsos.globalPosition()
312  << ", p = " << tsos.globalMomentum() << std::endl;
313  if (hit->isValid()) {
314  LogDebug("OutsideInMuonSeeder") << " valid rechit on detid " << hit->geographicalId().rawId()
315  << std::endl;
316  } else {
317  LogDebug("OutsideInMuonSeeder") << " invalid rechit on detid " << hit->geographicalId().rawId()
318  << std::endl;
319  }
320  }
321 }
size_t recHitsSize() const
Get number of RecHits. (Warning, this includes invalid hits, which are not physical hits)...
Definition: Track.h:97
const GeomDet * idToDet(DetId) const override
const MagneticField * magfield_
std::unique_ptr< Propagator > SetPropagationDirection(Propagator const &iprop, PropagationDirection dir)
GlobalPoint globalPosition() const
const Propagator * muonPropagator_
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
const GlobalTrackingGeometry * geometry_
GlobalVector globalMomentum() const
TrackingRecHitRef recHit(size_t i) const
Get i-th hit on the track.
Definition: Track.h:94
TrajectoryStateOnSurface innerStateOnSurface(const reco::Track &tk, const TrackingGeometry &geom, const MagneticField *field, bool withErr=true)
#define LogDebug(id)

◆ doLayer()

int OutsideInMuonSeeder::doLayer ( const GeometricSearchDet layer,
const TrajectoryStateOnSurface state,
std::vector< TrajectorySeed > &  out,
const Propagator muon_propagator,
const Propagator tracker_propagator,
const MeasurementTrackerEvent mte 
) const
private

Definition at line 232 of file OutsideInMuonSeeder.cc.

References DMR_cfg::cerr, debug_, errorRescaling_, estimator_, MeasurementDetWithData::fastMeasurements(), newFWLiteAna::found, TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), hitsToTry_, MeasurementDetWithData::isNull(), TrajectoryStateOnSurface::isValid(), ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, nano_mu_digi_cff::layer, TrajectoryStateOnSurface::localError(), LogDebug, HLTSiStripMonitoring_cff::measurementTracker, eostools::move(), oppositeToMomentum, MillePedeFileConverter_cfg::out, trajectoryStateTransform::persistentState(), LocalTrajectoryError::positionError(), edm::OwnVector< T, P >::push_back(), TrajectoryStateOnSurface::rescaleError(), fileCollector::seed, jetUpdater_cfi::sort, mathSSE::sqrt(), TrajectoryStateUpdator::update(), updator_, LocalError::xx(), and LocalError::yy().

Referenced by produce().

237  {
239  onLayer.rescaleError(errorRescaling_);
240  std::vector<GeometricSearchDet::DetWithState> dets;
241  layer.compatibleDetsV(onLayer, muon_propagator, *estimator_, dets);
242 
243  if (debug_) {
244  LogDebug("OutsideInMuonSeeder") << "Query on layer around x = " << onLayer.globalPosition()
245  << " with local pos error " << sqrt(onLayer.localError().positionError().xx())
246  << " , " << sqrt(onLayer.localError().positionError().yy()) << " , "
247  << " returned " << dets.size() << " compatible detectors" << std::endl;
248  }
249 
250  std::vector<TrajectoryMeasurement> meas;
251  for (std::vector<GeometricSearchDet::DetWithState>::const_iterator it = dets.begin(), ed = dets.end(); it != ed;
252  ++it) {
253  MeasurementDetWithData det = measurementTracker.idToDet(it->first->geographicalId());
254  if (det.isNull()) {
255  std::cerr << "BOGUS detid " << it->first->geographicalId().rawId() << std::endl;
256  continue;
257  }
258  if (!it->second.isValid())
259  continue;
260  std::vector<TrajectoryMeasurement> mymeas =
261  det.fastMeasurements(it->second, state, tracker_propagator, *estimator_);
262  if (debug_)
263  LogDebug("OutsideInMuonSeeder") << "Query on detector " << it->first->geographicalId().rawId() << " returned "
264  << mymeas.size() << " measurements." << std::endl;
265  for (std::vector<TrajectoryMeasurement>::const_iterator it2 = mymeas.begin(), ed2 = mymeas.end(); it2 != ed2;
266  ++it2) {
267  if (it2->recHit()->isValid())
268  meas.push_back(*it2);
269  }
270  }
271  int found = 0;
272  std::sort(meas.begin(), meas.end(), TrajMeasLessEstim());
273  for (std::vector<TrajectoryMeasurement>::const_iterator it2 = meas.begin(), ed2 = meas.end(); it2 != ed2; ++it2) {
274  if (debug_) {
275  LogDebug("OutsideInMuonSeeder") << " inspecting Hit with chi2 = " << it2->estimate() << std::endl;
276  LogDebug("OutsideInMuonSeeder") << " track state " << it2->forwardPredictedState().globalPosition()
277  << std::endl;
278  LogDebug("OutsideInMuonSeeder") << " rechit position " << it2->recHit()->globalPosition() << std::endl;
279  }
280  TrajectoryStateOnSurface updated = updator_->update(it2->forwardPredictedState(), *it2->recHit());
281  if (updated.isValid()) {
282  if (debug_)
283  LogDebug("OutsideInMuonSeeder") << " --> updated state: x = " << updated.globalPosition()
284  << ", p = " << updated.globalMomentum() << std::endl;
286  seedHits.push_back(*it2->recHit()->hit());
287  PTrajectoryStateOnDet const &pstate =
288  trajectoryStateTransform::persistentState(updated, it2->recHit()->geographicalId().rawId());
289  TrajectorySeed seed(pstate, std::move(seedHits), oppositeToMomentum);
290  out.push_back(seed);
291  found++;
292  if (found == hitsToTry_)
293  break;
294  }
295  }
296  return found;
297 }
const TrajectoryStateUpdator * updator_
std::vector< TrajectoryMeasurement > fastMeasurements(const TrajectoryStateOnSurface &stateOnThisDet, const TrajectoryStateOnSurface &tsos2, const Propagator &prop, const MeasurementEstimator &est) const
const Chi2MeasurementEstimatorBase * estimator_
PTrajectoryStateOnDet persistentState(const TrajectoryStateOnSurface &ts, unsigned int detid)
void push_back(D *&d)
Definition: OwnVector.h:326
virtual TrajectoryStateOnSurface update(const TrajectoryStateOnSurface &, const TrackingRecHit &) const =0
const bool debug_
Dump deug information.
GlobalPoint globalPosition() const
const double errorRescaling_
How much to rescale errors from STA.
T sqrt(T t)
Definition: SSEVec.h:19
GlobalVector globalMomentum() const
const int hitsToTry_
How many hits to try on same layer.
def move(src, dest)
Definition: eostools.py:511
#define LogDebug(id)

◆ produce()

void OutsideInMuonSeeder::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 115 of file OutsideInMuonSeeder.cc.

References funct::abs(), alongMomentum, debug_, doDebug(), doLayer(), estimator_, estimatorToken_, reco::TrackBase::eta(), newFWLiteAna::found, fromVertex_, geometry_, geometryToken_, edm::EventSetup::getData(), iEvent, trajectoryStateTransform::initialFreeState(), trajectoryStateTransform::innerStateOnSurface(), ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, layersToTry_, LogDebug, LogTrace, magfield_, magfieldToken_, maxEtaForTOB_, HLTSiStripMonitoring_cff::measurementTracker, measurementTrackerTag_, minEtaForTEC_, eostools::move(), amptDefaultParameters_cff::mu, muonPropagator_, muonPropagatorToken_, oppositeToMomentum, MillePedeFileConverter_cfg::out, GeomDetEnumerators::P2OTEC, selector_, SetPropagationDirection(), TrackRefitter_38T_cff::src, src_, tkGeometryToken_, outInSeedsFromStandaloneMuons_cfi::trackerPropagator, trackerPropagatorToken_, updator_, and updatorToken_.

115  {
116  using namespace edm;
117  using namespace std;
118 
119  magfield_ = &iSetup.getData(magfieldToken_);
120  auto const &trackerPropagator = iSetup.getData(trackerPropagatorToken_);
122  geometry_ = &iSetup.getData(geometryToken_);
124  updator_ = &iSetup.getData(updatorToken_);
125 
128 
129  const auto &tmpTkGeometry = iSetup.getData(tkGeometryToken_);
130 
132  iEvent.getByToken(src_, src);
133 
134  auto out = std::make_unique<std::vector<TrajectorySeed>>();
135 
136  for (auto const &mu : *src) {
137  if (mu.outerTrack().isNull() || !selector_(mu))
138  continue;
139  if (debug_ && mu.innerTrack().isNonnull())
140  doDebug(*mu.innerTrack());
141 
142  // Better clone here and not directly into doLayer to avoid
143  // useless clone/destroy operations to set, in the end, the
144  // very same direction every single time.
145  std::unique_ptr<Propagator> pmuon_cloned =
147  std::unique_ptr<Propagator> ptracker_cloned = SetPropagationDirection(trackerPropagator, alongMomentum);
148 
149  int sizeBefore = out->size();
150  if (debug_)
151  LogDebug("OutsideInMuonSeeder") << "\n\n\nSeeding for muon of pt " << mu.pt() << ", eta " << mu.eta() << ", phi "
152  << mu.phi() << std::endl;
153  const reco::Track &tk = *mu.outerTrack();
154 
158 
159  if (std::abs(tk.eta()) < maxEtaForTOB_) {
160  std::vector<BarrelDetLayer const *> const &tob = measurementTracker->geometricSearchTracker()->tobLayers();
161  int found = 0;
162  int iLayer = tob.size();
163  if (iLayer == 0)
164  LogError("OutsideInMuonSeeder") << "TOB has no layers.";
165 
166  for (auto it = tob.rbegin(), ed = tob.rend(); it != ed; ++it, --iLayer) {
167  if (debug_)
168  LogDebug("OutsideInMuonSeeder") << "\n ==== Trying TOB " << iLayer << " ====" << std::endl;
169  if (doLayer(**it, state, *out, *(pmuon_cloned.get()), *(ptracker_cloned.get()), *measurementTracker)) {
170  if (++found == layersToTry_)
171  break;
172  }
173  }
174  }
175  if (tk.eta() > minEtaForTEC_) {
176  const auto &forwLayers = tmpTkGeometry.isThere(GeomDetEnumerators::P2OTEC)
177  ? measurementTracker->geometricSearchTracker()->posTidLayers()
178  : measurementTracker->geometricSearchTracker()->posTecLayers();
179  if (tmpTkGeometry.isThere(GeomDetEnumerators::P2OTEC)) {
180  LogDebug("OutsideInMuonSeeder") << "\n We are using the Phase2 Outer Tracker (defined as a TID+). ";
181  }
182  LogTrace("OutsideInMuonSeeder") << "\n ==== TEC+ tot layers " << forwLayers.size() << " ====" << std::endl;
183  int found = 0;
184  int iLayer = forwLayers.size();
185  if (iLayer == 0)
186  LogError("OutsideInMuonSeeder") << "TEC+ has no layers.";
187 
188  if (debug_)
189  LogDebug("OutsideInMuonSeeder") << "\n ==== Tot layers " << forwLayers.size() << " ====" << std::endl;
190  for (auto it = forwLayers.rbegin(), ed = forwLayers.rend(); it != ed; ++it, --iLayer) {
191  if (debug_)
192  LogDebug("OutsideInMuonSeeder") << "\n ==== Trying Forward Layer +" << +iLayer << " ====" << std::endl;
193  if (doLayer(**it, state, *out, *(pmuon_cloned.get()), *(ptracker_cloned.get()), *measurementTracker)) {
194  if (++found == layersToTry_)
195  break;
196  }
197  }
198  }
199  if (tk.eta() < -minEtaForTEC_) {
200  const auto &forwLayers = tmpTkGeometry.isThere(GeomDetEnumerators::P2OTEC)
201  ? measurementTracker->geometricSearchTracker()->negTidLayers()
202  : measurementTracker->geometricSearchTracker()->negTecLayers();
203  if (tmpTkGeometry.isThere(GeomDetEnumerators::P2OTEC)) {
204  LogDebug("OutsideInMuonSeeder") << "\n We are using the Phase2 Outer Tracker (defined as a TID-). ";
205  }
206  LogTrace("OutsideInMuonSeeder") << "\n ==== TEC- tot layers " << forwLayers.size() << " ====" << std::endl;
207  int found = 0;
208  int iLayer = forwLayers.size();
209  if (iLayer == 0)
210  LogError("OutsideInMuonSeeder") << "TEC- has no layers.";
211 
212  if (debug_)
213  LogDebug("OutsideInMuonSeeder") << "\n ==== Tot layers " << forwLayers.size() << " ====" << std::endl;
214  for (auto it = forwLayers.rbegin(), ed = forwLayers.rend(); it != ed; ++it, --iLayer) {
215  if (debug_)
216  LogDebug("OutsideInMuonSeeder") << "\n ==== Trying Forward Layer -" << -iLayer << " ====" << std::endl;
217  if (doLayer(**it, state, *out, *(pmuon_cloned.get()), *(ptracker_cloned.get()), *measurementTracker)) {
218  if (++found == layersToTry_)
219  break;
220  }
221  }
222  }
223  if (debug_)
224  LogDebug("OutsideInMuonSeeder") << "Outcome of seeding for muon of pt " << mu.pt() << ", eta " << mu.eta()
225  << ", phi " << mu.phi() << ": found " << (out->size() - sizeBefore) << " seeds."
226  << std::endl;
227  }
228 
229  iEvent.put(std::move(out));
230 }
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
Definition: EventSetup.h:119
const TrajectoryStateUpdator * updator_
const Chi2MeasurementEstimatorBase * estimator_
const bool fromVertex_
Do inside-out.
trackerPropagator
Propagator used searching for hits.
Log< level::Error, false > LogError
#define LogTrace(id)
const edm::ESGetToken< Propagator, TrackingComponentsRecord > muonPropagatorToken_
const MagneticField * magfield_
const edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > magfieldToken_
std::unique_ptr< Propagator > SetPropagationDirection(Propagator const &iprop, PropagationDirection dir)
const bool debug_
Dump deug information.
int iEvent
Definition: GenABIO.cc:224
void doDebug(const reco::Track &tk) const
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
const Propagator * muonPropagator_
const edm::ESGetToken< TrajectoryStateUpdator, TrackingComponentsRecord > updatorToken_
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:652
const edm::EDGetTokenT< MeasurementTrackerEvent > measurementTrackerTag_
const GlobalTrackingGeometry * geometry_
StringCutObjectSelector< reco::Muon > selector_
Muon selection.
const edm::ESGetToken< GlobalTrackingGeometry, GlobalTrackingGeometryRecord > geometryToken_
edm::EDGetTokenT< edm::View< reco::Muon > > src_
Labels for input collections.
const int layersToTry_
How many layers to try.
HLT enums.
const edm::ESGetToken< Chi2MeasurementEstimatorBase, TrackingComponentsRecord > estimatorToken_
const edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > tkGeometryToken_
FreeTrajectoryState initialFreeState(const reco::Track &tk, const MagneticField *field, bool withErr=true)
def move(src, dest)
Definition: eostools.py:511
int doLayer(const GeometricSearchDet &layer, const TrajectoryStateOnSurface &state, std::vector< TrajectorySeed > &out, const Propagator &muon_propagator, const Propagator &tracker_propagator, const MeasurementTrackerEvent &mte) const
TrajectoryStateOnSurface innerStateOnSurface(const reco::Track &tk, const TrackingGeometry &geom, const MagneticField *field, bool withErr=true)
const edm::ESGetToken< Propagator, TrackingComponentsRecord > trackerPropagatorToken_
#define LogDebug(id)

Member Data Documentation

◆ debug_

const bool OutsideInMuonSeeder::debug_
private

Dump deug information.

Definition at line 83 of file OutsideInMuonSeeder.cc.

Referenced by doLayer(), and produce().

◆ errorRescaling_

const double OutsideInMuonSeeder::errorRescaling_
private

How much to rescale errors from STA.

Definition at line 62 of file OutsideInMuonSeeder.cc.

Referenced by doLayer().

◆ estimator_

const Chi2MeasurementEstimatorBase* OutsideInMuonSeeder::estimator_
private

Definition at line 79 of file OutsideInMuonSeeder.cc.

Referenced by doLayer(), and produce().

◆ estimatorToken_

const edm::ESGetToken<Chi2MeasurementEstimatorBase, TrackingComponentsRecord> OutsideInMuonSeeder::estimatorToken_
private

Definition at line 67 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ fromVertex_

const bool OutsideInMuonSeeder::fromVertex_
private

Do inside-out.

Definition at line 59 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ geometry_

const GlobalTrackingGeometry* OutsideInMuonSeeder::geometry_
private

Definition at line 78 of file OutsideInMuonSeeder.cc.

Referenced by doDebug(), and produce().

◆ geometryToken_

const edm::ESGetToken<GlobalTrackingGeometry, GlobalTrackingGeometryRecord> OutsideInMuonSeeder::geometryToken_
private

Definition at line 70 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ hitsToTry_

const int OutsideInMuonSeeder::hitsToTry_
private

How many hits to try on same layer.

Definition at line 56 of file OutsideInMuonSeeder.cc.

Referenced by doLayer().

◆ layersToTry_

const int OutsideInMuonSeeder::layersToTry_
private

How many layers to try.

Definition at line 53 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ magfield_

const MagneticField* OutsideInMuonSeeder::magfield_
private

Definition at line 76 of file OutsideInMuonSeeder.cc.

Referenced by doDebug(), and produce().

◆ magfieldToken_

const edm::ESGetToken<MagneticField, IdealMagneticFieldRecord> OutsideInMuonSeeder::magfieldToken_
private

Definition at line 69 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ maxEtaForTOB_

float const OutsideInMuonSeeder::maxEtaForTOB_
private

Definition at line 74 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ measurementTrackerTag_

const edm::EDGetTokenT<MeasurementTrackerEvent> OutsideInMuonSeeder::measurementTrackerTag_
private

Definition at line 66 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ minEtaForTEC_

float const OutsideInMuonSeeder::minEtaForTEC_
private

Definition at line 73 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ muonPropagator_

const Propagator* OutsideInMuonSeeder::muonPropagator_
private

Definition at line 77 of file OutsideInMuonSeeder.cc.

Referenced by doDebug(), and produce().

◆ muonPropagatorToken_

const edm::ESGetToken<Propagator, TrackingComponentsRecord> OutsideInMuonSeeder::muonPropagatorToken_
private

Definition at line 65 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ selector_

StringCutObjectSelector<reco::Muon> OutsideInMuonSeeder::selector_
private

Muon selection.

Definition at line 50 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ src_

edm::EDGetTokenT<edm::View<reco::Muon> > OutsideInMuonSeeder::src_
private

Labels for input collections.

Definition at line 47 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ tkGeometryToken_

const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> OutsideInMuonSeeder::tkGeometryToken_
private

Definition at line 71 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ trackerPropagatorToken_

const edm::ESGetToken<Propagator, TrackingComponentsRecord> OutsideInMuonSeeder::trackerPropagatorToken_
private

Definition at line 64 of file OutsideInMuonSeeder.cc.

Referenced by produce().

◆ updator_

const TrajectoryStateUpdator* OutsideInMuonSeeder::updator_
private

Definition at line 80 of file OutsideInMuonSeeder.cc.

Referenced by doLayer(), and produce().

◆ updatorToken_

const edm::ESGetToken<TrajectoryStateUpdator, TrackingComponentsRecord> OutsideInMuonSeeder::updatorToken_
private

Definition at line 68 of file OutsideInMuonSeeder.cc.

Referenced by produce().