Skip to content
Snippets Groups Projects

Prototype of new alignment configuration

Merged Florian Reiss requested to merge pyconf into master
16 files
+ 52
86
Compare changes
  • Side-by-side
  • Inline
Files
16
@@ -241,7 +241,7 @@ bool ATrackSelector::accept( const LHCb::Track& aTrack, IGeometryInfo const& geo
bool ATrackSelector::Unify( const LHCb::Track& aTrack, IGeometryInfo const& geometry ) {
// check status of the fit:
if ( aTrack.fitStatus() != LHCb::Track::Fitted || aTrack.nDoF() < 2 ) return false;
if ( aTrack.fitStatus() != LHCb::Track::FitStatus::Fitted || aTrack.nDoF() < 2 ) return false;
if ( m_extrapolator && !yCut( aTrack, geometry ) ) {
debug() << "No track extrapolator or does not fit yCut..." << endmsg;
return false;
Loading