CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
TrackTransformer Class Reference

#include <TrackTransformer.h>

Inheritance diagram for TrackTransformer:
TrackTransformerBase

Public Member Functions

TransientTrackingRecHit::ConstRecHitContainer getTransientRecHits (const reco::TransientTrack &track) const
 
const MagneticFieldmagneticField () const
 the magnetic field More...
 
std::unique_ptr
< TrajectoryFitter > const & 
refitter () const
 the refitter used to refit the reco::Track More...
 
virtual void setServices (const edm::EventSetup &)
 set the services needed by the TrackTransformer More...
 
std::unique_ptr
< TrajectorySmoother > const & 
smoother () const
 the smoother used to smooth the trajectory which came from the refitting step More...
 
edm::ESHandle
< GlobalTrackingGeometry
trackingGeometry () const
 the tracking geometry More...
 
 TrackTransformer (const edm::ParameterSet &)
 Constructor. More...
 
virtual std::vector< Trajectorytransform (const reco::Track &) const
 Convert a reco::Track into Trajectory. More...
 
std::vector< Trajectorytransform (const reco::TrackRef &) const
 Convert a reco::TrackRef into Trajectory. More...
 
std::vector< Trajectorytransform (const reco::TransientTrack &, const TransientTrackingRecHit::ConstRecHitContainer &) const
 Convert a reco::TrackRef into Trajectory, refit with a new set of hits. More...
 
virtual ~TrackTransformer ()
 Destructor. More...
 
- Public Member Functions inherited from TrackTransformerBase
 TrackTransformerBase ()
 Constructor. More...
 
virtual ~TrackTransformerBase ()
 Destructor. More...
 

Private Member Functions

RefitDirection::GeometricalDirection checkRecHitsOrdering (TransientTrackingRecHit::ConstRecHitContainer &) const
 
edm::ESHandle< Propagatorpropagator () const
 

Private Attributes

TkClonerImpl hitCloner
 
unsigned long long theCacheId_GTG
 
unsigned long long theCacheId_MG
 
unsigned long long theCacheId_TC
 
unsigned long long theCacheId_TRH
 
bool theDoPredictionsOnly
 
std::unique_ptr< TrajectoryFittertheFitter
 
std::string theFitterName
 
edm::ESHandle< MagneticFieldtheMGField
 
edm::ESHandle
< TransientTrackingRecHitBuilder
theMuonRecHitBuilder
 
std::string theMuonRecHitBuilderName
 
edm::ESHandle< PropagatorthePropagator
 
std::string thePropagatorName
 
RefitDirection theRefitDirection
 
bool theRPCInTheFit
 
std::unique_ptr
< TrajectorySmoother
theSmoother
 
std::string theSmootherName
 
edm::ESHandle
< TransientTrackingRecHitBuilder
theTrackerRecHitBuilder
 
std::string theTrackerRecHitBuilderName
 
edm::ESHandle
< GlobalTrackingGeometry
theTrackingGeometry
 

Detailed Description

This class takes a reco::Track and refits the rechits inside it. The final result is a Trajectory refitted and smoothed. To make the refitting (and the smoothing) the usual KF tools are used.

CAVEAT: till now (it will be changed in the near future) the class stores the pointers to the services, therefore EACH event the setServices(const edm::EventSetup&) method MUST be called in the code in which the TrackTransformer is used.

Author
R. Bellan - INFN Torino ricca.nosp@m.rdo..nosp@m.bella.nosp@m.n@ce.nosp@m.rn.ch

This class takes a reco::Track and refits the rechits inside it. The final result is a Trajectory refitted and smoothed. To make the refitting (and the smoothing) the usual KF tools are used.

CAVEAT: till now (it will be changed in the near future) the class stores the pointers to the services, therefore EACH event the setServices(const edm::EventSetup&) method MUST be called in the code in which the TrackTransformer is used.

Rec hits are ordered in rank of increasing |z| assuing muons are coming from the top of the detector.

$Date: 2009/01/15 author R. Bellan - CERN ricca.nosp@m.rdo..nosp@m.bella.nosp@m.n@ce.nosp@m.rn.ch modified for zed ordering by N. Kypreos - UF nicho.nosp@m.las..nosp@m.theod.nosp@m.ore..nosp@m.kypre.nosp@m.os@c.nosp@m.ern.c.nosp@m.h

This class takes a reco::Track and refits the rechits inside it. The final result is a Trajectory refitted and smoothed. To make the refitting (and the smoothing) the usual KF tools are used.

CAVEAT: till now (it will be changed in the near future) the class stores the pointers to the services, therefore EACH event the setServices(const edm::EventSetup&) method MUST be called in the code in which the TrackTransformer is used.

Author
R. Bellan - CERN ricca.nosp@m.rdo..nosp@m.bella.nosp@m.n@ce.nosp@m.rn.ch

Definition at line 38 of file TrackTransformer.h.

Constructor & Destructor Documentation

TrackTransformer::TrackTransformer ( const edm::ParameterSet parameterSet)

Constructor.

Definition at line 29 of file TrackTransformer.cc.

References edm::ParameterSet::getParameter().

29  {
30 
31  // Refit direction
32  string refitDirectionName = parameterSet.getParameter<string>("RefitDirection");
33  theRefitDirection = RefitDirection(refitDirectionName);
34 
35  theFitterName = parameterSet.getParameter<string>("Fitter");
36  theSmootherName = parameterSet.getParameter<string>("Smoother");
37  thePropagatorName = parameterSet.getParameter<string>("Propagator");
38 
39  theTrackerRecHitBuilderName = parameterSet.getParameter<string>("TrackerRecHitBuilder");
40  theMuonRecHitBuilderName = parameterSet.getParameter<string>("MuonRecHitBuilder");
41 
42  theRPCInTheFit = parameterSet.getParameter<bool>("RefitRPCHits");
43  theDoPredictionsOnly = parameterSet.getParameter<bool>("DoPredictionsOnly");
44 
46 }
T getParameter(std::string const &) const
std::string theFitterName
std::string thePropagatorName
std::string theSmootherName
unsigned long long theCacheId_TRH
unsigned long long theCacheId_MG
unsigned long long theCacheId_TC
RefitDirection theRefitDirection
unsigned long long theCacheId_GTG
std::string theTrackerRecHitBuilderName
std::string theMuonRecHitBuilderName
TrackTransformer::~TrackTransformer ( )
virtual

Destructor.

Definition at line 49 of file TrackTransformer.cc.

49 {}

Member Function Documentation

RefitDirection::GeometricalDirection TrackTransformer::checkRecHitsOrdering ( TransientTrackingRecHit::ConstRecHitContainer recHits) const
private

Definition at line 133 of file TrackTransformer.cc.

References plotBeamSpotDB::first, RefitDirection::insideOut, prof2calltree::last, LogDebug, PV3DBase< T, PVType, FrameType >::mag(), RefitDirection::outsideIn, position, and RefitDirection::undetermined.

133  {
134 
135  if (!recHits.empty()){
136  GlobalPoint first = trackingGeometry()->idToDet(recHits.front()->geographicalId())->position();
137  GlobalPoint last = trackingGeometry()->idToDet(recHits.back()->geographicalId())->position();
138 
139  double rFirst = first.mag();
140  double rLast = last.mag();
141  if(rFirst < rLast) return RefitDirection::insideOut;
142  else if(rFirst > rLast) return RefitDirection::outsideIn;
143  else{
144  LogDebug("Reco|TrackingTools|TrackTransformer") << "Impossible to determine the rechits order" <<endl;
146  }
147  }
148  else{
149  LogDebug("Reco|TrackingTools|TrackTransformer") << "Impossible to determine the rechits order" <<endl;
151  }
152 }
#define LogDebug(id)
T mag() const
Definition: PV3DBase.h:67
static int position[264][3]
Definition: ReadPGInfo.cc:509
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
the tracking geometry
TransientTrackingRecHit::ConstRecHitContainer TrackTransformer::getTransientRecHits ( const reco::TransientTrack track) const

Definition at line 108 of file TrackTransformer.cc.

References LogTrace, DetId::Muon, reco::TransientTrack::recHitsBegin(), reco::TransientTrack::recHitsEnd(), query::result, and DetId::Tracker.

108  {
109 
111  auto tkbuilder = static_cast<TkTransientTrackingRecHitBuilder const *>(theTrackerRecHitBuilder.product());
112 
113 
114  for (trackingRecHit_iterator hit = track.recHitsBegin(); hit != track.recHitsEnd(); ++hit) {
115  if((*hit)->isValid()) {
116  if ( (*hit)->geographicalId().det() == DetId::Tracker ) {
117  result.emplace_back((**hit).cloneForFit(*tkbuilder->geometry()->idToDet( (**hit).geographicalId() ) ) );
118  } else if ( (*hit)->geographicalId().det() == DetId::Muon ){
119  if( (*hit)->geographicalId().subdetId() == 3 && !theRPCInTheFit){
120  LogTrace("Reco|TrackingTools|TrackTransformer") << "RPC Rec Hit discarged";
121  continue;
122  }
123  result.push_back(theMuonRecHitBuilder->build(&**hit));
124  }
125  }
126  }
127 
128  return result;
129 }
edm::ESHandle< TransientTrackingRecHitBuilder > theMuonRecHitBuilder
tuple result
Definition: query.py:137
edm::ESHandle< TransientTrackingRecHitBuilder > theTrackerRecHitBuilder
#define LogTrace(id)
trackingRecHit_iterator recHitsEnd() const
last iterator to RecHits
std::vector< ConstRecHitPointer > ConstRecHitContainer
T const * product() const
Definition: ESHandle.h:86
trackingRecHit_iterator recHitsBegin() const
first iterator to RecHits
TrackingRecHitCollection::base::const_iterator trackingRecHit_iterator
iterator over a vector of reference to TrackingRecHit in the same collection
const MagneticField* TrackTransformer::magneticField ( ) const
inline

the magnetic field

Definition at line 61 of file TrackTransformer.h.

References theMGField.

61 {return &*theMGField;}
edm::ESHandle< MagneticField > theMGField
edm::ESHandle<Propagator> TrackTransformer::propagator ( ) const
inlineprivate

Definition at line 83 of file TrackTransformer.h.

References thePropagator.

83 {return thePropagator;}
edm::ESHandle< Propagator > thePropagator
std::unique_ptr<TrajectoryFitter> const& TrackTransformer::refitter ( ) const
inline

the refitter used to refit the reco::Track

Definition at line 70 of file TrackTransformer.h.

References theFitter.

70 {return theFitter;}
std::unique_ptr< TrajectoryFitter > theFitter
void TrackTransformer::setServices ( const edm::EventSetup setup)
virtual

set the services needed by the TrackTransformer

Implements TrackTransformerBase.

Definition at line 52 of file TrackTransformer.cc.

References edm::EventSetup::get(), LogTrace, metname, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by MuonKinkFinder::init(), MuonReSeeder::produce(), TrackerToMuonPropagator::produce(), CSCOverlapsAlignmentAlgorithm::run(), and GlobalTrajectoryBuilderBase::setEvent().

52  {
53 
54  const std::string metname = "Reco|TrackingTools|TrackTransformer";
55 
58  setup.get<TrajectoryFitter::Record>().get(theFitterName,aFitter);
59  setup.get<TrajectoryFitter::Record>().get(theSmootherName,aSmoother);
60  theFitter = aFitter->clone();
61  theSmoother.reset(aSmoother->clone());
62 
63  unsigned long long newCacheId_TC = setup.get<TrackingComponentsRecord>().cacheIdentifier();
64 
65  if ( newCacheId_TC != theCacheId_TC ){
66  LogTrace(metname) << "Tracking Component changed!";
67  theCacheId_TC = newCacheId_TC;
69  }
70 
71  // Global Tracking Geometry
72  unsigned long long newCacheId_GTG = setup.get<GlobalTrackingGeometryRecord>().cacheIdentifier();
73  if ( newCacheId_GTG != theCacheId_GTG ) {
74  LogTrace(metname) << "GlobalTrackingGeometry changed!";
75  theCacheId_GTG = newCacheId_GTG;
77  }
78 
79  // Magfield Field
80  unsigned long long newCacheId_MG = setup.get<IdealMagneticFieldRecord>().cacheIdentifier();
81  if ( newCacheId_MG != theCacheId_MG ) {
82  LogTrace(metname) << "Magnetic Field changed!";
83  theCacheId_MG = newCacheId_MG;
85  }
86 
87  // Transient Rechit Builders
88  unsigned long long newCacheId_TRH = setup.get<TransientRecHitRecord>().cacheIdentifier();
89  if ( newCacheId_TRH != theCacheId_TRH ) {
90  theCacheId_TRH = newCacheId_TRH;
91  LogTrace(metname) << "TransientRecHitRecord changed!";
95  }
96  theFitter->setHitCloner(&hitCloner);
97  theSmoother->setHitCloner(&hitCloner);
98 
99 }
std::string theFitterName
const std::string metname
std::string thePropagatorName
std::string theSmootherName
unsigned long long theCacheId_TRH
edm::ESHandle< GlobalTrackingGeometry > theTrackingGeometry
edm::ESHandle< Propagator > thePropagator
unsigned long long theCacheId_MG
edm::ESHandle< TransientTrackingRecHitBuilder > theMuonRecHitBuilder
std::unique_ptr< TrajectoryFitter > theFitter
unsigned long long theCacheId_TC
edm::ESHandle< MagneticField > theMGField
unsigned long long theCacheId_GTG
edm::ESHandle< TransientTrackingRecHitBuilder > theTrackerRecHitBuilder
#define LogTrace(id)
TkClonerImpl hitCloner
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
std::string theTrackerRecHitBuilderName
std::string theMuonRecHitBuilderName
std::unique_ptr< TrajectorySmoother > theSmoother
std::unique_ptr<TrajectorySmoother> const& TrackTransformer::smoother ( ) const
inline

the smoother used to smooth the trajectory which came from the refitting step

Definition at line 73 of file TrackTransformer.h.

References theSmoother.

73 {return theSmoother;}
std::unique_ptr< TrajectorySmoother > theSmoother
edm::ESHandle<GlobalTrackingGeometry> TrackTransformer::trackingGeometry ( ) const
inline

the tracking geometry

Definition at line 64 of file TrackTransformer.h.

References theTrackingGeometry.

64 {return theTrackingGeometry;}
edm::ESHandle< GlobalTrackingGeometry > theTrackingGeometry
vector< Trajectory > TrackTransformer::transform ( const reco::Track newTrack) const
virtual

Convert a reco::Track into Trajectory.

Convert Tracks into Trajectories.

Implements TrackTransformerBase.

Definition at line 165 of file TrackTransformer.cc.

References HLT_25ns14e33_v1_cff::magneticField, metname, AlCaHLTBitMon_QueryRunRegistry::string, and create_public_lumi_plots::transform.

Referenced by GlobalTrajectoryBuilderBase::build(), CSCPairResidualsConstraint::dphidzFromTrack(), MuonKinkFinder::fillTrkKink(), MuonReSeeder::produce(), and TrackerToMuonPropagator::produce().

165  {
166 
167  const std::string metname = "Reco|TrackingTools|TrackTransformer";
168 
170 
171  // Build the transient Rechits
173 
174  return transform(track, recHitsForReFit);
175 }
const MagneticField * magneticField() const
the magnetic field
const std::string metname
TransientTrackingRecHit::ConstRecHitContainer getTransientRecHits(const reco::TransientTrack &track) const
std::vector< ConstRecHitPointer > ConstRecHitContainer
virtual std::vector< Trajectory > transform(const reco::Track &) const
Convert a reco::Track into Trajectory.
edm::ESHandle< GlobalTrackingGeometry > trackingGeometry() const
the tracking geometry
vector< Trajectory > TrackTransformer::transform ( const reco::TrackRef track) const

Convert a reco::TrackRef into Trajectory.

Definition at line 102 of file TrackTransformer.cc.

References create_public_lumi_plots::transform.

102  {
103  return transform(*track);
104 }
virtual std::vector< Trajectory > transform(const reco::Track &) const
Convert a reco::Track into Trajectory.
vector< Trajectory > TrackTransformer::transform ( const reco::TransientTrack track,
const TransientTrackingRecHit::ConstRecHitContainer _recHitsForReFit 
) const

Convert a reco::TrackRef into Trajectory, refit with a new set of hits.

Convert Tracks into Trajectories with a given set of hits.

Definition at line 179 of file TrackTransformer.cc.

References alongMomentum, anyDirection, TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), reco::Track::innerDetId(), reco::TransientTrack::innermostMeasurementState(), RefitDirection::insideOut, TrajectoryStateOnSurface::isValid(), LogTrace, metname, oppositeToMomentum, reco::Track::outerDetId(), reco::TransientTrack::outermostMeasurementState(), RefitDirection::outsideIn, AlCaHLTBitMon_ParallelJobs::p, position, HLT_25ns14e33_v1_cff::propagator, Trajectory::push(), fileCollector::seed, AlCaHLTBitMon_QueryRunRegistry::string, TrajectoryStateOnSurface::surface(), reco::TransientTrack::track(), HLT_25ns14e33_v1_cff::trajectories, PV3DBase< T, PVType, FrameType >::x(), and PV3DBase< T, PVType, FrameType >::y().

180  {
181 
182  TransientTrackingRecHit::ConstRecHitContainer recHitsForReFit = _recHitsForReFit;
183  const std::string metname = "Reco|TrackingTools|TrackTransformer";
184 
185  if(recHitsForReFit.size() < 2) return vector<Trajectory>();
186 
187  // 8 cases are foreseen:
188  // [RH = rec hit order, P = momentum dir, FD = fit direction. IO/OI = inside-out/outside-in, AM/OM = along momentum/opposite to momentum]
189  // (1) RH IO | P IO | FD AM ---> Start from IN
190  // (2) RH IO | P IO | FD OM ---> Reverse RH and start from OUT
191  // (3) RH IO | P OI | FD AM ---> Reverse RH and start from IN
192  // (4) RH IO | P OI | FD OM ---> Start from OUT
193  // (5) RH OI | P IO | FD AM ---> Reverse RH and start from IN
194  // (6) RH OI | P IO | FD OM ---> Start from OUT
195  // (7) RH OI | P OI | FD AM ---> Start from IN
196  // (8) RH OI | P OI | FD OM ---> Reverse RH and start from OUT
197  //
198  // *** Rules: ***
199  // -A- If RH-FD agree (IO-AM,OI-OM) do not reverse the RH
200  // -B- If FD along momentum start from innermost state, otherwise use outermost
201 
202  // Other special cases can be handled:
203  // (1 bis) RH IO | P IO | GFD IO => FD AM ---> Start from IN
204  // (2 bis) RH IO | P IO | GFD OI => FD OM ---> Reverse RH and start from OUT
205  // (3 bis) RH IO | P OI | GFD OI => FD AM ---> Reverse RH and start from OUT
206  // (4 bis) RH IO | P OI | GFD IO => FD OM ---> Start from IN
207  // (5 bis) RH OI | P IO | GFD IO => FD AM ---> Reverse RH and start from IN
208  // (6 bis) RH OI | P IO | GFD OI => FD OM ---> Start from OUT
209  // (7 bis) RH OI | P OI | GFD OI => FD AM ---> Start from OUT
210  // (8 bis) RH OI | P OI | GFD IO => FD OM ---> Reverse RH and start from IN
211  //
212  // *** Additional rule: ***
213  // -A0- If P and GFD agree, then FD is AM otherwise is OM
214  // -A00- rechit must be ordered as GFD in order to handle the case of cosmics
215  // -B0- The starting state is decided by GFD
216 
217  // Determine the RH order
218  RefitDirection::GeometricalDirection recHitsOrder = checkRecHitsOrdering(recHitsForReFit); // FIXME change nome of the *type* --> RecHit order!
219  LogTrace(metname) << "RH order (0-insideOut, 1-outsideIn): " << recHitsOrder;
220 
222 
223  // Apply rule -A0-
224  if(propagationDirection == anyDirection){
227  RefitDirection::GeometricalDirection p = (momentum.x()*position.x() > 0 || momentum.y()*position.y() > 0) ? RefitDirection::insideOut : RefitDirection::outsideIn;
228 
230  LogTrace(metname) << "P (0-insideOut, 1-outsideIn): " << p;
231  LogTrace(metname) << "FD (0-OM, 1-AM, 2-ANY): " << propagationDirection;
232  }
233  // -A0-
234 
235  // Apply rule -A-
237  if((recHitsOrder == RefitDirection::insideOut && propagationDirection == oppositeToMomentum) ||
238  (recHitsOrder == RefitDirection::outsideIn && propagationDirection == alongMomentum) )
239  reverse(recHitsForReFit.begin(),recHitsForReFit.end());}
240  // -A-
241  // Apply rule -A00-
242  else{
243  // reorder the rechit as defined in theRefitDirection.geometricalDirection();
244  if(theRefitDirection.geometricalDirection() != recHitsOrder) reverse(recHitsForReFit.begin(),recHitsForReFit.end());
245  }
246  // -A00-
247 
248  // Apply rule -B-
250  unsigned int innerId = track.track().innerDetId();
252  if(propagationDirection == oppositeToMomentum){
253  innerId = track.track().outerDetId();
254  firstTSOS = track.outermostMeasurementState();
255  }
256  }
257  else { // if(theRefitDirection.propagationDirection() == anyDirection)
258  // Apply rule -B0-
260  innerId = track.track().outerDetId();
261  firstTSOS = track.outermostMeasurementState();
262  }
263  // -B0-
264  }
265  // -B-
266 
267  if(!firstTSOS.isValid()){
268  LogTrace(metname)<<"Error wrong initial state!"<<endl;
269  return vector<Trajectory>();
270  }
271 
273 
274  if(recHitsForReFit.front()->geographicalId() != DetId(innerId)){
275  LogTrace(metname)<<"Propagation occured"<<endl;
276  firstTSOS = propagator()->propagate(firstTSOS, recHitsForReFit.front()->det()->surface());
277  if(!firstTSOS.isValid()){
278  LogTrace(metname)<<"Propagation error!"<<endl;
279  return vector<Trajectory>();
280  }
281  }
282 
284  Trajectory aTraj(seed,propagationDirection);
285  TrajectoryStateOnSurface predTSOS = firstTSOS;
286  for(TransientTrackingRecHit::ConstRecHitContainer::const_iterator ihit = recHitsForReFit.begin();
287  ihit != recHitsForReFit.end(); ++ihit ) {
288  predTSOS = propagator()->propagate(predTSOS, (*ihit)->det()->surface());
289  if (predTSOS.isValid()) aTraj.push(TrajectoryMeasurement(predTSOS, *ihit));
290  }
291  return vector<Trajectory>(1, aTraj);
292  }
293 
294 
295  vector<Trajectory> trajectories = theFitter->fit(seed,recHitsForReFit,firstTSOS);
296 
297  if(trajectories.empty()){
298  LogTrace(metname)<<"No Track refitted!"<<endl;
299  return vector<Trajectory>();
300  }
301 
302  Trajectory trajectoryBW = trajectories.front();
303 
304  vector<Trajectory> trajectoriesSM = theSmoother->trajectories(trajectoryBW);
305 
306  if(trajectoriesSM.empty()){
307  LogTrace(metname)<<"No Track smoothed!"<<endl;
308  return vector<Trajectory>();
309  }
310 
311  return trajectoriesSM;
312 
313 }
PropagationDirection propagationDirection() const
RefitDirection::GeometricalDirection checkRecHitsOrdering(TransientTrackingRecHit::ConstRecHitContainer &) const
const std::string metname
GeometricalDirection geometricalDirection() const
Global3DPoint GlobalPoint
Definition: GlobalPoint.h:10
T y() const
Definition: PV3DBase.h:63
GlobalPoint globalPosition() const
PropagationDirection
TrajectoryStateOnSurface innermostMeasurementState() const
const SurfaceType & surface() const
edm::ESHandle< Propagator > propagator() const
std::unique_ptr< TrajectoryFitter > theFitter
unsigned int outerDetId() const
DetId of the detector on which surface the outermost state is located.
Definition: Track.h:94
RefitDirection theRefitDirection
TrajectoryStateOnSurface outermostMeasurementState() const
#define LogTrace(id)
std::vector< ConstRecHitPointer > ConstRecHitContainer
Definition: DetId.h:18
const Track & track() const
GlobalVector globalMomentum() const
static int position[264][3]
Definition: ReadPGInfo.cc:509
T x() const
Definition: PV3DBase.h:62
unsigned int innerDetId() const
DetId of the detector on which surface the innermost state is located.
Definition: Track.h:99
std::unique_ptr< TrajectorySmoother > theSmoother

Member Data Documentation

TkClonerImpl TrackTransformer::hitCloner
private

Definition at line 112 of file TrackTransformer.h.

unsigned long long TrackTransformer::theCacheId_GTG
private

Definition at line 87 of file TrackTransformer.h.

unsigned long long TrackTransformer::theCacheId_MG
private

Definition at line 88 of file TrackTransformer.h.

unsigned long long TrackTransformer::theCacheId_TC
private

Definition at line 86 of file TrackTransformer.h.

unsigned long long TrackTransformer::theCacheId_TRH
private

Definition at line 89 of file TrackTransformer.h.

bool TrackTransformer::theDoPredictionsOnly
private

Definition at line 93 of file TrackTransformer.h.

std::unique_ptr<TrajectoryFitter> TrackTransformer::theFitter
private

Definition at line 100 of file TrackTransformer.h.

Referenced by refitter().

std::string TrackTransformer::theFitterName
private

Definition at line 99 of file TrackTransformer.h.

edm::ESHandle<MagneticField> TrackTransformer::theMGField
private

Definition at line 97 of file TrackTransformer.h.

Referenced by magneticField().

edm::ESHandle<TransientTrackingRecHitBuilder> TrackTransformer::theMuonRecHitBuilder
private

Definition at line 115 of file TrackTransformer.h.

std::string TrackTransformer::theMuonRecHitBuilderName
private

Definition at line 114 of file TrackTransformer.h.

edm::ESHandle<Propagator> TrackTransformer::thePropagator
private

Definition at line 84 of file TrackTransformer.h.

Referenced by propagator().

std::string TrackTransformer::thePropagatorName
private

Definition at line 82 of file TrackTransformer.h.

RefitDirection TrackTransformer::theRefitDirection
private

Definition at line 94 of file TrackTransformer.h.

bool TrackTransformer::theRPCInTheFit
private

Definition at line 91 of file TrackTransformer.h.

std::unique_ptr<TrajectorySmoother> TrackTransformer::theSmoother
private

Definition at line 103 of file TrackTransformer.h.

Referenced by smoother().

std::string TrackTransformer::theSmootherName
private

Definition at line 102 of file TrackTransformer.h.

edm::ESHandle<TransientTrackingRecHitBuilder> TrackTransformer::theTrackerRecHitBuilder
private

Definition at line 111 of file TrackTransformer.h.

std::string TrackTransformer::theTrackerRecHitBuilderName
private

Definition at line 110 of file TrackTransformer.h.

edm::ESHandle<GlobalTrackingGeometry> TrackTransformer::theTrackingGeometry
private

Definition at line 96 of file TrackTransformer.h.

Referenced by trackingGeometry().