@@ -57,7 +57,7 @@ std::string TrackingParameters::asString() const
5757
5858std::string VertexingParameters::asString () const
5959{
60- std::string str = std::format (" NZb:{} NPhB:{} DRof:{} ClsCont:{} MaxTrkltCls:{} ZCut:{} PhCut:{}" , ZBins, PhiBins, deltaRof , clusterContributorsCut, maxTrackletsPerCluster, zCut, phiCut);
60+ std::string str = std::format (" NZb:{} NPhB:{} ClsCont:{} MaxTrkltCls:{} ZCut:{} PhCut:{}" , ZBins, PhiBins, clusterContributorsCut, maxTrackletsPerCluster, zCut, phiCut);
6161 if (std::numeric_limits<size_t >::max () != MaxMemory) {
6262 str += std::format (" MemLimit {:.2f} GB" , double (MaxMemory) / constants::GB);
6363 }
@@ -244,7 +244,6 @@ std::vector<VertexingParameters> TrackingMode::getVertexingParameters(TrackingMo
244244 vertParams.resize (2 ); // The number of actual iterations will be set as a configKeyVal to allow for pp/PbPb choice
245245 vertParams[1 ].phiCut = 0 .015f ;
246246 vertParams[1 ].tanLambdaCut = 0 .015f ;
247- vertParams[1 ].deltaRof = 0 ;
248247 } else if (mode == TrackingMode::Sync) {
249248 vertParams.resize (1 );
250249 } else if (mode == TrackingMode::Cosmics) {
@@ -260,7 +259,6 @@ std::vector<VertexingParameters> TrackingMode::getVertexingParameters(TrackingMo
260259 p.MaxMemory = vc.maxMemory ;
261260 p.DropTFUponFailure = vc.dropTFUponFailure ;
262261 p.nIterations = vc.nIterations ;
263- p.deltaRof = vc.deltaRof ;
264262 p.trackletSigma = vc.trackletSigma ;
265263 p.maxZPositionAllowed = vc.maxZPositionAllowed ;
266264 p.clusterContributorsCut = vc.clusterContributorsCut ;
0 commit comments