CMS 3D CMS Logo

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

#include <CosmicMuonSmoother.h>

Inheritance diagram for CosmicMuonSmoother:
TrajectorySmoother

Public Member Functions

CosmicMuonSmootherclone () const override
 
 CosmicMuonSmoother (const edm::ParameterSet &, const MuonServiceProxy *service)
 
const Chi2MeasurementEstimatorestimator () const
 
std::vector< Trajectoryfit (const Trajectory &) const
 
std::vector< Trajectoryfit (const TrajectorySeed &seed, const ConstRecHitContainer &hits, const TrajectoryStateOnSurface &firstPredTsos) const
 
const PropagatorpropagatorAlong () const
 
const PropagatorpropagatorOpposite () const
 
void setHitCloner (TkCloner const *hc) override
 
TrajectoryContainer trajectories (const Trajectory &traj) const override
 
virtual TrajectoryContainer trajectories (const TrajectorySeed &seed, const ConstRecHitContainer &hits, const TrajectoryStateOnSurface &firstPredTsos) const
 refit trajectory More...
 
Trajectory trajectory (const Trajectory &) const override
 
const KFUpdatorupdator () const
 
const CosmicMuonUtilitiesutilities () const
 
 ~CosmicMuonSmoother () override
 
- Public Member Functions inherited from TrajectorySmoother
virtual ~TrajectorySmoother ()
 

Private Member Functions

TrajectoryStateOnSurface initialState (const Trajectory &) const
 
std::vector< Trajectorysmooth (const std::vector< Trajectory > &) const
 
std::vector< Trajectorysmooth (const Trajectory &) const
 
void sortHitsAlongMom (ConstRecHitContainer &hits, const TrajectoryStateOnSurface &) const
 

Private Attributes

std::string category_
 
double theErrorRescaling
 
const Chi2MeasurementEstimatortheEstimator
 
std::string thePropagatorAlongName
 
std::string thePropagatorOppositeName
 
const MuonServiceProxytheService
 
const KFUpdatortheUpdator
 
const CosmicMuonUtilitiestheUtilities
 

Additional Inherited Members

- Public Types inherited from TrajectorySmoother
typedef std::vector< TrajectoryTrajectoryContainer
 
typedef TrajectoryContainer::iterator TrajectoryIterator
 

Detailed Description

Definition at line 38 of file CosmicMuonSmoother.h.

Constructor & Destructor Documentation

◆ CosmicMuonSmoother()

CosmicMuonSmoother::CosmicMuonSmoother ( const edm::ParameterSet par,
const MuonServiceProxy service 
)

Definition at line 32 of file CosmicMuonSmoother.cc.

32  : theService(service) {
33  theUpdator = new KFUpdator;
36  thePropagatorAlongName = par.getParameter<string>("PropagatorAlong");
37  thePropagatorOppositeName = par.getParameter<string>("PropagatorOpposite");
38  theErrorRescaling = par.getParameter<double>("RescalingFactor");
39 
40  category_ = "Muon|RecoMuon|CosmicMuon|CosmicMuonSmoother";
41 }

References category_, Chi2MeasurementEstimator_cfi::Chi2MeasurementEstimator, edm::ParameterSet::getParameter(), theErrorRescaling, theEstimator, thePropagatorAlongName, thePropagatorOppositeName, theUpdator, and theUtilities.

Referenced by clone().

◆ ~CosmicMuonSmoother()

CosmicMuonSmoother::~CosmicMuonSmoother ( )
override

Definition at line 46 of file CosmicMuonSmoother.cc.

46  {
47  if (theUpdator)
48  delete theUpdator;
49  if (theUtilities)
50  delete theUtilities;
51  if (theEstimator)
52  delete theEstimator;
53 }

References theEstimator, theUpdator, and theUtilities.

Member Function Documentation

◆ clone()

CosmicMuonSmoother* CosmicMuonSmoother::clone ( void  ) const
inlineoverridevirtual

Implements TrajectorySmoother.

Definition at line 49 of file CosmicMuonSmoother.h.

49 { return new CosmicMuonSmoother(*this); }

References CosmicMuonSmoother().

◆ estimator()

const Chi2MeasurementEstimator* CosmicMuonSmoother::estimator ( void  ) const
inline

Definition at line 64 of file CosmicMuonSmoother.h.

64 { return theEstimator; }

References theEstimator.

◆ fit() [1/2]

vector< Trajectory > CosmicMuonSmoother::fit ( const Trajectory t) const

Definition at line 93 of file CosmicMuonSmoother.cc.

93  {
94  if (t.empty())
95  return vector<Trajectory>();
96 
97  LogTrace(category_) << "fit begin (trajectory) ";
98 
100  if (!firstTsos.isValid()) {
101  LogTrace(category_) << "Error: firstTsos invalid. ";
102  return vector<Trajectory>();
103  }
104 
105  LogTrace(category_) << "firstTsos: " << firstTsos;
106 
107  ConstRecHitContainer hits = t.recHits();
108  LogTrace(category_) << "hits: " << hits.size();
109  LogTrace(category_) << "hit front" << hits.front()->globalPosition() << " hit back" << hits.back()->globalPosition();
110 
111  sortHitsAlongMom(hits, firstTsos);
112 
113  LogTrace(category_) << "after sorting hit front" << hits.front()->globalPosition() << " hit back"
114  << hits.back()->globalPosition();
115 
116  return fit(t.seed(), hits, firstTsos);
117 }

References category_, hfClusterShapes_cfi::hits, initialState(), TrajectoryStateOnSurface::isValid(), LogTrace, sortHitsAlongMom(), and submitPVValidationJobs::t.

Referenced by CosmicMuonTrajectoryBuilder::flipTrajectory(), trackingPlots.Iteration::modules(), trajectories(), GlobalCosmicMuonTrajectoryBuilder::trajectories(), and trajectory().

◆ fit() [2/2]

vector< Trajectory > CosmicMuonSmoother::fit ( const TrajectorySeed seed,
const ConstRecHitContainer hits,
const TrajectoryStateOnSurface firstPredTsos 
) const

Definition at line 122 of file CosmicMuonSmoother.cc.

124  {
125  LogTrace(category_) << "fit begin (seed, hit, tsos).";
126 
127  if (hits.empty()) {
128  LogTrace(category_) << "Error: empty hits container.";
129  return vector<Trajectory>();
130  }
131 
132  Trajectory myTraj(seed, alongMomentum);
133 
134  TrajectoryStateOnSurface predTsos(firstPredTsos);
135  LogTrace(category_) << "first pred TSOS: " << predTsos;
136 
137  if (!predTsos.isValid()) {
138  LogTrace(category_) << "Error: firstTsos invalid.";
139  return vector<Trajectory>();
140  }
141  TrajectoryStateOnSurface currTsos;
142 
143  if (hits.front()->isValid()) {
144  // FIXME FIXME CLONE !!!
145  // TrackingRecHit::RecHitPointer preciseHit = hits.front()->clone(predTsos);
146  auto preciseHit = hits.front();
147 
148  LogTrace(category_) << "first hit is at det " << hits.front()->det()->surface().position();
149 
150  currTsos = theUpdator->update(predTsos, *preciseHit);
151  if (!currTsos.isValid()) {
152  edm::LogWarning(category_) << "an updated state is not valid. killing the trajectory.";
153  return vector<Trajectory>();
154  }
155  myTraj.push(TrajectoryMeasurement(
156  predTsos, currTsos, hits.front(), theEstimator->estimate(predTsos, *hits.front()).second));
157  if (currTsos.isValid())
158  LogTrace(category_) << "first curr TSOS: " << currTsos;
159 
160  } else {
161  currTsos = predTsos;
162  myTraj.push(TrajectoryMeasurement(predTsos, hits.front()));
163  }
164  //const TransientTrackingRecHit& firsthit = *hits.front();
165 
166  for (ConstRecHitContainer::const_iterator ihit = hits.begin() + 1; ihit != hits.end(); ++ihit) {
167  if (!(**ihit).isValid()) {
168  LogTrace(category_) << "Error: invalid hit.";
169  continue;
170  }
171  if (currTsos.isValid() && currTsos.globalMomentum().mag2() > 1e-18f) {
172  LogTrace(category_) << "current pos " << currTsos.globalPosition() << "mom " << currTsos.globalMomentum();
173  } else {
174  LogTrace(category_) << "current state invalid or momentum is too low";
175  //logically, there's no way out: can't expect a valid result out of an invalid state
176  LogTrace(category_) << "Input state is not valid. This loop over hits is doomed: breaking out";
177  break;
178  }
179 
180  predTsos = propagatorAlong()->propagate(currTsos, (**ihit).det()->surface());
181  LogTrace(category_) << "predicted state propagate directly " << predTsos.isValid();
182 
183  if (!predTsos.isValid()) {
184  LogTrace(category_) << "step-propagating from " << currTsos.globalPosition()
185  << " to position: " << (*ihit)->globalPosition();
186  predTsos = theUtilities->stepPropagate(currTsos, (*ihit), *propagatorAlong());
187  }
188  if (!predTsos.isValid() && (fabs(theService->magneticField()->inTesla(GlobalPoint(0, 0, 0)).z()) < 0.01) &&
189  (theService->propagator("StraightLinePropagator").isValid())) {
190  LogTrace(category_) << "straight-line propagating from " << currTsos.globalPosition()
191  << " to position: " << (*ihit)->globalPosition();
192  predTsos = theService->propagator("StraightLinePropagator")->propagate(currTsos, (**ihit).det()->surface());
193  }
194  if (predTsos.isValid()) {
195  LogTrace(category_) << "predicted pos " << predTsos.globalPosition() << "mom " << predTsos.globalMomentum();
196  } else {
197  LogTrace(category_) << "predicted state invalid";
198  }
199  if (!predTsos.isValid() || predTsos.globalPosition().mag2() > 1.e12) {
200  LogTrace(category_) << "Error: predTsos is still invalid or too far in forward fit.";
201  // return vector<Trajectory>();
202  continue;
203  } else if ((**ihit).isValid()) {
204  // FIXME FIXME CLONE !!!
205  // update (FIXME!)
206  // TransientTrackingRecHit::RecHitPointer preciseHit = (**ihit).clone(predTsos);
207  auto preciseHit = *ihit;
208 
209  if (!preciseHit->isValid()) {
210  currTsos = predTsos;
211  myTraj.push(TrajectoryMeasurement(predTsos, *ihit));
212  } else {
213  currTsos = theUpdator->update(predTsos, *preciseHit);
214  if (!currTsos.isValid()) {
215  edm::LogWarning(category_) << "an updated state is not valid. killing the trajectory.";
216  return vector<Trajectory>();
217  }
218  myTraj.push(TrajectoryMeasurement(
219  predTsos, currTsos, preciseHit, theEstimator->estimate(predTsos, *preciseHit).second));
220  }
221  } else {
222  currTsos = predTsos;
223  myTraj.push(TrajectoryMeasurement(predTsos, *ihit));
224  }
225  }
226 
227  std::vector<TrajectoryMeasurement> mytms = myTraj.measurements();
228  LogTrace(category_) << "fit result " << mytms.size();
229  for (std::vector<TrajectoryMeasurement>::const_iterator itm = mytms.begin(); itm != mytms.end(); ++itm) {
230  LogTrace(category_) << "updated pos " << itm->updatedState().globalPosition() << "mom "
231  << itm->updatedState().globalMomentum();
232  }
233 
234  return vector<Trajectory>(1, myTraj);
235 }

References alongMomentum, category_, MillePedeFileConverter_cfg::e, f, TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), hfClusterShapes_cfi::hits, TrajectoryStateOnSurface::isValid(), LogTrace, PV3DBase< T, PVType, FrameType >::mag2(), Trajectory::measurements(), Propagator::propagate(), propagatorAlong(), Trajectory::push(), edm::second(), fileCollector::seed, CosmicMuonUtilities::stepPropagate(), TrajectoryStateOnSurface::surface(), theEstimator, theService, theUpdator, theUtilities, and KFUpdator::update().

Referenced by trackingPlots.Iteration::modules().

◆ initialState()

TrajectoryStateOnSurface CosmicMuonSmoother::initialState ( const Trajectory t) const
private

Definition at line 402 of file CosmicMuonSmoother.cc.

402  {
403  if (t.empty())
404  return TrajectoryStateOnSurface();
405 
406  if (!t.firstMeasurement().updatedState().isValid() || !t.lastMeasurement().updatedState().isValid())
407  return TrajectoryStateOnSurface();
408 
410 
411  bool beamhaloFlag = (t.firstMeasurement().updatedState().globalMomentum().eta() > 4.0 ||
412  t.lastMeasurement().updatedState().globalMomentum().eta() > 4.0);
413 
414  if (!beamhaloFlag) { //initialState is the top one
415  if (t.firstMeasurement().updatedState().globalPosition().y() >
416  t.lastMeasurement().updatedState().globalPosition().y()) {
417  result = t.firstMeasurement().updatedState();
418  } else {
419  result = t.lastMeasurement().updatedState();
420  }
421  if (result.globalMomentum().y() > 1.0) //top tsos should pointing down
422  theUtilities->reverseDirection(result, &*theService->magneticField());
423  } else {
424  if (t.firstMeasurement().updatedState().globalPosition().z() *
425  t.lastMeasurement().updatedState().globalPosition().z() >
426  0) { //same side
427  if (fabs(t.firstMeasurement().updatedState().globalPosition().z()) >
428  fabs(t.lastMeasurement().updatedState().globalPosition().z())) {
429  result = t.firstMeasurement().updatedState();
430  } else {
431  result = t.lastMeasurement().updatedState();
432  }
433  } else { //different sides
434 
435  if (fabs(t.firstMeasurement().updatedState().globalPosition().eta()) >
436  fabs(t.lastMeasurement().updatedState().globalPosition().eta())) {
437  result = t.firstMeasurement().updatedState();
438  } else {
439  result = t.lastMeasurement().updatedState();
440  }
441  }
442  }
443 
444  return result;
445 }

References mps_fire::result, CosmicMuonUtilities::reverseDirection(), submitPVValidationJobs::t, theService, and theUtilities.

Referenced by fit().

◆ propagatorAlong()

const Propagator* CosmicMuonSmoother::propagatorAlong ( ) const
inline

Definition at line 56 of file CosmicMuonSmoother.h.

References MuonServiceProxy::propagator(), thePropagatorAlongName, and theService.

Referenced by fit().

◆ propagatorOpposite()

const Propagator* CosmicMuonSmoother::propagatorOpposite ( ) const
inline

◆ setHitCloner()

void CosmicMuonSmoother::setHitCloner ( TkCloner const *  hc)
inlineoverridevirtual

Implements TrajectorySmoother.

Definition at line 71 of file CosmicMuonSmoother.h.

71 {}

◆ smooth() [1/2]

vector< Trajectory > CosmicMuonSmoother::smooth ( const std::vector< Trajectory > &  tc) const
private

Definition at line 240 of file CosmicMuonSmoother.cc.

240  {
241  vector<Trajectory> result;
242 
243  for (vector<Trajectory>::const_iterator it = tc.begin(); it != tc.end(); ++it) {
244  vector<Trajectory> smoothed = smooth(*it);
245  result.insert(result.end(), smoothed.begin(), smoothed.end());
246  }
247 
248  return result;
249 }

References mps_fire::result.

Referenced by trajectories(), and trajectory().

◆ smooth() [2/2]

vector< Trajectory > CosmicMuonSmoother::smooth ( const Trajectory t) const
private

Definition at line 254 of file CosmicMuonSmoother.cc.

254  {
255  if (t.empty()) {
256  LogTrace(category_) << "Error: smooth: empty trajectory.";
257  return vector<Trajectory>();
258  }
259 
260  Trajectory myTraj(t.seed(), oppositeToMomentum);
261 
262  vector<TrajectoryMeasurement> avtm = t.measurements();
263 
264  if (avtm.size() < 2) {
265  LogTrace(category_) << "Error: smooth: too little TM. ";
266  return vector<Trajectory>();
267  }
268 
269  TrajectoryStateOnSurface predTsos = avtm.back().forwardPredictedState();
271 
272  if (!predTsos.isValid()) {
273  LogTrace(category_) << "Error: smooth: first TSOS from back invalid. ";
274  return vector<Trajectory>();
275  }
276 
277  TrajectoryStateOnSurface currTsos;
278 
279  // first smoothed TrajectoryMeasurement is last fitted
280  if (avtm.back().recHit()->isValid()) {
281  currTsos = theUpdator->update(predTsos, (*avtm.back().recHit()));
282  if (!currTsos.isValid()) {
283  edm::LogWarning(category_) << "an updated state is not valid. killing the trajectory.";
284  return vector<Trajectory>();
285  }
286  myTraj.push(TrajectoryMeasurement(avtm.back().forwardPredictedState(),
287  predTsos,
288  avtm.back().updatedState(),
289  avtm.back().recHit(),
290  avtm.back().estimate() //,
291  /*avtm.back().layer()*/),
292  avtm.back().estimate());
293 
294  } else {
295  currTsos = predTsos;
296  myTraj.push(TrajectoryMeasurement(avtm.back().forwardPredictedState(),
297  avtm.back().recHit() //,
298  /*avtm.back().layer()*/));
299  }
300 
302 
303  for (vector<TrajectoryMeasurement>::reverse_iterator itm = avtm.rbegin() + 1; itm != avtm.rend() - 1; ++itm) {
304  if (currTsos.isValid()) {
305  LogTrace(category_) << "current pos " << currTsos.globalPosition() << "mom " << currTsos.globalMomentum();
306  } else {
307  LogTrace(category_) << "current state invalid";
308  }
309 
310  predTsos = propagatorOpposite()->propagate(currTsos, (*itm).recHit()->det()->surface());
311 
312  if (!predTsos.isValid()) {
313  LogTrace(category_) << "step-propagating from " << currTsos.globalPosition()
314  << " to position: " << (*itm).recHit()->globalPosition();
315  predTsos = theUtilities->stepPropagate(currTsos, (*itm).recHit(), *propagatorOpposite());
316  }
317  if (predTsos.isValid()) {
318  LogTrace(category_) << "predicted pos " << predTsos.globalPosition() << "mom " << predTsos.globalMomentum();
319  } else {
320  LogTrace(category_) << "predicted state invalid";
321  }
322 
323  if (!predTsos.isValid()) {
324  LogTrace(category_) << "Error: predTsos is still invalid backward smooth.";
325  return vector<Trajectory>();
326  // continue;
327  } else if ((*itm).recHit()->isValid()) {
328  //update
329  currTsos = theUpdator->update(predTsos, (*(*itm).recHit()));
330  if (!currTsos.isValid()) {
331  edm::LogWarning(category_) << "an updated state is not valid. killing the trajectory.";
332  return vector<Trajectory>();
333  }
334  TrajectoryStateOnSurface combTsos = combiner(predTsos, (*itm).forwardPredictedState());
335  if (!combTsos.isValid()) {
336  LogTrace(category_) << "Error: smooth: combining pred TSOS failed. ";
337  return vector<Trajectory>();
338  }
339 
340  TrajectoryStateOnSurface smooTsos = combiner((*itm).updatedState(), predTsos);
341 
342  if (!smooTsos.isValid()) {
343  LogTrace(category_) << "Error: smooth: combining smooth TSOS failed. ";
344  return vector<Trajectory>();
345  }
346 
347  myTraj.push(TrajectoryMeasurement((*itm).forwardPredictedState(),
348  predTsos,
349  smooTsos,
350  (*itm).recHit(),
351  theEstimator->estimate(combTsos, (*(*itm).recHit())).second //,
352  /*(*itm).layer()*/),
353  (*itm).estimate());
354  } else {
355  currTsos = predTsos;
356  TrajectoryStateOnSurface combTsos = combiner(predTsos, (*itm).forwardPredictedState());
357 
358  if (!combTsos.isValid()) {
359  LogTrace(category_) << "Error: smooth: combining TSOS failed. ";
360  return vector<Trajectory>();
361  }
362 
363  myTraj.push(TrajectoryMeasurement((*itm).forwardPredictedState(),
364  predTsos,
365  combTsos,
366  (*itm).recHit() //,
367  /*(*itm).layer()*/));
368  }
369  }
370 
371  // last smoothed TrajectoryMeasurement is last filtered
372  predTsos = propagatorOpposite()->propagate(currTsos, avtm.front().recHit()->det()->surface());
373 
374  if (!predTsos.isValid()) {
375  LogTrace(category_) << "Error: last predict TSOS failed, use original one. ";
376  // return vector<Trajectory>();
377  myTraj.push(TrajectoryMeasurement(avtm.front().forwardPredictedState(), avtm.front().recHit()));
378  } else {
379  if (avtm.front().recHit()->isValid()) {
380  //update
381  currTsos = theUpdator->update(predTsos, (*avtm.front().recHit()));
382  if (currTsos.isValid())
383  myTraj.push(TrajectoryMeasurement(avtm.front().forwardPredictedState(),
384  predTsos,
385  currTsos,
386  avtm.front().recHit(),
387  theEstimator->estimate(predTsos, (*avtm.front().recHit())).second //,
388  /*avtm.front().layer()*/),
389  avtm.front().estimate());
390  }
391  }
392  LogTrace(category_) << "myTraj foundHits. " << myTraj.foundHits();
393 
394  if (myTraj.foundHits() >= 3)
395  return vector<Trajectory>(1, myTraj);
396  else {
397  LogTrace(category_) << "Error: smooth: No enough hits in trajctory. ";
398  return vector<Trajectory>();
399  }
400 }

References category_, heavyFlavorValidationHarvestingSequence_cff::combiner, TrajectoryMeasurement::estimate(), TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), TrajectoryStateOnSurface::isValid(), LogTrace, oppositeToMomentum, Propagator::propagate(), propagatorOpposite(), TrajectoryStateOnSurface::rescaleError(), CosmicMuonUtilities::stepPropagate(), TrajectoryStateOnSurface::surface(), submitPVValidationJobs::t, theErrorRescaling, theEstimator, theUpdator, theUtilities, and KFUpdator::update().

◆ sortHitsAlongMom()

void CosmicMuonSmoother::sortHitsAlongMom ( ConstRecHitContainer hits,
const TrajectoryStateOnSurface tsos 
) const
private

Definition at line 447 of file CosmicMuonSmoother.cc.

447  {
448  if (hits.size() < 2)
449  return;
450  float dis1 = (hits.front()->globalPosition() - tsos.globalPosition()).mag();
451  float dis2 = (hits.back()->globalPosition() - tsos.globalPosition()).mag();
452 
453  if (dis1 > dis2)
454  std::reverse(hits.begin(), hits.end());
455 
456  return;
457 }

References TrajectoryStateOnSurface::globalPosition(), hfClusterShapes_cfi::hits, mag(), and groupFilesInBlocks::reverse.

Referenced by fit().

◆ trajectories() [1/2]

TrajectoryContainer CosmicMuonSmoother::trajectories ( const Trajectory traj) const
inlineoverridevirtual

◆ trajectories() [2/2]

std::vector< Trajectory > CosmicMuonSmoother::trajectories ( const TrajectorySeed seed,
const ConstRecHitContainer hits,
const TrajectoryStateOnSurface firstPredTsos 
) const
virtual

refit trajectory

Definition at line 69 of file CosmicMuonSmoother.cc.

71  {
72  if (hits.empty() || !firstPredTsos.isValid())
73  return vector<Trajectory>();
74 
75  LogTrace(category_) << "trajectory begin (seed hits tsos)";
76 
77  TrajectoryStateOnSurface firstTsos = firstPredTsos;
79 
80  LogTrace(category_) << "first TSOS: " << firstTsos;
81 
82  vector<Trajectory> fitted = fit(seed, hits, firstTsos);
83  LogTrace(category_) << "fitted: " << fitted.size();
84  vector<Trajectory> smoothed = smooth(fitted);
85  LogTrace(category_) << "smoothed: " << smoothed.size();
86 
87  return smoothed;
88 }

References category_, fit(), hfClusterShapes_cfi::hits, TrajectoryStateOnSurface::isValid(), LogTrace, TrajectoryStateOnSurface::rescaleError(), fileCollector::seed, smooth(), and theErrorRescaling.

◆ trajectory()

Trajectory CosmicMuonSmoother::trajectory ( const Trajectory t) const
overridevirtual

Implements TrajectorySmoother.

Definition at line 58 of file CosmicMuonSmoother.cc.

58  {
59  std::vector<Trajectory>&& fitted = fit(t);
60  if (fitted.empty())
61  return Trajectory();
62  std::vector<Trajectory>&& smoothed = smooth(fitted);
63  return smoothed.empty() ? Trajectory() : smoothed.front();
64 }

References fit(), smooth(), and submitPVValidationJobs::t.

◆ updator()

const KFUpdator* CosmicMuonSmoother::updator ( ) const
inline

Definition at line 60 of file CosmicMuonSmoother.h.

60 { return theUpdator; }

References theUpdator.

◆ utilities()

const CosmicMuonUtilities* CosmicMuonSmoother::utilities ( ) const
inline

Member Data Documentation

◆ category_

std::string CosmicMuonSmoother::category_
private

Definition at line 90 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), fit(), smooth(), and trajectories().

◆ theErrorRescaling

double CosmicMuonSmoother::theErrorRescaling
private

Definition at line 89 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), smooth(), and trajectories().

◆ theEstimator

const Chi2MeasurementEstimator* CosmicMuonSmoother::theEstimator
private

Definition at line 82 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), estimator(), fit(), smooth(), and ~CosmicMuonSmoother().

◆ thePropagatorAlongName

std::string CosmicMuonSmoother::thePropagatorAlongName
private

Definition at line 87 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), and propagatorAlong().

◆ thePropagatorOppositeName

std::string CosmicMuonSmoother::thePropagatorOppositeName
private

Definition at line 88 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), and propagatorOpposite().

◆ theService

const MuonServiceProxy* CosmicMuonSmoother::theService
private

Definition at line 85 of file CosmicMuonSmoother.h.

Referenced by fit(), initialState(), propagatorAlong(), and propagatorOpposite().

◆ theUpdator

const KFUpdator* CosmicMuonSmoother::theUpdator
private

Definition at line 81 of file CosmicMuonSmoother.h.

Referenced by CosmicMuonSmoother(), fit(), smooth(), updator(), and ~CosmicMuonSmoother().

◆ theUtilities

const CosmicMuonUtilities* CosmicMuonSmoother::theUtilities
private
KFUpdator::update
TrajectoryStateOnSurface update(const TrajectoryStateOnSurface &, const TrackingRecHit &) const override
Definition: KFUpdator.cc:177
service
Definition: service.py:1
CosmicMuonSmoother::fit
std::vector< Trajectory > fit(const Trajectory &) const
Definition: CosmicMuonSmoother.cc:93
CosmicMuonSmoother::category_
std::string category_
Definition: CosmicMuonSmoother.h:90
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
f
double f[11][100]
Definition: MuScleFitUtils.cc:78
CosmicMuonSmoother::theErrorRescaling
double theErrorRescaling
Definition: CosmicMuonSmoother.h:89
TrajectoryStateOnSurface::globalPosition
GlobalPoint globalPosition() const
Definition: TrajectoryStateOnSurface.h:65
oppositeToMomentum
Definition: PropagationDirection.h:4
edm::second
U second(std::pair< T, U > const &p)
Definition: ParameterSet.cc:222
CosmicMuonSmoother::CosmicMuonSmoother
CosmicMuonSmoother(const edm::ParameterSet &, const MuonServiceProxy *service)
Definition: CosmicMuonSmoother.cc:32
PV3DBase::mag2
T mag2() const
Definition: PV3DBase.h:63
CosmicMuonUtilities::reverseDirection
void reverseDirection(TrajectoryStateOnSurface &, const MagneticField *) const
Definition: CosmicMuonUtilities.cc:29
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
groupFilesInBlocks.reverse
reverse
Definition: groupFilesInBlocks.py:131
CosmicMuonUtilities::stepPropagate
TrajectoryStateOnSurface stepPropagate(const TrajectoryStateOnSurface &, const ConstRecHitPointer &, const Propagator &) const
Definition: CosmicMuonUtilities.cc:140
TrajectorySmoother::trajectories
virtual TrajectoryContainer trajectories(const Trajectory &traj) const
Definition: TrajectorySmoother.h:18
fileCollector.seed
seed
Definition: fileCollector.py:127
TrajectoryStateOnSurface
Definition: TrajectoryStateOnSurface.h:16
Chi2MeasurementEstimator_cfi.Chi2MeasurementEstimator
Chi2MeasurementEstimator
Definition: Chi2MeasurementEstimator_cfi.py:5
CosmicMuonSmoother::theService
const MuonServiceProxy * theService
Definition: CosmicMuonSmoother.h:85
CosmicMuonSmoother::propagatorOpposite
const Propagator * propagatorOpposite() const
Definition: CosmicMuonSmoother.h:58
GlobalPoint
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
CosmicMuonUtilities
Definition: CosmicMuonUtilities.h:30
CosmicMuonSmoother::theUtilities
const CosmicMuonUtilities * theUtilities
Definition: CosmicMuonSmoother.h:83
CosmicMuonSmoother::propagatorAlong
const Propagator * propagatorAlong() const
Definition: CosmicMuonSmoother.h:56
TrajectoryStateCombiner
Definition: TrajectoryStateCombiner.h:13
MuonServiceProxy::propagator
edm::ESHandle< Propagator > propagator(std::string propagatorName) const
get the propagator
Definition: MuonServiceProxy.cc:177
Propagator::propagate
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
CosmicMuonSmoother::thePropagatorOppositeName
std::string thePropagatorOppositeName
Definition: CosmicMuonSmoother.h:88
TrajectoryStateOnSurface::rescaleError
void rescaleError(double factor)
Definition: TrajectoryStateOnSurface.h:82
CosmicMuonSmoother::sortHitsAlongMom
void sortHitsAlongMom(ConstRecHitContainer &hits, const TrajectoryStateOnSurface &) const
Definition: CosmicMuonSmoother.cc:447
TrajectoryStateOnSurface::globalMomentum
GlobalVector globalMomentum() const
Definition: TrajectoryStateOnSurface.h:66
mag
T mag() const
The vector magnitude. Equivalent to sqrt(vec.mag2())
Definition: Basic3DVectorLD.h:127
CosmicMuonSmoother::thePropagatorAlongName
std::string thePropagatorAlongName
Definition: CosmicMuonSmoother.h:87
CosmicMuonSmoother::smooth
std::vector< Trajectory > smooth(const std::vector< Trajectory > &) const
Definition: CosmicMuonSmoother.cc:240
ConstRecHitContainer
TransientTrackingRecHit::ConstRecHitContainer ConstRecHitContainer
Definition: MillePedeAlignmentAlgorithm.cc:74
TrajectoryMeasurement::estimate
float estimate() const
Definition: TrajectoryMeasurement.h:192
Trajectory
Definition: Trajectory.h:38
CosmicMuonSmoother::theEstimator
const Chi2MeasurementEstimator * theEstimator
Definition: CosmicMuonSmoother.h:82
CosmicMuonSmoother::initialState
TrajectoryStateOnSurface initialState(const Trajectory &) const
Definition: CosmicMuonSmoother.cc:402
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
mps_fire.result
result
Definition: mps_fire.py:311
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
heavyFlavorValidationHarvestingSequence_cff.combiner
combiner
Definition: heavyFlavorValidationHarvestingSequence_cff.py:107
CosmicMuonSmoother::theUpdator
const KFUpdator * theUpdator
Definition: CosmicMuonSmoother.h:81
submitPVValidationJobs.t
string t
Definition: submitPVValidationJobs.py:644
TrajectoryMeasurement
Definition: TrajectoryMeasurement.h:25
alongMomentum
Definition: PropagationDirection.h:4
KFUpdator
Definition: KFUpdator.h:32
TrajectoryStateOnSurface::isValid
bool isValid() const
Definition: TrajectoryStateOnSurface.h:54
MillePedeFileConverter_cfg.e
e
Definition: MillePedeFileConverter_cfg.py:37