CMS 3D CMS Logo

MkFitOutputConverter.cc
Go to the documentation of this file.
2 
7 
14 
20 
24 
27 
36 
39 
42 
43 // mkFit indludes
44 #include "LayerNumberConverter.h"
45 #include "Track.h"
46 
47 namespace {
48  template <typename T>
49  bool isBarrel(T subdet) {
50  return subdet == PixelSubdetector::PixelBarrel || subdet == StripSubdetector::TIB ||
51  subdet == StripSubdetector::TOB;
52  }
53 
54  template <typename T>
55  bool isEndcap(T subdet) {
56  return subdet == PixelSubdetector::PixelEndcap || subdet == StripSubdetector::TID ||
57  subdet == StripSubdetector::TEC;
58  }
59 } // namespace
60 
62 public:
63  explicit MkFitOutputConverter(edm::ParameterSet const& iConfig);
64  ~MkFitOutputConverter() override = default;
65 
66  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
67 
68 private:
69  void produce(edm::StreamID, edm::Event& iEvent, const edm::EventSetup& iSetup) const override;
70 
71  std::vector<const DetLayer*> createDetLayers(const mkfit::LayerNumberConverter& lnc,
73  const TrackerTopology& ttopo) const;
74 
76  const MkFitHitIndexMap& hitIndexMap,
78  const TrackerGeometry& geom,
79  const MagneticField& mf,
82  const TkClonerImpl& hitCloner,
83  const std::vector<const DetLayer*>& detLayers,
84  const mkfit::TrackVec& mkFitSeeds) const;
85 
86  std::pair<TrajectoryStateOnSurface, const GeomDet*> backwardFit(const FreeTrajectoryState& fts,
90  const TkClonerImpl& hitCloner,
91  bool lastHitWasInvalid,
92  bool lastHitWasChanged) const;
93 
94  std::pair<TrajectoryStateOnSurface, const GeomDet*> convertInnermostState(const FreeTrajectoryState& fts,
97  const Propagator& propagatorOpposite) const;
98 
115 };
116 
118  : hitsSeedsToken_{consumes<MkFitInputWrapper>(iConfig.getParameter<edm::InputTag>("hitsSeeds"))},
119  tracksToken_{consumes<MkFitOutputWrapper>(iConfig.getParameter<edm::InputTag>("tracks"))},
120  seedToken_{consumes<edm::View<TrajectorySeed>>(iConfig.getParameter<edm::InputTag>("seeds"))},
121  mteToken_{consumes<MeasurementTrackerEvent>(iConfig.getParameter<edm::InputTag>("measurementTrackerEvent"))},
122  geomToken_{esConsumes<TrackerGeometry, TrackerDigiGeometryRecord>()},
123  propagatorAlongToken_{
124  esConsumes<Propagator, TrackingComponentsRecord>(iConfig.getParameter<edm::ESInputTag>("propagatorAlong"))},
125  propagatorOppositeToken_{esConsumes<Propagator, TrackingComponentsRecord>(
126  iConfig.getParameter<edm::ESInputTag>("propagatorOpposite"))},
127  ttopoToken_{esConsumes<TrackerTopology, TrackerTopologyRcd>()},
128  mfToken_{esConsumes<MagneticField, IdealMagneticFieldRecord>()},
129  ttrhBuilderToken_{esConsumes<TransientTrackingRecHitBuilder, TransientRecHitRecord>(
130  iConfig.getParameter<edm::ESInputTag>("ttrhBuilder"))},
131  putTrackCandidateToken_{produces<TrackCandidateCollection>()},
132  putSeedStopInfoToken_{produces<std::vector<SeedStopInfo>>()},
133  backwardFitInCMSSW_{iConfig.getParameter<bool>("backwardFitInCMSSW")} {}
134 
137 
138  desc.add("hitsSeeds", edm::InputTag{"mkFitInputConverter"});
139  desc.add("tracks", edm::InputTag{"mkFitProducer"});
140  desc.add("seeds", edm::InputTag{"initialStepSeeds"});
141  desc.add("measurementTrackerEvent", edm::InputTag{"MeasurementTrackerEvent"});
142  desc.add("ttrhBuilder", edm::ESInputTag{"", "WithTrackAngle"});
143  desc.add("propagatorAlong", edm::ESInputTag{"", "PropagatorWithMaterial"});
144  desc.add("propagatorOpposite", edm::ESInputTag{"", "PropagatorWithMaterialOpposite"});
145  desc.add("backwardFitInCMSSW", false)
146  ->setComment("Do backward fit (to innermost hit) in CMSSW (true) or mkFit (false)");
147 
148  descriptions.addWithDefaultLabel(desc);
149 }
150 
152  const auto& seeds = iEvent.get(seedToken_);
153  const auto& hitsSeeds = iEvent.get(hitsSeedsToken_);
154  const auto& mte = iEvent.get(mteToken_);
155 
156  const auto& ttrhBuilder = iSetup.getData(ttrhBuilderToken_);
157  const auto* tkBuilder = dynamic_cast<TkTransientTrackingRecHitBuilder const*>(&ttrhBuilder);
158  if (!tkBuilder) {
159  throw cms::Exception("LogicError") << "TTRHBuilder must be of type TkTransientTrackingRecHitBuilder";
160  }
161 
162  // Convert mkfit presentation back to CMSSW
163  const auto detlayers =
164  createDetLayers(hitsSeeds.layerNumberConverter(), *(mte.geometricSearchTracker()), iSetup.getData(ttopoToken_));
167  hitsSeeds.hitIndexMap(),
168  seeds,
169  iSetup.getData(geomToken_),
170  iSetup.getData(mfToken_),
173  tkBuilder->cloner(),
174  detlayers,
175  hitsSeeds.seeds()));
176 
177  // TODO: SeedStopInfo is currently unfilled
178  iEvent.emplace(putSeedStopInfoToken_, seeds.size());
179 }
180 
181 std::vector<const DetLayer*> MkFitOutputConverter::createDetLayers(const mkfit::LayerNumberConverter& lnc,
183  const TrackerTopology& ttopo) const {
184  std::vector<const DetLayer*> dets(lnc.nLayers(), nullptr);
185 
186  auto isPlusSide = [&ttopo](const DetId& detid) {
187  return ttopo.side(detid) == static_cast<unsigned>(TrackerDetSide::PosEndcap);
188  };
189  auto setDet = [&lnc, &dets, &isPlusSide](
190  const int subdet, const int layer, const int isStereo, const DetId& detId, const DetLayer* lay) {
191  const int index = lnc.convertLayerNumber(subdet, layer, false, isStereo, isPlusSide(detId));
192  if (index < 0 or static_cast<unsigned>(index) >= dets.size()) {
193  throw cms::Exception("LogicError") << "Invalid mkFit layer index " << index << " for DetId " << detId
194  << " subdet " << subdet << " layer " << layer << " isStereo " << isStereo;
195  }
196  dets[index] = lay;
197  };
198  constexpr int monoLayer = 0;
199  constexpr int stereoLayer = 1;
200  for (const DetLayer* lay : tracker.allLayers()) {
201  const auto& comp = lay->basicComponents();
202  if (UNLIKELY(comp.empty())) {
203  throw cms::Exception("LogicError") << "Got a tracker layer (subdet " << lay->subDetector()
204  << ") with empty basicComponents.";
205  }
206  // First component is enough for layer and side information
207  const auto& detId = comp.front()->geographicalId();
208  const auto subdet = detId.subdetId();
209  const auto layer = ttopo.layer(detId);
210 
211  // TODO: mono/stereo structure is still hardcoded for phase0/1 strip tracker
212  setDet(subdet, layer, monoLayer, detId, lay);
213  if (((subdet == StripSubdetector::TIB or subdet == StripSubdetector::TOB) and (layer == 1 or layer == 2)) or
214  subdet == StripSubdetector::TID or subdet == StripSubdetector::TEC) {
215  setDet(subdet, layer, stereoLayer, detId, lay);
216  }
217  }
218 
219  return dets;
220 }
221 
223  const MkFitHitIndexMap& hitIndexMap,
225  const TrackerGeometry& geom,
226  const MagneticField& mf,
229  const TkClonerImpl& hitCloner,
230  const std::vector<const DetLayer*>& detLayers,
231  const mkfit::TrackVec& mkFitSeeds) const {
233  const auto& candidates = backwardFitInCMSSW_ ? mkFitOutput.candidateTracks() : mkFitOutput.fitTracks();
234  output.reserve(candidates.size());
235 
236  LogTrace("MkFitOutputConverter") << "Number of candidates " << mkFitOutput.candidateTracks().size();
237 
238  int candIndex = -1;
239  for (const auto& cand : candidates) {
240  ++candIndex;
241  LogTrace("MkFitOutputConverter") << "Candidate " << candIndex << " pT " << cand.pT() << " eta " << cand.momEta()
242  << " phi " << cand.momPhi() << " chi2 " << cand.chi2();
243 
244  // hits
246  // nTotalHits() gives sum of valid hits (nFoundHits()) and
247  // invalid/missing hits (up to a maximum of 32 inside mkFit,
248  // restriction to be lifted in the future)
249  const int nhits = cand.nTotalHits();
250  bool lastHitInvalid = false;
251  for (int i = 0; i < nhits; ++i) {
252  const auto& hitOnTrack = cand.getHitOnTrack(i);
253  LogTrace("MkFitOutputConverter") << " hit on layer " << hitOnTrack.layer << " index " << hitOnTrack.index;
254  if (hitOnTrack.index < 0) {
255  // See index-desc.txt file in mkFit for description of negative values
256  //
257  // In order to use the regular InvalidTrackingRecHit I'd need
258  // a GeomDet (and "unfortunately" that is needed in
259  // TrackProducer).
260  //
261  // I guess we could take the track state and propagate it to
262  // each layer to find the actual module the track crosses, and
263  // check whether it is active or not to be able to mark
264  // inactive hits
265  const auto* detLayer = detLayers.at(hitOnTrack.layer);
266  if (detLayer == nullptr) {
267  throw cms::Exception("LogicError") << "DetLayer for layer index " << hitOnTrack.layer << " is null!";
268  }
269  // In principle an InvalidTrackingRecHitNoDet could be
270  // inserted here, but it seems that it is best to deal with
271  // them in the TrackProducer.
272  lastHitInvalid = true;
273  } else {
274  recHits.push_back(hitIndexMap.hitPtr(MkFitHitIndexMap::MkFitHit{hitOnTrack.index, hitOnTrack.layer})->clone());
275  LogTrace("MkFitOutputConverter") << " pos " << recHits.back().globalPosition().x() << " "
276  << recHits.back().globalPosition().y() << " "
277  << recHits.back().globalPosition().z() << " mag2 "
278  << recHits.back().globalPosition().mag2() << " detid "
279  << recHits.back().geographicalId().rawId() << " cluster "
280  << hitIndexMap.clusterIndex(
281  MkFitHitIndexMap::MkFitHit{hitOnTrack.index, hitOnTrack.layer});
282  lastHitInvalid = false;
283  }
284  }
285 
286  const auto lastHitId = recHits.back().geographicalId();
287 
288  // MkFit hits are *not* in the order of propagation, sort by 3D radius for now (as we don't have loopers)
289  // TODO: Improve the sorting (extract keys? maybe even bubble sort would work well as the hits are almost in the correct order)
290  recHits.sort([](const auto& a, const auto& b) {
291  const auto asub = a.geographicalId().subdetId();
292  const auto bsub = b.geographicalId().subdetId();
293  if (asub != bsub) {
294  // Subdetector order (BPix, FPix, TIB, TID, TOB, TEC) corresponds also the navigation
295  return asub < bsub;
296  }
297 
298  const auto& apos = a.globalPosition();
299  const auto& bpos = b.globalPosition();
300 
301  if (isBarrel(asub)) {
302  return apos.perp2() < bpos.perp2();
303  }
304  return std::abs(apos.z()) < std::abs(bpos.z());
305  });
306 
307  const bool lastHitChanged = (recHits.back().geographicalId() != lastHitId); // TODO: make use of the bools
308 
309  // seed
310  const auto seedIndex = cand.label();
311  LogTrace("MkFitOutputConverter") << " from seed " << seedIndex << " seed hits";
312  const auto& mkseed = mkFitSeeds.at(cand.label());
313  for (int i = 0; i < mkseed.nTotalHits(); ++i) {
314  const auto& hitOnTrack = mkseed.getHitOnTrack(i);
315  LogTrace("MkFitOutputConverter") << " hit on layer " << hitOnTrack.layer << " index " << hitOnTrack.index;
316  // sanity check for now
317  const auto& candHitOnTrack = cand.getHitOnTrack(i);
318  if (hitOnTrack.layer != candHitOnTrack.layer) {
319  throw cms::Exception("LogicError")
320  << "Candidate " << candIndex << " from seed " << seedIndex << " hit " << i
321  << " has different layer in candidate (" << candHitOnTrack.layer << ") and seed (" << hitOnTrack.layer
322  << ")."
323  << " Hit indices are " << candHitOnTrack.index << " and " << hitOnTrack.index << ", respectively";
324  }
325  if (hitOnTrack.index != candHitOnTrack.index) {
326  throw cms::Exception("LogicError") << "Candidate " << candIndex << " from seed " << seedIndex << " hit " << i
327  << " has different hit index in candidate (" << candHitOnTrack.index
328  << ") and seed (" << hitOnTrack.index << ") on layer " << hitOnTrack.layer;
329  }
330  }
331 
332  // state
333  auto state = cand.state(); // copy because have to modify
334  state.convertFromCCSToCartesian();
335  const auto& param = state.parameters;
336  const auto& err = state.errors;
338  for (int i = 0; i < 6; ++i) {
339  for (int j = i; j < 6; ++j) {
340  cov[i][j] = err.At(i, j);
341  }
342  }
343 
344  auto fts = FreeTrajectoryState(
346  GlobalPoint(param[0], param[1], param[2]), GlobalVector(param[3], param[4], param[5]), state.charge, &mf),
348  if (!fts.curvilinearError().posDef()) {
349  edm::LogWarning("MkFitOutputConverter") << "Curvilinear error not pos-def\n"
350  << fts.curvilinearError().matrix() << "\noriginal 6x6 covariance matrix\n"
351  << cov << "\ncandidate ignored";
352  continue;
353  }
354 
355  auto tsosDet =
357  ? backwardFit(fts, recHits, propagatorAlong, propagatorOpposite, hitCloner, lastHitInvalid, lastHitChanged)
359  if (!tsosDet.first.isValid()) {
360  edm::LogWarning("MkFitOutputConverter")
361  << "Backward fit of candidate " << candIndex << " failed, ignoring the candidate";
362  continue;
363  }
364 
365  // convert to persistent, from CkfTrackCandidateMakerBase
366  auto pstate = trajectoryStateTransform::persistentState(tsosDet.first, tsosDet.second->geographicalId().rawId());
367 
368  output.emplace_back(
369  recHits,
370  seeds.at(seedIndex),
371  pstate,
372  seeds.refAt(seedIndex),
373  0, // mkFit does not produce loopers, so set nLoops=0
374  static_cast<uint8_t>(StopReason::UNINITIALIZED) // TODO: ignore details of stopping reason as well for now
375  );
376  }
377  return output;
378 }
379 
380 std::pair<TrajectoryStateOnSurface, const GeomDet*> MkFitOutputConverter::backwardFit(
381  const FreeTrajectoryState& fts,
385  const TkClonerImpl& hitCloner,
386  bool lastHitWasInvalid,
387  bool lastHitWasChanged) const {
388  // First filter valid hits as in TransientInitialStateEstimator
390 
391  for (int i = hits.size() - 1; i >= 0; --i) {
392  if (hits[i].det()) {
393  // TransientTrackingRecHit::ConstRecHitContainer has shared_ptr,
394  // and it is passed to backFitter below so it is really needed
395  // to keep the interface. Since we keep the ownership in hits,
396  // let's disable the deleter.
397  firstHits.emplace_back(&(hits[i]), edm::do_nothing_deleter{});
398  }
399  }
400 
401  // Then propagate along to the surface of the last hit to get a TSOS
402  const auto& lastHitSurface = firstHits.front()->det()->surface();
403 
404  const Propagator* tryFirst = &propagatorAlong;
405  const Propagator* trySecond = &propagatorOpposite;
406  if (lastHitWasInvalid || lastHitWasChanged) {
407  LogTrace("MkFitOutputConverter") << "Propagating first opposite, then along, because lastHitWasInvalid? "
408  << lastHitWasInvalid << " or lastHitWasChanged? " << lastHitWasChanged;
409  std::swap(tryFirst, trySecond);
410  } else {
411  const auto lastHitSubdet = firstHits.front()->geographicalId().subdetId();
412  const auto& surfacePos = lastHitSurface.position();
413  const auto& lastHitPos = firstHits.front()->globalPosition();
414  bool doSwitch = false;
415  if (isBarrel(lastHitSubdet)) {
416  doSwitch = (surfacePos.perp2() < lastHitPos.perp2());
417  } else {
418  doSwitch = (surfacePos.z() < lastHitPos.z());
419  }
420  if (doSwitch) {
421  LogTrace("MkFitOutputConverter")
422  << "Propagating first opposite, then along, because surface is inner than the hit; surface perp2 "
423  << surfacePos.perp() << " hit " << lastHitPos.perp2() << " surface z " << surfacePos.z() << " hit "
424  << lastHitPos.z();
425 
426  std::swap(tryFirst, trySecond);
427  }
428  }
429 
430  auto tsosDouble = tryFirst->propagateWithPath(fts, lastHitSurface);
431  if (!tsosDouble.first.isValid()) {
432  LogDebug("MkFitOutputConverter") << "Propagating to startingState failed, trying in another direction next";
433  tsosDouble = trySecond->propagateWithPath(fts, lastHitSurface);
434  }
435  auto& startingState = tsosDouble.first;
436 
437  if (!startingState.isValid()) {
438  edm::LogWarning("MkFitOutputConverter")
439  << "startingState is not valid, FTS was\n"
440  << fts << " last hit surface surface:"
441  << "\n position " << lastHitSurface.position() << "\n phiSpan " << lastHitSurface.phiSpan().first << ","
442  << lastHitSurface.phiSpan().first << "\n rSpan " << lastHitSurface.rSpan().first << ","
443  << lastHitSurface.rSpan().first << "\n zSpan " << lastHitSurface.zSpan().first << ","
444  << lastHitSurface.zSpan().first;
445  return std::pair<TrajectoryStateOnSurface, const GeomDet*>();
446  }
447 
448  // Then return back to the logic from TransientInitialStateEstimator
449  startingState.rescaleError(100.);
450 
451  // avoid cloning
452  KFUpdator const aKFUpdator;
453  Chi2MeasurementEstimator const aChi2MeasurementEstimator(100., 3);
454  KFTrajectoryFitter backFitter(
455  &propagatorAlong, &aKFUpdator, &aChi2MeasurementEstimator, firstHits.size(), nullptr, &hitCloner);
456 
457  // assume for now that the propagation in mkfit always alongMomentum
458  PropagationDirection backFitDirection = oppositeToMomentum;
459 
460  // only direction matters in this context
462 
463  // ignore loopers for now
464  Trajectory fitres = backFitter.fitOne(fakeSeed, firstHits, startingState, TrajectoryFitter::standard);
465 
466  LogDebug("MkFitOutputConverter") << "using a backward fit of :" << firstHits.size() << " hits, starting from:\n"
467  << startingState << " to get the estimate of the initial state of the track.";
468 
469  if (!fitres.isValid()) {
470  edm::LogWarning("MkFitOutputConverter") << "FitTester: first hits fit failed";
471  return std::pair<TrajectoryStateOnSurface, const GeomDet*>();
472  }
473 
474  TrajectoryMeasurement const& firstMeas = fitres.lastMeasurement();
475 
476  // magnetic field can be different!
477  TrajectoryStateOnSurface firstState(firstMeas.updatedState().localParameters(),
478  firstMeas.updatedState().localError(),
479  firstMeas.updatedState().surface(),
480  propagatorAlong.magneticField());
481 
482  firstState.rescaleError(100.);
483 
484  LogDebug("MkFitOutputConverter") << "the initial state is found to be:\n:" << firstState
485  << "\n it's field pointer is: " << firstState.magneticField()
486  << "\n the pointer from the state of the back fit was: "
487  << firstMeas.updatedState().magneticField();
488 
489  return std::make_pair(firstState, firstMeas.recHit()->det());
490 }
491 
492 std::pair<TrajectoryStateOnSurface, const GeomDet*> MkFitOutputConverter::convertInnermostState(
493  const FreeTrajectoryState& fts,
496  const Propagator& propagatorOpposite) const {
497  auto det = hits[0].det();
498  if (det == nullptr) {
499  throw cms::Exception("LogicError") << "Got nullptr from the first hit det()";
500  }
501 
502  const auto& firstHitSurface = det->surface();
503 
504  auto tsosDouble = propagatorAlong.propagateWithPath(fts, firstHitSurface);
505  if (!tsosDouble.first.isValid()) {
506  LogDebug("MkFitOutputConverter") << "Propagating to startingState along momentum failed, trying opposite next";
507  tsosDouble = propagatorOpposite.propagateWithPath(fts, firstHitSurface);
508  }
509 
510  return std::make_pair(tsosDouble.first, det);
511 }
512 
Propagator.h
MkFitOutputConverter::propagatorAlongToken_
edm::ESGetToken< Propagator, TrackingComponentsRecord > propagatorAlongToken_
Definition: MkFitOutputConverter.cc:104
edm::StreamID
Definition: StreamID.h:30
Chi2MeasurementEstimator.h
TrackerTopology::side
unsigned int side(const DetId &id) const
Definition: TrackerTopology.cc:28
mps_fire.i
i
Definition: mps_fire.py:428
edm::ESInputTag
Definition: ESInputTag.h:87
MeasurementTrackerEvent.h
PixelSubdetector.h
MkFitOutputWrapper::fitTracks
mkfit::TrackVec const & fitTracks() const
Definition: MkFitOutputWrapper.h:23
PixelSubdetector::PixelEndcap
Definition: PixelSubdetector.h:11
TrackerGeometry.h
PixelSubdetector::PixelBarrel
Definition: PixelSubdetector.h:11
MkFitOutputConverter::ttrhBuilderToken_
edm::ESGetToken< TransientTrackingRecHitBuilder, TransientRecHitRecord > ttrhBuilderToken_
Definition: MkFitOutputConverter.cc:108
TrackCandidateCollection.h
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
DetLayer
Definition: DetLayer.h:21
convertSQLitetoXML_cfg.output
output
Definition: convertSQLitetoXML_cfg.py:72
MkFitOutputConverter::backwardFitInCMSSW_
bool backwardFitInCMSSW_
Definition: MkFitOutputConverter.cc:114
edm::EDGetTokenT< MkFitInputWrapper >
edm::EDPutTokenT< TrackCandidateCollection >
MkFitOutputConverter::MkFitOutputConverter
MkFitOutputConverter(edm::ParameterSet const &iConfig)
Definition: MkFitOutputConverter.cc:117
TrackerTopology
Definition: TrackerTopology.h:16
edm::do_nothing_deleter
Definition: do_nothing_deleter.h:34
trajectoryStateTransform::persistentState
PTrajectoryStateOnDet persistentState(const TrajectoryStateOnSurface &ts, unsigned int detid)
Definition: TrajectoryStateTransform.cc:14
TransientRecHitRecord.h
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
MkFitOutputWrapper.h
oppositeToMomentum
Definition: PropagationDirection.h:4
TrackerTopology::layer
unsigned int layer(const DetId &id) const
Definition: TrackerTopology.cc:47
InitialStep_cff.hitsSeeds
hitsSeeds
Definition: InitialStep_cff.py:233
MkFitOutputConverter::putSeedStopInfoToken_
edm::EDPutTokenT< std::vector< SeedStopInfo > > putSeedStopInfoToken_
Definition: MkFitOutputConverter.cc:110
MkFitOutputConverter::seedToken_
edm::EDGetTokenT< edm::View< TrajectorySeed > > seedToken_
Definition: MkFitOutputConverter.cc:101
MkFitHitIndexMap::clusterIndex
size_t clusterIndex(MkFitHit hit) const
Get CMSSW cluster index (currently used only for debugging)
Definition: MkFitHitIndexMap.h:64
TrajectoryMeasurement::updatedState
TrajectoryStateOnSurface const & updatedState() const
Definition: TrajectoryMeasurement.h:184
FreeTrajectoryState::position
GlobalPoint position() const
Definition: FreeTrajectoryState.h:67
GlobalVector
Global3DVector GlobalVector
Definition: GlobalVector.h:10
MkFitOutputConverter::backwardFit
std::pair< TrajectoryStateOnSurface, const GeomDet * > backwardFit(const FreeTrajectoryState &fts, const edm::OwnVector< TrackingRecHit > &hits, const Propagator &propagatorAlong, const Propagator &propagatorOpposite, const TkClonerImpl &hitCloner, bool lastHitWasInvalid, bool lastHitWasChanged) const
Definition: MkFitOutputConverter.cc:380
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
AlCaHLTBitMon_QueryRunRegistry.comp
comp
Definition: AlCaHLTBitMon_QueryRunRegistry.py:249
TkTransientTrackingRecHitBuilder.h
MkFitOutputConverter::convertInnermostState
std::pair< TrajectoryStateOnSurface, const GeomDet * > convertInnermostState(const FreeTrajectoryState &fts, const edm::OwnVector< TrackingRecHit > &hits, const Propagator &propagatorAlong, const Propagator &propagatorOpposite) const
Definition: MkFitOutputConverter.cc:492
MkFitHitIndexMap::hitPtr
const TrackingRecHit * hitPtr(MkFitHit hit) const
Get CMSSW hit pointer.
Definition: MkFitHitIndexMap.h:61
MkFitOutputConverter::hitsSeedsToken_
edm::EDGetTokenT< MkFitInputWrapper > hitsSeedsToken_
Definition: MkFitOutputConverter.cc:99
Propagator
Definition: Propagator.h:44
DetId
Definition: DetId.h:17
MkFitOutputConverter::ttrhBuilderName_
std::string ttrhBuilderName_
Definition: MkFitOutputConverter.cc:111
GeometricSearchTracker.h
UNLIKELY
#define UNLIKELY(x)
Definition: Likely.h:21
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
MakerMacros.h
MkFitOutputConverter::geomToken_
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord > geomToken_
Definition: MkFitOutputConverter.cc:103
TrackerTopology.h
MkFitOutputConverter::propagatorOppositeToken_
edm::ESGetToken< Propagator, TrackingComponentsRecord > propagatorOppositeToken_
Definition: MkFitOutputConverter.cc:105
TrackerTopologyRcd.h
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
std::swap
void swap(edm::DataFrameContainer &lhs, edm::DataFrameContainer &rhs)
Definition: DataFrameContainer.h:209
AlgebraicSymMatrix66
ROOT::Math::SMatrix< double, 6, 6, ROOT::Math::MatRepSym< double, 6 > > AlgebraicSymMatrix66
Definition: AlgebraicROOTObjects.h:24
Chi2MeasurementEstimator_cfi.Chi2MeasurementEstimator
Chi2MeasurementEstimator
Definition: Chi2MeasurementEstimator_cfi.py:5
IdealMagneticFieldRecord.h
MkFitOutputConverter::~MkFitOutputConverter
~MkFitOutputConverter() override=default
relativeConstraints.geom
geom
Definition: relativeConstraints.py:72
StripSubdetector::TIB
static constexpr auto TIB
Definition: StripSubdetector.h:16
GlobalTrajectoryParameters
Definition: GlobalTrajectoryParameters.h:15
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
MkFitOutputWrapper::candidateTracks
mkfit::TrackVec const & candidateTracks() const
Definition: MkFitOutputWrapper.h:22
nhits
Definition: HIMultiTrackSelector.h:42
TrajectorySeed.h
b
double b
Definition: hdecay.h:118
edm::global::EDProducer
Definition: EDProducer.h:32
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
FastTrackerRecHitMaskProducer_cfi.recHits
recHits
Definition: FastTrackerRecHitMaskProducer_cfi.py:8
TrajectoryStateOnSurface::localParameters
const LocalTrajectoryParameters & localParameters() const
Definition: TrajectoryStateOnSurface.h:73
MkFitOutputConverter::propagatorAlongName_
std::string propagatorAlongName_
Definition: MkFitOutputConverter.cc:112
PbPb_ZMuSkimMuonDPG_cff.tracker
tracker
Definition: PbPb_ZMuSkimMuonDPG_cff.py:60
InitialStep_cff.seeds
seeds
Definition: InitialStep_cff.py:230
PixelPluginsPhase0_cfi.isBarrel
isBarrel
Definition: PixelPluginsPhase0_cfi.py:17
edm::View
Definition: CaloClusterFwd.h:14
mkfit::TrackVec
std::vector< Track > TrackVec
Definition: MkFitInputWrapper.h:14
TrackerDigiGeometryRecord.h
MkFitOutputConverter::propagatorOppositeName_
std::string propagatorOppositeName_
Definition: MkFitOutputConverter.cc:113
KFUpdator.h
TrajectoryFitter::standard
Definition: TrajectoryFitter.h:21
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
edm::ParameterSet
Definition: ParameterSet.h:47
TrackCandidateCollection
std::vector< TrackCandidate > TrackCandidateCollection
Definition: TrackCandidateCollection.h:7
a
double a
Definition: hdecay.h:119
HLT_FULL_cff.propagatorOpposite
propagatorOpposite
Definition: HLT_FULL_cff.py:116
Event.h
TrackingRecHit::ConstRecHitContainer
std::vector< ConstRecHitPointer > ConstRecHitContainer
Definition: TrackingRecHit.h:32
MkFitOutputConverter::putTrackCandidateToken_
edm::EDPutTokenT< TrackCandidateCollection > putTrackCandidateToken_
Definition: MkFitOutputConverter.cc:109
Trajectory::lastMeasurement
TrajectoryMeasurement const & lastMeasurement() const
Definition: Trajectory.h:150
MkFitOutputConverter::ttopoToken_
edm::ESGetToken< TrackerTopology, TrackerTopologyRcd > ttopoToken_
Definition: MkFitOutputConverter.cc:106
cand
Definition: decayParser.h:32
iEvent
int iEvent
Definition: GenABIO.cc:224
MkFitInputWrapper.h
TkClonerImpl.h
MagneticField.h
TrackerDetSide.h
edm::EventSetup
Definition: EventSetup.h:57
submitPVResolutionJobs.err
err
Definition: submitPVResolutionJobs.py:85
TrackingRecHit::clone
virtual TrackingRecHit * clone() const =0
edm::ESGetToken< TrackerGeometry, TrackerDigiGeometryRecord >
MkFitOutputConverter::tracksToken_
edm::EDGetTokenT< MkFitOutputWrapper > tracksToken_
Definition: MkFitOutputConverter.cc:100
MkFitOutputConverter::mteToken_
edm::EDGetTokenT< MeasurementTrackerEvent > mteToken_
Definition: MkFitOutputConverter.cc:102
TrajectoryStateOnSurface::rescaleError
void rescaleError(double factor)
Definition: TrajectoryStateOnSurface.h:82
edm::EventSetup::getData
bool getData(T &iHolder) const
Definition: EventSetup.h:120
TrackerDetSide::PosEndcap
TrajectoryMeasurement::recHit
ConstRecHitPointer const & recHit() const
Definition: TrajectoryMeasurement.h:190
HLT_FULL_cff.propagatorAlong
propagatorAlong
Definition: HLT_FULL_cff.py:118
CartesianTrajectoryError
Definition: CartesianTrajectoryError.h:15
MkFitOutputConverter::mfToken_
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > mfToken_
Definition: MkFitOutputConverter.cc:107
MkFitOutputConverter::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: MkFitOutputConverter.cc:135
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
TkClonerImpl
Definition: TkClonerImpl.h:12
StripSubdetector::TEC
static constexpr auto TEC
Definition: StripSubdetector.h:19
MkFitHitIndexMap
Definition: MkFitHitIndexMap.h:15
RunInfoPI::state
state
Definition: RunInfoPayloadInspectoHelper.h:16
FreeTrajectoryState
Definition: FreeTrajectoryState.h:27
SeedStopInfo.h
Trajectory
Definition: Trajectory.h:38
T
long double T
Definition: Basic3DVectorLD.h:48
HLT_FULL_cff.candidates
candidates
Definition: HLT_FULL_cff.py:55051
StopReason::UNINITIALIZED
TrackingComponentsRecord.h
Exception
Definition: hltDiff.cc:246
GeometricSearchTracker
Definition: GeometricSearchTracker.h:14
PropagationDirection
PropagationDirection
Definition: PropagationDirection.h:4
MkFitHitIndexMap::MkFitHit::index
int index() const
Definition: MkFitHitIndexMap.h:24
MkFitOutputConverter::convertCandidates
TrackCandidateCollection convertCandidates(const MkFitOutputWrapper &mkFitOutput, const MkFitHitIndexMap &hitIndexMap, const edm::View< TrajectorySeed > &seeds, const TrackerGeometry &geom, const MagneticField &mf, const Propagator &propagatorAlong, const Propagator &propagatorOpposite, const TkClonerImpl &hitCloner, const std::vector< const DetLayer * > &detLayers, const mkfit::TrackVec &mkFitSeeds) const
Definition: MkFitOutputConverter.cc:222
StripSubdetector::TOB
static constexpr auto TOB
Definition: StripSubdetector.h:18
TrajectorySeed
Definition: TrajectorySeed.h:18
or
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
PropagatorWithMaterial.cc
Propagator::propagateWithPath
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const FreeTrajectoryState &, const Surface &) const final
Definition: Propagator.cc:10
TrajectoryStateTransform.h
TrajectoryStateOnSurface::surface
const SurfaceType & surface() const
Definition: TrajectoryStateOnSurface.h:78
AlignmentPI::index
index
Definition: AlignmentPayloadInspectorHelper.h:46
KFTrajectoryFitter.h
MkFitOutputWrapper
Definition: MkFitOutputWrapper.h:11
TransientTrackingRecHitBuilder.h
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:224
PTrajectoryStateOnDet
Definition: PTrajectoryStateOnDet.h:10
ParameterSet.h
MkFitOutputConverter::produce
void produce(edm::StreamID, edm::Event &iEvent, const edm::EventSetup &iSetup) const override
Definition: MkFitOutputConverter.cc:151
MkFitHitIndexMap::MkFitHit
Definition: MkFitHitIndexMap.h:19
EDProducer.h
InvalidTrackingRecHit.h
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::Event
Definition: Event.h:73
TrajectoryStateOnSurface::localError
const LocalTrajectoryError & localError() const
Definition: TrajectoryStateOnSurface.h:77
MagneticField
Definition: MagneticField.h:19
TrajectoryMeasurement
Definition: TrajectoryMeasurement.h:25
MkFitOutputConverter::createDetLayers
std::vector< const DetLayer * > createDetLayers(const mkfit::LayerNumberConverter &lnc, const GeometricSearchTracker &tracker, const TrackerTopology &ttopo) const
Definition: MkFitOutputConverter.cc:181
GeomDetEnumerators::isEndcap
bool isEndcap(GeomDetEnumerators::SubDetector m)
Definition: GeomDetEnumerators.cc:62
StripSubdetector.h
TrajectoryStateOnSurface::magneticField
const MagneticField * magneticField() const
Definition: TrajectoryStateOnSurface.h:62
MkFitOutputConverter
Definition: MkFitOutputConverter.cc:61
edm::InputTag
Definition: InputTag.h:15
do_nothing_deleter.h
KFUpdator
Definition: KFUpdator.h:32
StripSubdetector::TID
static constexpr auto TID
Definition: StripSubdetector.h:17
Trajectory::isValid
bool isValid() const
Definition: Trajectory.h:257
edm::ConfigurationDescriptions::addWithDefaultLabel
void addWithDefaultLabel(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:87
edm::OwnVector< TrackingRecHit >
TrackerGeometry
Definition: TrackerGeometry.h:14