diff --git a/src/AIS/AIS_C0RegularityFilter.cxx b/src/AIS/AIS_C0RegularityFilter.cxx index 8becc91faa..f0e74c0fe7 100644 --- a/src/AIS/AIS_C0RegularityFilter.cxx +++ b/src/AIS/AIS_C0RegularityFilter.cxx @@ -56,7 +56,7 @@ AIS_C0RegularityFilter::AIS_C0RegularityFilter(const TopoDS_Shape& aShape) } } if (Ok) { - TopoDS_Shape curEdge = SubShapes.FindKey( i ); + const TopoDS_Shape& curEdge = SubShapes.FindKey( i ); myMapOfEdges.Add(curEdge); } } diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index 866259af85..13344563e9 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -945,7 +945,7 @@ void AIS_InteractiveContext::Redisplay (const AIS_KindOfInteractive theKOI, Standard_Boolean isRedisplayed = Standard_False; for (AIS_DataMapIteratorOfDataMapOfIOStatus anObjIter (myObjects); anObjIter.More(); anObjIter.Next()) { - Handle(AIS_InteractiveObject) anObj = anObjIter.Key(); + const Handle(AIS_InteractiveObject)& anObj = anObjIter.Key(); if (anObj->Type() != theKOI) { continue; @@ -1155,7 +1155,7 @@ void AIS_InteractiveContext::SetDisplayMode(const Standard_Integer theMode, continue; } - Handle(AIS_GlobalStatus) aStatus = anObjIter.Value(); + const Handle(AIS_GlobalStatus)& aStatus = anObjIter.Value(); aStatus->SetDisplayMode (theMode); if (anObj->DisplayStatus() == PrsMgr_DisplayStatus_Displayed) @@ -2251,7 +2251,7 @@ Bnd_Box AIS_InteractiveContext::BoundingBoxOfSelection (const Handle(V3d_View)& for (AIS_MapIteratorOfMapOfObjectOwners anIter (anObjectOwnerMap); anIter.More(); anIter.Next()) { - const Handle(SelectMgr_SelectableObject) anObject = anIter.Key(); + const Handle(SelectMgr_SelectableObject)& anObject = anIter.Key(); Bnd_Box aTmpBox = anObject->BndBoxOfSelected (anIter.ChangeValue()); aBndSelected.Add (aTmpBox); } diff --git a/src/AdvApp2Var/AdvApp2Var_SysBase.cxx b/src/AdvApp2Var/AdvApp2Var_SysBase.cxx index 7f32dcb631..ae1bf729c5 100644 --- a/src/AdvApp2Var/AdvApp2Var_SysBase.cxx +++ b/src/AdvApp2Var/AdvApp2Var_SysBase.cxx @@ -1789,7 +1789,7 @@ int maoverf_(integer *nbentr, /* Loop. The upper limit is the integer value of the logarithm of base 2 */ /* of NBENTR/NLONGR. */ - i__1 = (integer) (log((real) (*nbentr) / (float)63.) / log((float)2.)) + i__1 = (integer) (std::log((real) (*nbentr) / (float)63.) / std::log((float)2.)) ; for (ibid = 1; ibid <= i__1; ++ibid) { diff --git a/src/Approx/Approx_CurveOnSurface.cxx b/src/Approx/Approx_CurveOnSurface.cxx index 1899d0eb82..4a616a2a1e 100644 --- a/src/Approx/Approx_CurveOnSurface.cxx +++ b/src/Approx/Approx_CurveOnSurface.cxx @@ -556,7 +556,7 @@ void Approx_CurveOnSurface::Perform(const Standard_Integer theMaxSegments, //function : isIsoLine //purpose : //============================================================================= -Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d) theC2D, +Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D, Standard_Boolean& theIsU, Standard_Real& theParam, Standard_Boolean& theIsForward) const @@ -638,7 +638,7 @@ Standard_Boolean Approx_CurveOnSurface::isIsoLine(const Handle(Adaptor2d_Curve2d //function : buildC3dOnIsoLine //purpose : //============================================================================= -Standard_Boolean Approx_CurveOnSurface::buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d) theC2D, +Standard_Boolean Approx_CurveOnSurface::buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D, const Standard_Boolean theIsU, const Standard_Real theParam, const Standard_Boolean theIsForward) diff --git a/src/Approx/Approx_CurveOnSurface.hxx b/src/Approx/Approx_CurveOnSurface.hxx index 55f376e5c8..c3541e357d 100644 --- a/src/Approx/Approx_CurveOnSurface.hxx +++ b/src/Approx/Approx_CurveOnSurface.hxx @@ -85,7 +85,7 @@ protected: //! @param theParam Line parameter. //! @param theIsForward Flag indicating forward parameterization on a isoline. //! @return Standard_True when 2d curve is a line and Standard_False otherwise. - Standard_Boolean isIsoLine(const Handle(Adaptor2d_Curve2d) theC2D, + Standard_Boolean isIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D, Standard_Boolean& theIsU, Standard_Real& theParam, Standard_Boolean& theIsForward) const; @@ -97,7 +97,7 @@ protected: //! @param theParam Line parameter. //! @param theIsForward Flag indicating forward parameterization on a isoline. //! @return Standard_True when 3d curve is built and Standard_False otherwise. - Standard_Boolean buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d) theC2D, + Standard_Boolean buildC3dOnIsoLine(const Handle(Adaptor2d_Curve2d)& theC2D, const Standard_Boolean theIsU, const Standard_Real theParam, const Standard_Boolean theIsForward); diff --git a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx index 05db2286c5..9049bfbceb 100644 --- a/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx +++ b/src/BOPAlgo/BOPAlgo_BuilderSolid.cxx @@ -733,7 +733,7 @@ void MakeInternalShells(const TopTools_IndexedMapOfShape& theMF, // aNbF = theMF.Extent(); for (i = 1; i <= aNbF; ++i) { - TopoDS_Shape aF = theMF(i); + const TopoDS_Shape& aF = theMF(i); TopExp::MapShapesAndAncestors(aF, TopAbs_EDGE, TopAbs_FACE, aMEF); diff --git a/src/BOPTest/BOPTest_BOPCommands.cxx b/src/BOPTest/BOPTest_BOPCommands.cxx index f22b0c2a3f..7ea2cdb65a 100644 --- a/src/BOPTest/BOPTest_BOPCommands.cxx +++ b/src/BOPTest/BOPTest_BOPCommands.cxx @@ -667,7 +667,7 @@ Standard_Integer bopcurves (Draw_Interpretor& di, for (Standard_Integer i=1; i<=aNbCurves; i++) { const IntTools_Curve& anIC=aSCs(i); - Handle (Geom_Curve) aC3D = anIC.Curve(); + const Handle (Geom_Curve)& aC3D = anIC.Curve(); if (aC3D.IsNull()) { di << " has Null 3d curve# " << i << "\n"; @@ -682,8 +682,8 @@ Standard_Integer bopcurves (Draw_Interpretor& di, DrawTrSurf::Set(nameC, aC3D); di << nameC << " "; // - Handle(Geom2d_Curve) aPC1 = anIC.FirstCurve2d(); - Handle(Geom2d_Curve) aPC2 = anIC.SecondCurve2d(); + const Handle(Geom2d_Curve)& aPC1 = anIC.FirstCurve2d(); + const Handle(Geom2d_Curve)& aPC2 = anIC.SecondCurve2d(); // if (!aPC1.IsNull() || !aPC2.IsNull()) { di << "("; diff --git a/src/BOPTools/BOPTools_AlgoTools3D.cxx b/src/BOPTools/BOPTools_AlgoTools3D.cxx index c620cbd701..9b6ecce589 100644 --- a/src/BOPTools/BOPTools_AlgoTools3D.cxx +++ b/src/BOPTools/BOPTools_AlgoTools3D.cxx @@ -736,7 +736,7 @@ void Add(const TopoDS_Shape& aS, return; } // - TopoDS_Shape aSx = aS; + const TopoDS_Shape& aSx = aS; // anIndex=myShapes.FindIndex(aSx); if (!anIndex) { diff --git a/src/BOPTools/BOPTools_AlgoTools_2.cxx b/src/BOPTools/BOPTools_AlgoTools_2.cxx index f066189c52..96034feede 100644 --- a/src/BOPTools/BOPTools_AlgoTools_2.cxx +++ b/src/BOPTools/BOPTools_AlgoTools_2.cxx @@ -112,7 +112,7 @@ void BOPTools_AlgoTools::MakeSectEdge(const IntTools_Curve& aIC, const Standard_Real aP2, TopoDS_Edge& aNewEdge) { - Handle(Geom_Curve) aC=aIC.Curve (); + const Handle(Geom_Curve)& aC=aIC.Curve (); BRepBuilderAPI_MakeEdge aMakeEdge(aC, aV1, aV2, aP1, aP2); diff --git a/src/BRepAlgo/BRepAlgo.cxx b/src/BRepAlgo/BRepAlgo.cxx index f7a1c0ea36..1fc8dc0a2a 100644 --- a/src/BRepAlgo/BRepAlgo.cxx +++ b/src/BRepAlgo/BRepAlgo.cxx @@ -383,7 +383,7 @@ TopoDS_Edge BRepAlgo::ConcatenateWireC0(const TopoDS_Wire& aWire) BRepTools_WireExplorer wexp(theWire); for (; wexp.More(); wexp.Next()) { - TopoDS_Edge anEdge = wexp.Current(); + const TopoDS_Edge& anEdge = wexp.Current(); Standard_Real fpar, lpar; Handle(Geom_Curve) aCurve = BRep_Tool::Curve(anEdge, fpar, lpar); @@ -392,7 +392,7 @@ TopoDS_Edge BRepAlgo::ConcatenateWireC0(const TopoDS_Wire& aWire) GeomAdaptor_Curve aGACurve(aCurve); GeomAbs_CurveType aType = aGACurve.GetType(); - Handle(Geom_Curve) aBasisCurve = aGACurve.Curve(); + const Handle(Geom_Curve)& aBasisCurve = aGACurve.Curve(); Standard_Boolean isFwd = (wexp.Orientation() != TopAbs_REVERSED); if (aBasisCurve->IsPeriodic()) { diff --git a/src/BRepAlgo/BRepAlgo_Loop.cxx b/src/BRepAlgo/BRepAlgo_Loop.cxx index ba6b1e6052..828e9f091e 100644 --- a/src/BRepAlgo/BRepAlgo_Loop.cxx +++ b/src/BRepAlgo/BRepAlgo_Loop.cxx @@ -284,7 +284,7 @@ static void RemovePendingEdges(TopTools_IndexedDataMapOfShapeListOfShape& MVE) //purpose : //======================================================================= -static Standard_Boolean SamePnt2d(TopoDS_Vertex V, +static Standard_Boolean SamePnt2d(const TopoDS_Vertex& V, TopoDS_Edge& E1, TopoDS_Edge& E2, TopoDS_Face& F) diff --git a/src/BRepBndLib/BRepBndLib.cxx b/src/BRepBndLib/BRepBndLib.cxx index f3ab8ed860..db239c4217 100644 --- a/src/BRepBndLib/BRepBndLib.cxx +++ b/src/BRepBndLib/BRepBndLib.cxx @@ -47,7 +47,7 @@ // static Standard_Boolean CanUseEdges(const Adaptor3d_Surface& BS); // -static void FindExactUVBounds(const TopoDS_Face F, +static void FindExactUVBounds(const TopoDS_Face& F, Standard_Real& umin, Standard_Real& umax, Standard_Real& vmin, Standard_Real& vmax, const Standard_Real Tol, @@ -460,7 +460,7 @@ Standard_Boolean CanUseEdges(const Adaptor3d_Surface& BS) //function : FindExactUVBounds //purpose : //======================================================================= -void FindExactUVBounds(const TopoDS_Face FF, +void FindExactUVBounds(const TopoDS_Face& FF, Standard_Real& umin, Standard_Real& umax, Standard_Real& vmin, Standard_Real& vmax, const Standard_Real Tol, diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx index 2f54913e2c..c179841760 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Collect.cxx @@ -58,7 +58,7 @@ static void BuildBack (const TopTools_DataMapOfShapeListOfShape& M1, //======================================================================= static void Replace ( TopTools_ListOfShape& L, - const TopoDS_Shape Old, + const TopoDS_Shape& Old, const TopTools_ListOfShape& New) { //----------------------------------- @@ -150,7 +150,7 @@ static void Update ( TopTools_DataMapOfShapeListOfShape& Mod, if (!LIG.IsEmpty()) { if (ModBack.IsBound(S)) { // Generation de modif => generation du shape initial - TopoDS_Shape IS = ModBack(S); + const TopoDS_Shape& IS = ModBack(S); StoreImage (Gen,IS,GenBack,LIG); } else { diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx index 5d74c71856..8f919bfa6e 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_MakeShapeOnMesh.cxx @@ -237,7 +237,7 @@ void BRepBuilderAPI_MakeShapeOnMesh::Build(const Message_ProgressRange& theRange gp_Pln aPln(myMesh->Node(anIdx[0]), aNorm); BRepBuilderAPI_MakeFace aFaceMaker(aPln, aWire); - const TopoDS_Face aFace = aFaceMaker.Face(); + const TopoDS_Face& aFace = aFaceMaker.Face(); aBB.Add(aResult, aFace); } diff --git a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx index 65bb5ab958..5054222ff0 100644 --- a/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx +++ b/src/BRepBuilderAPI/BRepBuilderAPI_Sewing.cxx @@ -374,7 +374,7 @@ TopoDS_Edge BRepBuilderAPI_Sewing::SameParameterEdge(const TopoDS_Shape& edge, for (Standard_Integer i = 1; i <= seqEdges.Length(); i++) { // Retrieve candidate section - TopoDS_Shape oedge2 = seqEdges(i); + const TopoDS_Shape& oedge2 = seqEdges(i); if (mySewing) { @@ -1393,7 +1393,7 @@ void BRepBuilderAPI_Sewing::AnalysisNearestEdges(const TopTools_SequenceOfShape& // (they have other nearest edges belonging to the work face) for(Standard_Integer k = 1; k<= seqNotCandidate.Length(); k++) { Standard_Integer index1 = seqNotCandidate.Value(k); - TopoDS_Shape edge = sequenceSec.Value(index1); + const TopoDS_Shape& edge = sequenceSec.Value(index1); TopTools_SequenceOfShape tmpSeq; tmpSeq.Append(edge); for(Standard_Integer kk = 1; kk <= seqIndCandidate.Length();kk++) @@ -2928,7 +2928,7 @@ void BRepBuilderAPI_Sewing::VerticesAssembling(const Message_ProgressRange& theP for (i = 1; i <= myBoundFaces.Extent(); i++) { TopoDS_Shape bound = myBoundFaces.FindKey(i); for (TopoDS_Iterator itv(bound,Standard_False); itv.More(); itv.Next()) { - TopoDS_Shape node = itv.Value(); + const TopoDS_Shape& node = itv.Value(); if (myNodeSections.IsBound(node)) myNodeSections(node).Append(bound); else { @@ -2991,7 +2991,7 @@ static void replaceNMVertices(const TopoDS_Edge& theEdge, theReShape->Replace(aSeqNMVert.Value(i),theV2); continue; } - TopoDS_Shape aV = aSeqNMVert.Value(i); + const TopoDS_Shape& aV = aSeqNMVert.Value(i); Standard_Integer j =1; for( ; j <= aEdParams.Length();j++) { Standard_Real apar2 = aEdParams.Value(j); @@ -3508,7 +3508,7 @@ Standard_Boolean BRepBuilderAPI_Sewing::MergedNearestEdges(const TopoDS_Shape& e TopTools_MapOfShape mapEdges; mapEdges.Add(edge); for (Standard_Integer i = 1; i <= mapVert1.Extent(); i++) { - TopoDS_Shape node1 = mapVert1.FindKey(i); + const TopoDS_Shape& node1 = mapVert1.FindKey(i); if (!myNodeSections.IsBound(node1)) continue; TopTools_ListIteratorOfListOfShape ilsec(myNodeSections(node1)); for (; ilsec.More(); ilsec.Next()) { @@ -4453,7 +4453,7 @@ void BRepBuilderAPI_Sewing::CreateCuttingNodes(const TopTools_IndexedMapOfShape& if (jdist < 0.0) { // Bind new cutting node (end vertex only) seqDist.SetValue(indexMin,disProj); - TopoDS_Shape cvertex = seqVert.Value(indexMin); + const TopoDS_Shape& cvertex = seqVert.Value(indexMin); NodeCuttingVertex.Add(node,cvertex); } else { diff --git a/src/BRepCheck/BRepCheck_Face.cxx b/src/BRepCheck/BRepCheck_Face.cxx index f128ec6d4d..b05003f42f 100644 --- a/src/BRepCheck/BRepCheck_Face.cxx +++ b/src/BRepCheck/BRepCheck_Face.cxx @@ -625,7 +625,7 @@ static Standard_Boolean Intersect(const TopoDS_Wire& wir1, MapW1.Add( exp1.Current() ); for (exp2.Init( wir2, TopAbs_VERTEX ); exp2.More(); exp2.Next()) { - TopoDS_Shape V = exp2.Current(); + const TopoDS_Shape& V = exp2.Current(); if (MapW1.Contains( V )) CommonVertices.Append( V ); } diff --git a/src/BRepClass/BRepClass_Intersector.cxx b/src/BRepClass/BRepClass_Intersector.cxx index b0665864e1..1d843ef771 100644 --- a/src/BRepClass/BRepClass_Intersector.cxx +++ b/src/BRepClass/BRepClass_Intersector.cxx @@ -248,7 +248,6 @@ void CheckSkip(Geom2dInt_GInter& theInter, { return; } - const TopoDS_Edge anEl = theE.NextEdge(); // the next edge if (!(BRep_Tool::Tolerance(aVl) > theMaxTol) || theE.NextEdge().IsNull()) { return; diff --git a/src/BRepClass3d/BRepClass3d_SClassifier.cxx b/src/BRepClass3d/BRepClass3d_SClassifier.cxx index 1cbf729b23..ae44086e0a 100644 --- a/src/BRepClass3d/BRepClass3d_SClassifier.cxx +++ b/src/BRepClass3d/BRepClass3d_SClassifier.cxx @@ -46,7 +46,7 @@ static //gets transition of line passing through/near the edge of faces , . is // a parameter on the edge where the minimum distance between and was found -static Standard_Integer GetTransi(const TopoDS_Face& f1, const TopoDS_Face& f2, const TopoDS_Edge e, +static Standard_Integer GetTransi(const TopoDS_Face& f1, const TopoDS_Face& f2, const TopoDS_Edge& e, Standard_Real param, const gp_Lin& L, IntCurveSurface_TransitionOnCurve& trans); static Standard_Boolean GetNormalOnFaceBound(const TopoDS_Edge& E, const TopoDS_Face& F, Standard_Real param, gp_Dir& OutDir); @@ -607,7 +607,7 @@ static Standard_Boolean GetNormalOnFaceBound(const TopoDS_Edge& E, //======================================================================= static Standard_Integer GetTransi(const TopoDS_Face& f1, const TopoDS_Face& f2, - const TopoDS_Edge e, + const TopoDS_Edge& e, const Standard_Real param, const gp_Lin& L, IntCurveSurface_TransitionOnCurve& trans) diff --git a/src/BRepExtrema/BRepExtrema_DistShapeShape.cxx b/src/BRepExtrema/BRepExtrema_DistShapeShape.cxx index fdf1594598..c77cd09de5 100644 --- a/src/BRepExtrema/BRepExtrema_DistShapeShape.cxx +++ b/src/BRepExtrema/BRepExtrema_DistShapeShape.cxx @@ -65,8 +65,8 @@ namespace } } - inline Standard_Real DistanceInitiale(const TopoDS_Vertex V1, - const TopoDS_Vertex V2) + inline Standard_Real DistanceInitiale(const TopoDS_Vertex& V1, + const TopoDS_Vertex& V2) { return (BRep_Tool::Pnt(V1).Distance(BRep_Tool::Pnt(V2))); } diff --git a/src/BRepFeat/BRepFeat.cxx b/src/BRepFeat/BRepFeat.cxx index 725050a01f..010de828ac 100644 --- a/src/BRepFeat/BRepFeat.cxx +++ b/src/BRepFeat/BRepFeat.cxx @@ -312,7 +312,7 @@ void BRepFeat::ParametricMinMax(const TopoDS_Shape& S, //======================================================================= static Standard_Boolean IsIn (BRepTopAdaptor_FClass2d& FC, - Geom2dAdaptor_Curve AC) + const Geom2dAdaptor_Curve& AC) { Standard_Real Def = 100*Precision::Confusion(); GCPnts_QuasiUniformDeflection QU(AC,Def); diff --git a/src/BRepFeat/BRepFeat_Form.cxx b/src/BRepFeat/BRepFeat_Form.cxx index 19f1de65c1..4ea9ea05a5 100644 --- a/src/BRepFeat/BRepFeat_Form.cxx +++ b/src/BRepFeat/BRepFeat_Form.cxx @@ -489,7 +489,7 @@ static void Descendants(const TopoDS_Shape&, #endif theGlue.Perform(); if (theGlue.IsDone()) { - TopoDS_Shape shshs = theGlue.ResultingShape(); + const TopoDS_Shape& shshs = theGlue.ResultingShape(); // if (BRepOffsetAPI::IsTopologicallyValid(shshs)) { if (BRepAlgo::IsValid(shshs)) { UpdateDescendants(theGlue); diff --git a/src/BRepFeat/BRepFeat_MakeDPrism.cxx b/src/BRepFeat/BRepFeat_MakeDPrism.cxx index 7f01a42ba8..5060d327cc 100644 --- a/src/BRepFeat/BRepFeat_MakeDPrism.cxx +++ b/src/BRepFeat/BRepFeat_MakeDPrism.cxx @@ -66,7 +66,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, const TopoDS_Shape& theSFrom, const TopoDS_Shape& theSUntil); -static Standard_Integer SensOfPrism(const Handle(Geom_Curve) C, +static Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C, const TopoDS_Shape& Until); static Handle(Geom_Curve) TestCurve(const TopoDS_Face&); @@ -212,13 +212,13 @@ void BRepFeat_MakeDPrism::Perform(const Standard_Real Height) // myPbase.Orientation(TopAbs_FORWARD); LocOpe_DPrism theDPrism(myPbase,theheight,myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); MajMap(myPbase,theDPrism,myMap,myFShape,myLShape); myGShape = VraiDPrism; GeneratedShapeValid(); - TopoDS_Shape Base = theDPrism.FirstShape(); + const TopoDS_Shape& Base = theDPrism.FirstShape(); TopExp_Explorer exp(Base, TopAbs_FACE); TopoDS_Face theBase = TopoDS::Face(exp.Current()); exp.Next(); @@ -295,12 +295,12 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& Until) Standard_Real Height = sens*HeightMax(mySbase, mySkface, mySFrom, mySUntil); LocOpe_DPrism theDPrism(myPbase,Height,myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); if(!Trf) { MajMap(myPbase,theDPrism,myMap,myFShape,myLShape); myGShape = VraiDPrism; GeneratedShapeValid(); - TopoDS_Shape Base = theDPrism.FirstShape(); + const TopoDS_Shape& Base = theDPrism.FirstShape(); exp.Init(Base, TopAbs_FACE); TopoDS_Face theBase = TopoDS::Face(exp.Current()); exp.Next(); @@ -350,7 +350,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& Until) UpdateDescendants(trP, trP.Shape(), Standard_False); TopExp_Explorer ex(trP.Shape(), TopAbs_SOLID); - TopoDS_Shape Cutsh = ex.Current(); + const TopoDS_Shape& Cutsh = ex.Current(); if(myFuse == 1) { BRepAlgoAPI_Fuse f(mySbase, Cutsh); myShape = f.Shape(); @@ -446,7 +446,7 @@ void BRepFeat_MakeDPrism::Perform(const TopoDS_Shape& From, Standard_Real Height = sens*HeightMax(mySbase, myPbase, mySFrom, mySUntil); LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); if(!Trff) { @@ -575,7 +575,7 @@ void BRepFeat_MakeDPrism::PerformUntilEnd() // myPbase.Orientation(TopAbs_FORWARD); LocOpe_DPrism theDPrism(myPbase, Height, myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); MajMap(myPbase,theDPrism,myMap,myFShape,myLShape); @@ -624,7 +624,7 @@ void BRepFeat_MakeDPrism::PerformFromEnd(const TopoDS_Shape& Until) sens*HeightMax(mySbase, mySkface, mySFrom, mySUntil); LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); if(VraiDPrism.IsNull()) { NotDone(); myStatusError = BRepFeat_NullRealTool; @@ -762,7 +762,7 @@ void BRepFeat_MakeDPrism::PerformThruAll() Standard_Real Height = HeightMax(mySbase, mySkface, mySFrom, mySUntil); LocOpe_DPrism theDPrism(myPbase, Height, Height, myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); MajMap(myPbase,theDPrism,myMap,myFShape,myLShape); myGShape = VraiDPrism; @@ -819,13 +819,13 @@ void BRepFeat_MakeDPrism::PerformUntilHeight(const TopoDS_Shape& Until, Standard_Integer sens = SensOfPrism(C, mySUntil); LocOpe_DPrism theDPrism(myPbase,sens*Height,myAngle); - TopoDS_Shape VraiDPrism = theDPrism.Shape(); + const TopoDS_Shape& VraiDPrism = theDPrism.Shape(); if(!Trf) { // case face finished MajMap(myPbase,theDPrism,myMap,myFShape,myLShape); myGShape = VraiDPrism; GeneratedShapeValid(); - TopoDS_Shape Base = theDPrism.FirstShape(); + const TopoDS_Shape& Base = theDPrism.FirstShape(); exp.Init(Base, TopAbs_FACE); TopoDS_Face theBase = TopoDS::Face(exp.Current()); exp.Next(); @@ -1074,7 +1074,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, // shape initial //function : SensOfPrism //purpose : determine the direction of prism generation //======================================================================= -Standard_Integer SensOfPrism(const Handle(Geom_Curve) C, +Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C, const TopoDS_Shape& Until) { LocOpe_CSIntersector ASI1(Until); diff --git a/src/BRepFeat/BRepFeat_MakePrism.cxx b/src/BRepFeat/BRepFeat_MakePrism.cxx index daa4a39a7f..27eade49fd 100644 --- a/src/BRepFeat/BRepFeat_MakePrism.cxx +++ b/src/BRepFeat/BRepFeat_MakePrism.cxx @@ -68,7 +68,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, const TopoDS_Shape& theSFrom, const TopoDS_Shape& theSUntil); -static Standard_Integer SensOfPrism(const Handle(Geom_Curve) C, +static Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C, const TopoDS_Shape& Until); static Handle(Geom_Curve) TestCurve(const TopoDS_Shape&, @@ -215,7 +215,7 @@ void BRepFeat_MakePrism::Perform(const Standard_Real Length) //construction of prism of height Length LocOpe_Prism thePrism(myPbase,V); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); // management of descendants MajMap(myPbase,thePrism,myMap,myFShape,myLShape); @@ -325,7 +325,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& Until) // construction of long prism LocOpe_Prism thePrism(myPbase,V); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); // in case of support of face Until if(!Trf) { @@ -366,7 +366,7 @@ void BRepFeat_MakePrism::Perform(const TopoDS_Shape& Until) UpdateDescendants(trP, trP.Shape(), Standard_False); // TopExp_Explorer ex(trP.Shape(), TopAbs_SOLID); - TopoDS_Shape Cutsh = ex.Current(); + const TopoDS_Shape& Cutsh = ex.Current(); if (myFuse == 1 && !myJustFeat) { BRepAlgoAPI_Fuse f(mySbase, Cutsh); myShape = f.Shape(); @@ -591,7 +591,7 @@ void BRepFeat_MakePrism::PerformUntilEnd() gp_Vec V(2*Height*myDir); LocOpe_Prism thePrism(myPbase,V); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); MajMap(myPbase,thePrism,myMap,myFShape,myLShape); @@ -651,7 +651,7 @@ void BRepFeat_MakePrism::PerformFromEnd(const TopoDS_Shape& Until) gp_Vec Vtra(-3*Height*sens/2.*myDir); gp_Vec Vect(3*sens*Height*myDir); LocOpe_Prism thePrism(myPbase,Vect,Vtra); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); if(!Trf) { // case face until MajMap(myPbase,thePrism,myMap,myFShape,myLShape); @@ -775,7 +775,7 @@ void BRepFeat_MakePrism::PerformThruAll() gp_Vec V(3*Height*myDir); gp_Vec Vtra(-3*Height/2.*myDir); LocOpe_Prism thePrism(myPbase,V,Vtra); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); MajMap(myPbase,thePrism,myMap,myFShape,myLShape); myGShape = VraiPrism; @@ -830,7 +830,7 @@ void BRepFeat_MakePrism::PerformUntilHeight(const TopoDS_Shape& Until, Standard_Integer sens = SensOfPrism(C, mySUntil); gp_Vec V(sens*Length*myDir); LocOpe_Prism thePrism(myPbase,V); - TopoDS_Shape VraiPrism = thePrism.Shape(); + const TopoDS_Shape& VraiPrism = thePrism.Shape(); if(!Trf) { MajMap(myPbase,thePrism,myMap,myFShape,myLShape); @@ -978,7 +978,7 @@ static Standard_Real HeightMax(const TopoDS_Shape& theSbase, //function : SensOfPrism //purpose : Direction of the prism depending on the shape Until //======================================================================= -Standard_Integer SensOfPrism(const Handle(Geom_Curve) C, +Standard_Integer SensOfPrism(const Handle(Geom_Curve)& C, const TopoDS_Shape& Until) { LocOpe_CSIntersector ASI1(Until); diff --git a/src/BRepFeat/BRepFeat_MakeRevol.cxx b/src/BRepFeat/BRepFeat_MakeRevol.cxx index 69eeee218d..df0c980513 100644 --- a/src/BRepFeat/BRepFeat_MakeRevol.cxx +++ b/src/BRepFeat/BRepFeat_MakeRevol.cxx @@ -353,7 +353,7 @@ void BRepFeat_MakeRevol::Perform(const TopoDS_Shape& Until) myGShape = VraiRevol; GeneratedShapeValid(); - TopoDS_Shape Base = theRevol.FirstShape(); + const TopoDS_Shape& Base = theRevol.FirstShape(); exp.Init(Base, TopAbs_FACE); TopoDS_Face theBase = TopoDS::Face(exp.Current()); exp.Next(); @@ -633,7 +633,7 @@ void BRepFeat_MakeRevol::PerformUntilAngle(const TopoDS_Shape& Until, myGShape = VraiRevol; GeneratedShapeValid(); - TopoDS_Shape Base = theRevol.FirstShape(); + const TopoDS_Shape& Base = theRevol.FirstShape(); exp.Init(Base, TopAbs_FACE); TopoDS_Face theBase = TopoDS::Face(exp.Current()); exp.Next(); @@ -732,7 +732,7 @@ static void VerifGluedFaces(const TopoDS_Face& theSkface, TopTools_DataMapOfShapeShape& theMap) { Standard_Boolean GluedFaces = Standard_True; - TopoDS_Shape VraiRevol = theRevol.Shape(); + const TopoDS_Shape& VraiRevol = theRevol.Shape(); TColGeom_SequenceOfCurve scur; theRevol.Curves(theCurves); diff --git a/src/BRepFill/BRepFill.cxx b/src/BRepFill/BRepFill.cxx index 38fd29fa4f..33533e16bc 100644 --- a/src/BRepFill/BRepFill.cxx +++ b/src/BRepFill/BRepFill.cxx @@ -986,8 +986,8 @@ TopoDS_Wire BRepFill::InsertACR(const TopoDS_Wire& wire, } } - TopoDS_Edge E = anExp.Current(); - TopoDS_Vertex V = anExp.CurrentVertex(); + const TopoDS_Edge& E = anExp.Current(); + const TopoDS_Vertex& V = anExp.CurrentVertex(); if (ndec==0 || BRep_Tool::Degenerated(E)) { // copy the edge diff --git a/src/BRepFill/BRepFill_CompatibleWires.cxx b/src/BRepFill/BRepFill_CompatibleWires.cxx index 7474c7b346..1133af2f79 100644 --- a/src/BRepFill/BRepFill_CompatibleWires.cxx +++ b/src/BRepFill/BRepFill_CompatibleWires.cxx @@ -128,7 +128,7 @@ static void AddNewEdge(const TopoDS_Shape& theEdge, const TopTools_SequenceOfShape& NewEdges = theEdgeNewEdges(theEdge); for (Standard_Integer i = 1; i <= NewEdges.Length(); i++) { - TopoDS_Shape anEdge = NewEdges(i); + const TopoDS_Shape& anEdge = NewEdges(i); AddNewEdge(anEdge, theEdgeNewEdges, ListNewEdges); } } @@ -1309,7 +1309,7 @@ void BRepFill_CompatibleWires:: TopTools_DataMapIteratorOfDataMapOfShapeListOfShape itmap(myMap); for (; itmap.More(); itmap.Next()) { - TopoDS_Shape anEdge = itmap.Key(); + const TopoDS_Shape& anEdge = itmap.Key(); TopTools_ListOfShape ListOfNewEdges; //for each edge of find all newest edges diff --git a/src/BRepFill/BRepFill_Evolved.cxx b/src/BRepFill/BRepFill_Evolved.cxx index 6655ffb441..e3a2c72a97 100644 --- a/src/BRepFill/BRepFill_Evolved.cxx +++ b/src/BRepFill/BRepFill_Evolved.cxx @@ -711,7 +711,7 @@ void BRepFill_Evolved::ElementaryPerform (const TopoDS_Face& Sp, for (WireExp.Init(TopoDS::Wire(FaceExp.Current())); WireExp.More(); WireExp.Next()) { - TopoDS_Edge CurrentEdge = WireExp.Current(); + const TopoDS_Edge& CurrentEdge = WireExp.Current(); TopoDS_Vertex VFirst,VLast; EdgeVertices(CurrentEdge,VFirst,VLast); @@ -2139,7 +2139,7 @@ void BRepFill_Evolved::MakeSolid() B.MakeCompound(Res); for (; exp.More(); exp.Next()) { - TopoDS_Shape Sh = exp.Current(); + const TopoDS_Shape& Sh = exp.Current(); B.MakeSolid(Sol); B.Add(Sol,Sh); BRepClass3d_SolidClassifier SC(Sol); diff --git a/src/BRepFill/BRepFill_Filling.cxx b/src/BRepFill/BRepFill_Filling.cxx index 89f77932a1..6266e1ba32 100644 --- a/src/BRepFill/BRepFill_Filling.cxx +++ b/src/BRepFill/BRepFill_Filling.cxx @@ -59,7 +59,7 @@ #include #include -static gp_Vec MakeFinVec( const TopoDS_Wire aWire, const TopoDS_Vertex aVertex ) +static gp_Vec MakeFinVec( const TopoDS_Wire& aWire, const TopoDS_Vertex& aVertex ) { TopoDS_Vertex Vfirst, Vlast, Origin; BRepTools_WireExplorer Explo( aWire ); diff --git a/src/BRepFill/BRepFill_MultiLine.cxx b/src/BRepFill/BRepFill_MultiLine.cxx index 9f27aa77ab..4b4714dad8 100644 --- a/src/BRepFill/BRepFill_MultiLine.cxx +++ b/src/BRepFill/BRepFill_MultiLine.cxx @@ -655,7 +655,7 @@ static gp_Pnt2d ValueOnFace(const Standard_Real U, } #endif - Geom2dAdaptor_Curve Cu1 = TheV; + const Geom2dAdaptor_Curve& Cu1 = TheV; Geom2dAdaptor_Curve Cu2( Line); Standard_Real TolConf = 0.; diff --git a/src/BRepFill/BRepFill_OffsetWire.cxx b/src/BRepFill/BRepFill_OffsetWire.cxx index 0c7cb2b840..6db9e9df4d 100644 --- a/src/BRepFill/BRepFill_OffsetWire.cxx +++ b/src/BRepFill/BRepFill_OffsetWire.cxx @@ -570,7 +570,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset, TopoDS_Iterator itws( myWorkSpine ); for (; itws.More(); itws.Next()) { - TopoDS_Shape aWire = itws.Value(); + const TopoDS_Shape& aWire = itws.Value(); aSubst.Build( aWire ); if (aSubst.IsCopied(aWire)) { diff --git a/src/BRepFill/BRepFill_Pipe.cxx b/src/BRepFill/BRepFill_Pipe.cxx index 8fe76d21b8..46e2b34d4c 100644 --- a/src/BRepFill/BRepFill_Pipe.cxx +++ b/src/BRepFill/BRepFill_Pipe.cxx @@ -746,7 +746,7 @@ TopoDS_Shape BRepFill_Pipe::MakeShape(const TopoDS_Shape& S, TopExp_Explorer Explo(result, TopAbs_FACE); for (; Explo.More(); Explo.Next()) { - TopoDS_Shape aFace = Explo.Current(); + const TopoDS_Shape& aFace = Explo.Current(); RebuildTopOrBottomFace(aFace.Reversed(), Standard_True); //top face was reversed } ///// @@ -987,7 +987,7 @@ void BRepFill_Pipe::RebuildTopOrBottomFace(const TopoDS_Shape& aFace, TopoDS_Iterator itw(aWire); for (; itw.More(); itw.Next()) { - TopoDS_Shape anEdge = itw.Value(); + const TopoDS_Shape& anEdge = itw.Value(); for (ii = myCurIndexOfSectionEdge; ii <= mySections->ColLength(); ii++) { TopoDS_Shape aVisoEdge = mySections->Value(ii, IndexOfSection); diff --git a/src/BRepFill/BRepFill_PipeShell.cxx b/src/BRepFill/BRepFill_PipeShell.cxx index e0405b02c2..d924ff4f47 100644 --- a/src/BRepFill/BRepFill_PipeShell.cxx +++ b/src/BRepFill/BRepFill_PipeShell.cxx @@ -1116,7 +1116,7 @@ void BRepFill_PipeShell::Generated(const TopoDS_Shape& theShape, for (; Explo.More(); Explo.Next()) { const TopoDS_Edge& anEdge = TopoDS::Edge(Explo.Current()); - TopTools_ListOfShape aNewEdges = Georges.GeneratedShapes(anEdge); + const TopTools_ListOfShape& aNewEdges = Georges.GeneratedShapes(anEdge); myEdgeNewEdges.Bind(anEdge, aNewEdges); } } @@ -1168,7 +1168,7 @@ void BRepFill_PipeShell::Place(const BRepFill_Section& Sec, Sec.Vertex(), Sec.WithContact(), Sec.WithCorrection()); - TopoDS_Wire TmpWire = Sec.Wire(); + const TopoDS_Wire& TmpWire = Sec.Wire(); aTrsf = Place.Transformation(); //Transform the copy W = TopoDS::Wire(BRepBuilderAPI_Transform(TmpWire, aTrsf, Standard_True)); diff --git a/src/BRepFill/BRepFill_Sweep.cxx b/src/BRepFill/BRepFill_Sweep.cxx index e6a1e238b8..f275ec69b1 100644 --- a/src/BRepFill/BRepFill_Sweep.cxx +++ b/src/BRepFill/BRepFill_Sweep.cxx @@ -798,7 +798,7 @@ static TopoDS_Edge BuildEdge(Handle(Geom_Curve)& C3d, const Handle(IntTools_Context) aNullCtx; if (BOPTools_AlgoTools::IsMicroEdge(E, aNullCtx)) { - TopoDS_Vertex aV = VF; + const TopoDS_Vertex& aV = VF; B.UpdateVertex(aV, P1.Distance(P2)); B.MakeEdge(E); B.UpdateEdge(E, C2d, S, TopLoc_Location(), Tol); diff --git a/src/BRepFill/BRepFill_TrimEdgeTool.cxx b/src/BRepFill/BRepFill_TrimEdgeTool.cxx index e6ae701b4c..0cd9a0949d 100644 --- a/src/BRepFill/BRepFill_TrimEdgeTool.cxx +++ b/src/BRepFill/BRepFill_TrimEdgeTool.cxx @@ -180,8 +180,8 @@ static void EvalParameters(const Geom2dAdaptor_Curve& Bis, Standard_Real Tol = Precision::Confusion(); // Standard_Real TolC = 1.e-9; - Geom2dAdaptor_Curve CBis(Bis); - Geom2dAdaptor_Curve CAC (AC); + const Geom2dAdaptor_Curve& CBis(Bis); + const Geom2dAdaptor_Curve& CAC (AC); //Intersector = Geom2dInt_GInter(CBis, CAC, TolC, Tol); Intersector = Geom2dInt_GInter(CAC, CBis, Tol, Tol); @@ -245,8 +245,8 @@ static void EvalParametersBis(const Geom2dAdaptor_Curve& Bis, Geom2dInt_GInter Intersector; Standard_Real TolC = Tol; - Geom2dAdaptor_Curve CBis(Bis); - Geom2dAdaptor_Curve CAC (AC); + const Geom2dAdaptor_Curve& CBis(Bis); + const Geom2dAdaptor_Curve& CAC (AC); Intersector = Geom2dInt_GInter(CAC, CBis, TolC, Tol); diff --git a/src/BRepFill/BRepFill_TrimShellCorner.cxx b/src/BRepFill/BRepFill_TrimShellCorner.cxx index ddbf218fd4..f3265aa1ab 100644 --- a/src/BRepFill/BRepFill_TrimShellCorner.cxx +++ b/src/BRepFill/BRepFill_TrimShellCorner.cxx @@ -571,7 +571,7 @@ BRepFill_TrimShellCorner::MakeFacesNonSec(const Standard_Integer aIt.Initialize(aLP); for ( ; aIt.More(); aIt.Next()) { const BOPDS_Pave& aPave = aIt.Value(); - TopoDS_Shape aV = theDS->Shape(aPave.Index()); + const TopoDS_Shape& aV = theDS->Shape(aPave.Index()); if(aV.IsSame(alonevertices.First())) { if(!bfound1) { diff --git a/src/BRepLib/BRepLib.cxx b/src/BRepLib/BRepLib.cxx index 3eec408309..2466e5dab3 100644 --- a/src/BRepLib/BRepLib.cxx +++ b/src/BRepLib/BRepLib.cxx @@ -288,8 +288,8 @@ static Standard_Integer evaluateMaxSegment(const Standard_Integer aMaxSegment, { if (aMaxSegment != 0) return aMaxSegment; - Handle(Adaptor3d_Surface) aSurf = aCurveOnSurface.GetSurface(); - Handle(Adaptor2d_Curve2d) aCurv2d = aCurveOnSurface.GetCurve(); + const Handle(Adaptor3d_Surface)& aSurf = aCurveOnSurface.GetSurface(); + const Handle(Adaptor2d_Curve2d)& aCurv2d = aCurveOnSurface.GetCurve(); Standard_Real aNbSKnots = 0, aNbC2dKnots = 0; @@ -1188,7 +1188,7 @@ static void GetCurve3d(const TopoDS_Edge& theEdge, Handle(Geom_Curve)& theC3d, S //function : UpdateVTol //purpose : //======================================================================= -void UpdateVTol(const TopoDS_Vertex theV1, const TopoDS_Vertex& theV2, Standard_Real theTol) +void UpdateVTol(const TopoDS_Vertex& theV1, const TopoDS_Vertex& theV2, Standard_Real theTol) { BRep_Builder aB; if (!theV1.IsNull()) diff --git a/src/BRepLib/BRepLib_PointCloudShape.cxx b/src/BRepLib/BRepLib_PointCloudShape.cxx index 0dcb94a095..68b62d6d82 100644 --- a/src/BRepLib/BRepLib_PointCloudShape.cxx +++ b/src/BRepLib/BRepLib_PointCloudShape.cxx @@ -205,7 +205,7 @@ Standard_Boolean BRepLib_PointCloudShape::addDensityPoints (const TopoDS_Shape& BRepTools::UVBounds (aFace, anUMin, anUMax, aVMin, aVMax); BRepTopAdaptor_FClass2d aClassifier (aFace, Precision::Confusion()); - TopLoc_Location aLoc = theFace.Location(); + const TopLoc_Location& aLoc = theFace.Location(); const gp_Trsf& aTrsf = aLoc.Transformation(); TopLoc_Location aLoc1; Handle(Geom_Surface) aSurf = BRep_Tool::Surface (aFace, aLoc1); diff --git a/src/BRepMAT2d/BRepMAT2d_Explorer.cxx b/src/BRepMAT2d/BRepMAT2d_Explorer.cxx index 32ba12c3be..c6ad6c6e60 100644 --- a/src/BRepMAT2d/BRepMAT2d_Explorer.cxx +++ b/src/BRepMAT2d/BRepMAT2d_Explorer.cxx @@ -163,7 +163,7 @@ void BRepMAT2d_Explorer::Add(const TopoDS_Wire& Spine, // Treatment of the next edges: for (; anExp.More(); anExp.Next()) { - TopoDS_Edge anEdge = anExp.Current(); + const TopoDS_Edge& anEdge = anExp.Current(); anOldNewE.Add(anEdge, anEdge); C2d = BRep_Tool::CurveOnSurface (anEdge, aFace, UFirst, ULast); diff --git a/src/BRepMesh/BRepMesh_Delaun.cxx b/src/BRepMesh/BRepMesh_Delaun.cxx index 0aa1eeb2ba..307bf59bd1 100644 --- a/src/BRepMesh/BRepMesh_Delaun.cxx +++ b/src/BRepMesh/BRepMesh_Delaun.cxx @@ -1103,7 +1103,7 @@ Standard_Integer BRepMesh_Delaun::findNextPolygonLink( const gp_Vec2d& theRefLinkDir, const IMeshData::SequenceOfBndB2d& theBoxes, const IMeshData::SequenceOfInteger& thePolygon, - const Handle(IMeshData::MapOfInteger) theSkipped, + const Handle(IMeshData::MapOfInteger)& theSkipped, const Standard_Boolean& isSkipLeprous, IMeshData::MapOfInteger& theLeprousLinks, IMeshData::MapOfInteger& theDeadLinks, diff --git a/src/BRepMesh/BRepMesh_Delaun.hxx b/src/BRepMesh/BRepMesh_Delaun.hxx old mode 100755 new mode 100644 index fb575548b2..810659092c --- a/src/BRepMesh/BRepMesh_Delaun.hxx +++ b/src/BRepMesh/BRepMesh_Delaun.hxx @@ -214,7 +214,7 @@ private: const gp_Vec2d& theRefLinkDir, const IMeshData::SequenceOfBndB2d& theBoxes, const IMeshData::SequenceOfInteger& thePolygon, - const Handle(IMeshData::MapOfInteger) theSkipped, + const Handle(IMeshData::MapOfInteger)& theSkipped, const Standard_Boolean& isSkipLeprous, IMeshData::MapOfInteger& theLeprousLinks, IMeshData::MapOfInteger& theDeadLinks, diff --git a/src/BRepOffset/BRepOffset_Inter2d.cxx b/src/BRepOffset/BRepOffset_Inter2d.cxx index 1249748124..8b35e9301f 100644 --- a/src/BRepOffset/BRepOffset_Inter2d.cxx +++ b/src/BRepOffset/BRepOffset_Inter2d.cxx @@ -966,8 +966,8 @@ static void RefEdgeInter(const TopoDS_Face& F, static Standard_Integer evaluateMaxSegment(const Adaptor3d_CurveOnSurface& aCurveOnSurface) { - Handle(Adaptor3d_Surface) aSurf = aCurveOnSurface.GetSurface(); - Handle(Adaptor2d_Curve2d) aCurv2d = aCurveOnSurface.GetCurve(); + const Handle(Adaptor3d_Surface)& aSurf = aCurveOnSurface.GetSurface(); + const Handle(Adaptor2d_Curve2d)& aCurv2d = aCurveOnSurface.GetCurve(); Standard_Real aNbSKnots = 0, aNbC2dKnots = 0; @@ -1513,7 +1513,7 @@ Standard_Boolean BRepOffset_Inter2d::ExtentEdge(const TopoDS_Edge& E,TopoDS_Edge //purpose : //======================================================================= -static Standard_Boolean UpdateVertex(TopoDS_Vertex V, +static Standard_Boolean UpdateVertex(const TopoDS_Vertex& V, TopoDS_Edge& OE, TopoDS_Edge& NE, Standard_Real TolConf) @@ -1960,7 +1960,7 @@ void BRepOffset_Inter2d::ConnexIntByIntInVert TopExp_Explorer Exp1, Exp2; Standard_Boolean bCoincide; // intersect edges generated from vertex with the edges of the face - TopoDS_Shape NE3 = Build(Vref); + const TopoDS_Shape& NE3 = Build(Vref); // for (Exp2.Init(NE3, TopAbs_EDGE); Exp2.More(); Exp2.Next()) { const TopoDS_Edge& aE3 = *(TopoDS_Edge*)&Exp2.Current(); diff --git a/src/BRepOffset/BRepOffset_MakeOffset.cxx b/src/BRepOffset/BRepOffset_MakeOffset.cxx index c499d748dd..5eccbe11f5 100644 --- a/src/BRepOffset/BRepOffset_MakeOffset.cxx +++ b/src/BRepOffset/BRepOffset_MakeOffset.cxx @@ -544,7 +544,7 @@ static void FillContours(const TopoDS_Shape& aShape, TopoDS_Wire aWire = TopoDS::Wire(itf.Value()); for (Wexp.Init(aWire, aFace); Wexp.More(); Wexp.Next()) { - TopoDS_Edge anEdge = Wexp.Current(); + const TopoDS_Edge& anEdge = Wexp.Current(); if (BRep_Tool::Degenerated(anEdge)) continue; const BRepOffset_ListOfInterval& Lint = Analyser.Type(anEdge); diff --git a/src/BRepOffset/BRepOffset_Offset.cxx b/src/BRepOffset/BRepOffset_Offset.cxx index b1ecb8c476..bd37bcab0b 100644 --- a/src/BRepOffset/BRepOffset_Offset.cxx +++ b/src/BRepOffset/BRepOffset_Offset.cxx @@ -181,10 +181,10 @@ static void UpdateEdge (const TopoDS_Edge& E, //purpose : Particular case of Curve On Surface. //======================================================================= -static void ComputeCurve3d(TopoDS_Edge Edge, +static void ComputeCurve3d(const TopoDS_Edge& Edge, const Handle(Geom2d_Curve)& Curve, const Handle(Geom_Surface)& Surf, - const TopLoc_Location Loc, + const TopLoc_Location& Loc, Standard_Real Tol) { // try to find the particular case diff --git a/src/BRepOffset/BRepOffset_Tool.cxx b/src/BRepOffset/BRepOffset_Tool.cxx index a7a1930e24..55c7cd3597 100644 --- a/src/BRepOffset/BRepOffset_Tool.cxx +++ b/src/BRepOffset/BRepOffset_Tool.cxx @@ -3963,7 +3963,7 @@ TopoDS_Shape BRepOffset_Tool::Deboucle3D(const TopoDS_Shape& S, //======================================================================= static Standard_Boolean IsInOut (BRepTopAdaptor_FClass2d& FC, - Geom2dAdaptor_Curve AC, + const Geom2dAdaptor_Curve& AC, const TopAbs_State& S ) { Standard_Real Def = 100*Precision::Confusion(); diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx index 051cf89694..c70c95569c 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_DraftAngle.cxx @@ -384,7 +384,7 @@ void BRepOffsetAPI_DraftAngle::CorrectWires() wit.Initialize( CurFace ); for (; wit.More(); wit.Next()) { - TopoDS_Shape aWire = wit.Value(); + const TopoDS_Shape& aWire = wit.Value(); if (! aWire.IsSame( CurWire )) { TColgp_SequenceOfPnt pts; @@ -806,8 +806,8 @@ void BRepOffsetAPI_DraftAngle::CorrectWires() TopTools_DataMapIteratorOfDataMapOfShapeShape itve (VEmap); for (; itve.More (); itve.Next ()) { - TopoDS_Shape V = itve.Key (); - TopoDS_Shape E = itve.Value (); + const TopoDS_Shape& V = itve.Key (); + const TopoDS_Shape& E = itve.Value (); TopoDS_Shape W; for (i = 1; i <= Eseq.Length (); i++) { @@ -915,7 +915,7 @@ void BRepOffsetAPI_DraftAngle::CorrectWires() eit.Initialize (aWire, Standard_False); for (; eit.More (); eit.Next ()) { - TopoDS_Shape anEdge = eit.Value (); + const TopoDS_Shape& anEdge = eit.Value (); BB.Add (CurWire, anEdge); } if (aSub.IsCopied (CurFace)) diff --git a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx b/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx index 96c12766ac..f58c934ddd 100644 --- a/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx +++ b/src/BRepOffsetAPI/BRepOffsetAPI_ThruSections.cxx @@ -417,7 +417,7 @@ void BRepOffsetAPI_ThruSections::Build(const Message_ProgressRange& /*theRange*/ Standard_Integer aSign = 1; TopoDS_Vertex Vfirst, Vlast; TopExp::Vertices(anEdge, Vfirst, Vlast); - TopTools_ListOfShape aNewEdges = Georges.GeneratedShapes(anEdge); + const TopTools_ListOfShape& aNewEdges = Georges.GeneratedShapes(anEdge); TColStd_ListOfInteger IList; aWorkingSection = TopoDS::Wire(WorkingSections(ii)); Standard_Integer NbNewEdges = aNewEdges.Extent(); diff --git a/src/BRepProj/BRepProj_Projection.cxx b/src/BRepProj/BRepProj_Projection.cxx index d0a3a64bb7..d4f1b51601 100644 --- a/src/BRepProj/BRepProj_Projection.cxx +++ b/src/BRepProj/BRepProj_Projection.cxx @@ -184,7 +184,7 @@ BRepProj_Projection::BRepProj_Projection(const TopoDS_Shape& Wire, // Note: it is necessary to create copy of wire to avoid adding new pcurves into it Handle(BRepTools_TrsfModification) Trsf = new BRepTools_TrsfModification(T); BRepTools_Modifier Modif (Wire, Trsf); - TopoDS_Shape WireBase = Modif.ModifiedShape(Wire); + const TopoDS_Shape& WireBase = Modif.ModifiedShape(Wire); // Creation of a cylindrical surface BRepSweep_Prism CylSurf (WireBase, Vsup, Standard_False); diff --git a/src/BRepTest/BRepTest_CurveCommands.cxx b/src/BRepTest/BRepTest_CurveCommands.cxx index 4bd39be3b7..11a49f95c0 100644 --- a/src/BRepTest/BRepTest_CurveCommands.cxx +++ b/src/BRepTest/BRepTest_CurveCommands.cxx @@ -1837,7 +1837,7 @@ static Standard_Integer arclinconvert (Draw_Interpretor& /*dout*/, Standard_Inte std::cout<<"Error: failed to find a face for the wire "<DynamicType(); Handle(Standard_Type) Type2 = Bis2->DynamicType(); diff --git a/src/CDM/CDM_Document.cxx b/src/CDM/CDM_Document.cxx index 9efef91453..c4abc6d988 100644 --- a/src/CDM/CDM_Document.cxx +++ b/src/CDM/CDM_Document.cxx @@ -620,7 +620,7 @@ TCollection_ExtendedString CDM_Document::Folder() const { void CDM_Document::SetRequestedFolder(const TCollection_ExtendedString& aFolder) { - TCollection_ExtendedString f(aFolder); + const TCollection_ExtendedString& f = aFolder; if(f.Length() != 0) { myRequestedFolderIsDefined=Standard_True; myRequestedFolder=aFolder; @@ -975,8 +975,8 @@ void CDM_Document::RemoveFromReference(const Standard_Integer aReferenceIdentifi //purpose : //======================================================================= -TCollection_ExtendedString GetResource (const TCollection_ExtendedString aFormat, - const TCollection_ExtendedString anItem) +TCollection_ExtendedString GetResource (const TCollection_ExtendedString& aFormat, + const TCollection_ExtendedString& anItem) { TCollection_ExtendedString theResource; theResource+= aFormat; diff --git a/src/ChFi2d/ChFi2d_Builder_0.cxx b/src/ChFi2d/ChFi2d_Builder_0.cxx index 5d12686ec6..7ca33424ce 100644 --- a/src/ChFi2d/ChFi2d_Builder_0.cxx +++ b/src/ChFi2d/ChFi2d_Builder_0.cxx @@ -681,7 +681,7 @@ gp_Pnt ComputePoint(const TopoDS_Vertex& V,const TopoDS_Edge& E, p = BRep_Tool::Pnt(v2); } - GeomAdaptor_Curve cc = c.Curve(); + const GeomAdaptor_Curve& cc = c.Curve(); if (p.Distance(c.Value(first)) <= Precision::Confusion()) { GCPnts_AbscissaPoint computePoint(cc, D, first); Param = computePoint.Parameter(); diff --git a/src/ChFi2d/ChFi2d_FilletAlgo.cxx b/src/ChFi2d/ChFi2d_FilletAlgo.cxx index f93ed7c1d1..f5ae1e87a8 100644 --- a/src/ChFi2d/ChFi2d_FilletAlgo.cxx +++ b/src/ChFi2d/ChFi2d_FilletAlgo.cxx @@ -180,7 +180,7 @@ static Standard_Boolean IsRadiusIntersected(const Handle(Geom2d_Curve)& theCurve if (gp_Vec2d(aPoint, theStart).IsOpposite(gp_Vec2d(aPoint, theEnd), Precision::Angular())) return Standard_True; } - Handle(Geom2d_Curve) aCurve = theCurve; + const Handle(Geom2d_Curve)& aCurve = theCurve; for(a = anInter.NbSegments(); a > 0; a--) { //anInter.Segment(a, aCurve); //not implemented (bug in OCC) diff --git a/src/ChFi3d/ChFi3d.cxx b/src/ChFi3d/ChFi3d.cxx index 82d87ebd62..702b83b1de 100644 --- a/src/ChFi3d/ChFi3d.cxx +++ b/src/ChFi3d/ChFi3d.cxx @@ -274,8 +274,8 @@ Standard_Integer ChFi3d::ConcaveSide(const BRepAdaptor_Surface& S1, Standard_Real par = 0.691254*first + 0.308746*last; gp_Pnt pt, pt1, pt2; gp_Vec tgE, tgE1, tgE2, ns1, ns2, dint1, dint2; - TopoDS_Face F1 = S1.Face(); - TopoDS_Face F2 = S2.Face(); + const TopoDS_Face& F1 = S1.Face(); + const TopoDS_Face& F2 = S2.Face(); //F1.Orientation(TopAbs_FORWARD); //F2.Orientation(TopAbs_FORWARD); diff --git a/src/ChFi3d/ChFi3d_Builder.cxx b/src/ChFi3d/ChFi3d_Builder.cxx index 54b793e277..f418482696 100644 --- a/src/ChFi3d/ChFi3d_Builder.cxx +++ b/src/ChFi3d/ChFi3d_Builder.cxx @@ -426,7 +426,6 @@ void ChFi3d_Builder::Compute() if (letype == TopAbs_SHELL){ TopExp_Explorer expsh2(its.Value(),TopAbs_SHELL); const TopoDS_Shape& cursh = expsh2.Current(); - TopoDS_Shape tt = cursh; B1.Add(myShapeResult,cursh); its.Next(); } diff --git a/src/ChFi3d/ChFi3d_Builder_1.cxx b/src/ChFi3d/ChFi3d_Builder_1.cxx index 3355704b5b..7da5da1359 100644 --- a/src/ChFi3d/ChFi3d_Builder_1.cxx +++ b/src/ChFi3d/ChFi3d_Builder_1.cxx @@ -151,8 +151,8 @@ static TopoDS_Edge MakeOffsetEdge(const TopoDS_Edge& theEdge, { TopoDS_Edge OffsetEdge; - TopoDS_Face F1 = S1.Face(); - TopoDS_Face F2 = S2.Face(); + const TopoDS_Face& F1 = S1.Face(); + const TopoDS_Face& F2 = S2.Face(); Handle(Geom_Surface) GS1 = BRep_Tool::Surface(F1); Handle(Geom_Surface) TrGS1 = new Geom_RectangularTrimmedSurface(GS1, diff --git a/src/ChFi3d/ChFi3d_Builder_6.cxx b/src/ChFi3d/ChFi3d_Builder_6.cxx index d943534185..38129ffcf8 100644 --- a/src/ChFi3d/ChFi3d_Builder_6.cxx +++ b/src/ChFi3d/ChFi3d_Builder_6.cxx @@ -242,7 +242,7 @@ static Standard_Boolean IsObst(const ChFiDS_CommonPoint& CP, // //======================================================================= -static void CompParam(Geom2dAdaptor_Curve Carc, +static void CompParam(const Geom2dAdaptor_Curve& Carc, Handle(Geom2d_Curve) Ctg, Standard_Real& parc, Standard_Real& ptg, @@ -330,8 +330,8 @@ static void CompParam(Geom2dAdaptor_Curve Carc, static Standard_Boolean CompBlendPoint(const TopoDS_Vertex& V, const TopoDS_Edge& E, const Standard_Real W, - const TopoDS_Face F1, - const TopoDS_Face F2, + const TopoDS_Face& F1, + const TopoDS_Face& F2, Blend_Point& BP) { gp_Pnt2d P1, P2; diff --git a/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx b/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx index e974aca2fd..5ad82754b8 100644 --- a/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx +++ b/src/ChFi3d/ChFi3d_Builder_CnCrn.cxx @@ -484,8 +484,8 @@ static void CalculDroite(const gp_Pnt2d & p2d1, //purpose : calcule a batten between curves 2d curv2d1 and curv2d2 at points p2d1 and p2d2 //======================================================================= -static void CalculBatten (const Handle (GeomAdaptor_Surface) ASurf, - const TopoDS_Face Face , +static void CalculBatten (const Handle (GeomAdaptor_Surface)& ASurf, + const TopoDS_Face& Face , const Standard_Real xdir, const Standard_Real ydir, const gp_Pnt2d & p2d1, diff --git a/src/ChFi3d/ChFi3d_Builder_SpKP.cxx b/src/ChFi3d/ChFi3d_Builder_SpKP.cxx index f17b400060..f7df34a0a5 100644 --- a/src/ChFi3d/ChFi3d_Builder_SpKP.cxx +++ b/src/ChFi3d/ChFi3d_Builder_SpKP.cxx @@ -539,7 +539,7 @@ static void FillSD (TopOpeBRepDS_DataStructure& DStr, const Standard_Boolean isFirst, const Standard_Integer ons, const Standard_Real pitol, - const TopoDS_Vertex bout) + const TopoDS_Vertex& bout) { Standard_Integer opp = 3 - ons; diff --git a/src/DBRep/DBRep.cxx b/src/DBRep/DBRep.cxx index 9fc4e74a2d..2dba7ae0d7 100644 --- a/src/DBRep/DBRep.cxx +++ b/src/DBRep/DBRep.cxx @@ -1134,17 +1134,17 @@ static Standard_Integer setFlags(Draw_Interpretor& , setProp(Sh, a, n); for (ex.Init (Sh,TopAbs_VERTEX); ex.More(); ex.Next()) { - TopoDS_Shape S = ex.Current(); + const TopoDS_Shape& S = ex.Current(); setProp(S, a, n); } for (ex.Init (Sh,TopAbs_EDGE); ex.More(); ex.Next()) { - TopoDS_Shape S = ex.Current(); + const TopoDS_Shape& S = ex.Current(); setProp(S, a, n); } for (ex.Init (Sh,TopAbs_FACE); ex.More(); ex.Next()) { - TopoDS_Shape S = ex.Current(); + const TopoDS_Shape& S = ex.Current(); setProp(S, a, n); } diff --git a/src/DDF/DDF_DataCommands.cxx b/src/DDF/DDF_DataCommands.cxx index d189c160ed..71a276d570 100644 --- a/src/DDF/DDF_DataCommands.cxx +++ b/src/DDF/DDF_DataCommands.cxx @@ -291,14 +291,14 @@ static Standard_Integer DDF_CheckAttrs (Draw_Interpretor& di,Standard_Integer n // std::cout<<"\tSource Attribute dynamic type = "<DynamicType()<Attributes(); //attMap for (TDF_MapIteratorOfAttributeMap attMItr(attMap);attMItr.More(); attMItr.Next()) { - Handle(TDF_Attribute) sAtt = attMItr.Key(); + const Handle(TDF_Attribute)& sAtt = attMItr.Key(); // std::cout<<"\t\tSource references attribute dynamic type = "<DynamicType()<References(ds2); // std::cout<<"\t\t\tTARGET attribute dynamic type = "<DynamicType()<Attributes(); //attMap for (TDF_MapIteratorOfAttributeMap attMItr2(attMap2);attMItr2.More(); attMItr2.Next()) { - Handle(TDF_Attribute) tAtt = attMItr2.Key(); + const Handle(TDF_Attribute)& tAtt = attMItr2.Key(); // std::cout<<"\t\t\t\tTarget reference attribute dynamic type = "<DynamicType()<IsInstance(sAtt->DynamicType())) if(tAtt == sAtt) { @@ -350,7 +350,7 @@ static Standard_Integer DDF_CheckLabel (Draw_Interpretor& di,Standard_Integer n di<<"\tSource Attribute dynamic type = " << itr.Value()->DynamicType()->Name() << "\n"; const TDF_AttributeMap& attMap = ds1->Attributes(); //attMap for (TDF_MapIteratorOfAttributeMap attMItr(attMap);attMItr.More(); attMItr.Next()) { - Handle(TDF_Attribute) sAtt = attMItr.Key(); + const Handle(TDF_Attribute)& sAtt = attMItr.Key(); TCollection_AsciiString entry; TDF_Tool::Entry(sAtt->Label(), entry); //std::cout<<"\t\tReferences attribute dynamic type = "<DynamicType()<<",\tLabel = "<GetIntegersContainer(); TColStd_DataMapIteratorOfDataMapOfStringInteger itr(aMap); for (; itr.More(); itr.Next()){ - TCollection_ExtendedString aKey(itr.Key()); + const TCollection_ExtendedString& aKey(itr.Key()); Standard_Integer aValue = itr.Value(); di << "Key = " << aKey << " Value = " << aValue << "\n"; } @@ -3500,7 +3500,7 @@ static Standard_Integer DDataStd_GetNDReals (Draw_Interpretor& di, const TDataStd_DataMapOfStringReal& aMap = anAtt->GetRealsContainer(); TDataStd_DataMapIteratorOfDataMapOfStringReal itr(aMap); for (; itr.More(); itr.Next()){ - TCollection_ExtendedString aKey(itr.Key()); + const TCollection_ExtendedString& aKey(itr.Key()); Standard_Real aValue = itr.Value(); di << "Key = " << aKey << " Value = " << aValue << "\n"; } @@ -3757,7 +3757,7 @@ static Standard_Integer DDataStd_GetNDBytes (Draw_Interpretor& di, TDataStd_DataMapIteratorOfDataMapOfStringByte itr(aMap); for (; itr.More(); itr.Next()) { - TCollection_ExtendedString aKey(itr.Key()); + const TCollection_ExtendedString& aKey(itr.Key()); Standard_Byte aValue = itr.Value(); std::cout << "Key = " << aKey << " Value = " <GetArraysOfIntegersContainer(); TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfInteger itr(aMap); for (; itr.More(); itr.Next()){ - TCollection_ExtendedString aKey(itr.Key()); + const TCollection_ExtendedString& aKey(itr.Key()); std::cout << "Key = " << aKey<< std::endl; - Handle(TColStd_HArray1OfInteger) anArrValue = itr.Value(); + const Handle(TColStd_HArray1OfInteger)& anArrValue = itr.Value(); if(!anArrValue.IsNull()) { Standard_Integer lower = anArrValue->Lower(); Standard_Integer upper = anArrValue->Upper(); @@ -4025,9 +4025,9 @@ static Standard_Integer DDataStd_GetNDRealArrays (Draw_Interpretor& di, const TDataStd_DataMapOfStringHArray1OfReal& aMap = anAtt->GetArraysOfRealsContainer(); TDataStd_DataMapIteratorOfDataMapOfStringHArray1OfReal itr(aMap); for (; itr.More(); itr.Next()){ - TCollection_ExtendedString aKey(itr.Key()); + const TCollection_ExtendedString& aKey(itr.Key()); std::cout << "Key = " << aKey << std::endl; - Handle(TColStd_HArray1OfReal) anArrValue = itr.Value(); + const Handle(TColStd_HArray1OfReal)& anArrValue = itr.Value(); if(!anArrValue.IsNull()) { Standard_Integer lower = anArrValue->Lower(); Standard_Integer upper = anArrValue->Upper(); diff --git a/src/DDocStd/DDocStd_ShapeSchemaCommands.cxx b/src/DDocStd/DDocStd_ShapeSchemaCommands.cxx index 543130f153..c83b67542b 100644 --- a/src/DDocStd/DDocStd_ShapeSchemaCommands.cxx +++ b/src/DDocStd/DDocStd_ShapeSchemaCommands.cxx @@ -155,7 +155,7 @@ static Standard_Integer DDocStd_fsdwrite(Draw_Interpretor& theDI, StdObjMgt_TransientPersistentMap aMap; for (Standard_Integer i = 1; i <= aShapes.Length(); ++i) { - TopoDS_Shape aShape = aShapes.Value(i); + const TopoDS_Shape& aShape = aShapes.Value(i); Handle(ShapePersistent_TopoDS::HShape) aPShape = ShapePersistent_TopoDS::Translate(aShape, aMap, ShapePersistent_WithTriangle); diff --git a/src/DE/DE_Wrapper.cxx b/src/DE/DE_Wrapper.cxx index 091fde72d6..45bac0b135 100644 --- a/src/DE/DE_Wrapper.cxx +++ b/src/DE/DE_Wrapper.cxx @@ -457,7 +457,7 @@ void DE_Wrapper::ChangePriority(const TCollection_AsciiString& theFormat, const TCollection_AsciiString& aVendorName = aVendorIter.Key(); if (!theVendorPriority.Contains(aVendorName)) { - Handle(DE_ConfigurationNode) aNode = aVendorIter.Value(); + const Handle(DE_ConfigurationNode)& aNode = aVendorIter.Value(); if (theToDisable) { aNode->SetEnabled(Standard_False); diff --git a/src/DNaming/DNaming.cxx b/src/DNaming/DNaming.cxx index b6a9dce174..94bf946184 100644 --- a/src/DNaming/DNaming.cxx +++ b/src/DNaming/DNaming.cxx @@ -263,13 +263,13 @@ static void LoadC0Edges(const TopoDS_Shape& S, TopExp_Explorer anEx(S,TopAbs_EDGE); // mpv: new explorer iterator because we need keep edges order for(;anEx.More();anEx.Next()) { Standard_Boolean aC0 = Standard_False; - TopoDS_Shape anEdge1 = anEx.Current(); + const TopoDS_Shape& anEdge1 = anEx.Current(); if (edgeNaborFaces.IsBound(anEdge1)) { const TopTools_ListOfShape& aList1 = edgeNaborFaces.Find(anEdge1); if (aList1.Extent()<2) continue; // mpv (06.09.2002): these edges already was loaded TopTools_DataMapIteratorOfDataMapOfShapeListOfShape itr(edgeNaborFaces); for (; itr.More(); itr.Next()) { - TopoDS_Shape anEdge2 = itr.Key(); + const TopoDS_Shape& anEdge2 = itr.Key(); if(anEdgesToDelete.Contains(anEdge2)) continue; if (anEdge1.IsSame(anEdge2)) continue; const TopTools_ListOfShape& aList2 = itr.Value(); @@ -875,7 +875,6 @@ Standard_Boolean DNaming::ComputeSweepDir (const TopoDS_Shape& theShape, gp_Ax1& theAxis) { // Find surface - TopLoc_Location aLocation = theShape.Location(); Handle(Geom_Plane) aPlane; if (theShape.ShapeType() == TopAbs_FACE) { diff --git a/src/DNaming/DNaming_BooleanOperationDriver.cxx b/src/DNaming/DNaming_BooleanOperationDriver.cxx index b5722518f2..c90581d583 100644 --- a/src/DNaming/DNaming_BooleanOperationDriver.cxx +++ b/src/DNaming/DNaming_BooleanOperationDriver.cxx @@ -451,7 +451,7 @@ void FindSPErrorEdges(const TopoDS_Shape& theShape, TopExp_Explorer anExpE(theShape, TopAbs_EDGE); for(; anExpE.More(); anExpE.Next()) { - Handle(BRepCheck_Result) aResult = theAnalyzer.Result(anExpE.Current()); + const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(anExpE.Current()); if(aResult.IsNull() || theMap.Contains(anExpE.Current())) continue; @@ -474,7 +474,7 @@ void FindSPErrorEdges(const TopoDS_Shape& theShape, } } else if(theShape.ShapeType() == TopAbs_EDGE) { - Handle(BRepCheck_Result) aResult = theAnalyzer.Result(theShape); + const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(theShape); itl.Initialize(aResult->Status()); for(; itl.More(); itl.Next()) { @@ -503,7 +503,7 @@ Standard_Boolean FindOtherErrors(const TopoDS_Shape& theShape, if(FindOtherErrors(anIt.Value(), theAnalyzer, theMap)) return Standard_True; } - Handle(BRepCheck_Result) aResult = theAnalyzer.Result(theShape); + const Handle(BRepCheck_Result)& aResult = theAnalyzer.Result(theShape); if (!aResult.IsNull()) { @@ -518,7 +518,7 @@ Standard_Boolean FindOtherErrors(const TopoDS_Shape& theShape, TopExp_Explorer anExpE(anExpF.Current(), TopAbs_EDGE); for(; anExpE.More(); anExpE.Next()) { - Handle(BRepCheck_Result) aResultE = theAnalyzer.Result(anExpE.Current()); + const Handle(BRepCheck_Result)& aResultE = theAnalyzer.Result(anExpE.Current()); if(aResultE.IsNull()) continue; diff --git a/src/DNaming/DNaming_ModelingCommands.cxx b/src/DNaming/DNaming_ModelingCommands.cxx index b7f6b081c0..eed3de3f02 100644 --- a/src/DNaming/DNaming_ModelingCommands.cxx +++ b/src/DNaming/DNaming_ModelingCommands.cxx @@ -1672,7 +1672,7 @@ static Standard_Boolean MakeSelection (const Handle(TDataStd_UAttribute)& Obj, if(aNode.IsNull()) aNode = TDataStd_TreeNode::Set(Obj->Label()); aNode->Remove(); - Handle(TDataStd_UAttribute) aContainer = ContextObj; + const Handle(TDataStd_UAttribute)& aContainer = ContextObj; if(aContainer->Label().FindAttribute(TDataStd_TreeNode::GetDefaultTreeID(), RNode)) RNode->Append(aNode); TDataStd_Name::Set(Obj->Label(), "Auxiliary_Object"); diff --git a/src/DNaming/DNaming_SelectionCommands.cxx b/src/DNaming/DNaming_SelectionCommands.cxx index 288d827501..269ab68d72 100644 --- a/src/DNaming/DNaming_SelectionCommands.cxx +++ b/src/DNaming/DNaming_SelectionCommands.cxx @@ -150,7 +150,7 @@ Standard_Boolean FillValidMap(const TDF_Label& theLabel, TDF_LabelMap& theValidM #endif TDF_Tool::OutReferences(aLabel,anExtMap); for (TDF_MapIteratorOfAttributeMap attMItr(anExtMap);attMItr.More(); attMItr.Next()) { - Handle(TDF_Attribute) att = attMItr.Key(); + const Handle(TDF_Attribute)& att = attMItr.Key(); #ifdef OCCT_DEBUG_SELN TDF_Tool::Entry(att->Label(), entr1); std::cout<<"## References attribute dynamic type = "<DynamicType()<<" at Label = "<Value( aCurve->FirstParameter() ); GeomAPI_ProjectPointOnSurf projector( Pnt, S1, Precision::Confusion() ); Standard_Real U, V; diff --git a/src/Draw/Draw_PloadCommands.cxx b/src/Draw/Draw_PloadCommands.cxx index a4dfc746d8..eebf8d5e77 100644 --- a/src/Draw/Draw_PloadCommands.cxx +++ b/src/Draw/Draw_PloadCommands.cxx @@ -115,7 +115,7 @@ static void resolveKeys (Draw_MapOfAsciiString& theMap, for (Standard_Integer j = 1; j <= aMapExtent; ++j) { TCollection_AsciiString aValue; - const TCollection_AsciiString aResource = theMap.FindKey (j); + const TCollection_AsciiString& aResource = theMap.FindKey (j); if (theResMgr->Find (aResource, aValue)) { #ifdef OCCT_DEBUG @@ -204,7 +204,7 @@ static Standard_Integer Pload (Draw_Interpretor& theDI, const Standard_Integer aMapExtent = aMap.Extent(); for (Standard_Integer aResIter = 1; aResIter <= aMapExtent; ++aResIter) { - const TCollection_AsciiString aResource = aMap.FindKey (aResIter); + const TCollection_AsciiString& aResource = aMap.FindKey (aResIter); #ifdef OCCT_DEBUG std::cout << "aResource = " << aResource << std::endl; #endif diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx b/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx index de5dc5f3a7..47f25feea0 100644 --- a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Circ2d2TanOn.cxx @@ -60,9 +60,9 @@ Geom2dGcc_Circ2d2TanOn:: GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); GeomAbs_CurveType Type3 = OnCurve.GetType(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); - Handle(Geom2d_Curve) Con = OnCurve.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& Con = OnCurve.Curve(); //============================================================================= // Appel a GccAna. + @@ -392,8 +392,8 @@ Geom2dGcc_Circ2d2TanOn:: Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type3 = OnCurve.GetType(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) Con = OnCurve.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& Con = OnCurve.Curve(); //============================================================================= // Appel a GccAna. + @@ -581,7 +581,7 @@ Geom2dGcc_Circ2d2TanOn:: parcen3(1,8) { GeomAbs_CurveType Type3 = OnCurve.GetType(); - Handle(Geom2d_Curve) Con = OnCurve.Curve(); + const Handle(Geom2d_Curve)& Con = OnCurve.Curve(); //============================================================================= // Appel a GccAna. + diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx b/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx index 55336cd687..961914a5a1 100644 --- a/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Circ2d2TanRad.cxx @@ -70,8 +70,8 @@ Geom2dGcc_Circ2d2TanRad:: else { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); Geom2dAdaptor_Curve C2 = Qualified2.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); @@ -276,7 +276,7 @@ Geom2dGcc_Circ2d2TanRad:: if (Radius < 0.) { throw Standard_NegativeValue(); } else { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx b/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx index 666a977b0c..fc407c1a91 100644 --- a/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Circ2d3Tan.cxx @@ -58,9 +58,9 @@ Geom2dGcc_Circ2d3Tan:: Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); Geom2dAdaptor_Curve C2 = Qualified2.Qualified(); Geom2dAdaptor_Curve C3 = Qualified3.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); - Handle(Geom2d_Curve) CC3 = C3.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& CC3 = C3.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); GeomAbs_CurveType Type3 = C3.GetType(); @@ -266,8 +266,8 @@ Geom2dGcc_Circ2d3Tan:: { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); Geom2dAdaptor_Curve C2 = Qualified2.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); @@ -383,7 +383,7 @@ Geom2dGcc_Circ2d3Tan:: pararg3(1,16) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx b/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx index 5995429e38..613cd6e8bd 100644 --- a/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Circ2dTanCen.cxx @@ -42,7 +42,7 @@ Geom2dGcc_Circ2dTanCen:: pararg1(1,2) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= diff --git a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx b/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx index a95e2bf171..9b5921f16b 100644 --- a/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Circ2dTanOnRad.cxx @@ -53,8 +53,8 @@ Geom2dGcc_Circ2dTanOnRad:: Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = OnCurve.GetType(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) Con = OnCurve.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& Con = OnCurve.Curve(); //============================================================================= // Appel a GccAna. + @@ -163,7 +163,7 @@ Geom2dGcc_Circ2dTanOnRad:: else { gp_Pnt2d point1(Point1->Pnt2d()); GeomAbs_CurveType Type2 = OnCurve.GetType(); - Handle(Geom2d_Curve) Con = OnCurve.Curve(); + const Handle(Geom2d_Curve)& Con = OnCurve.Curve(); //============================================================================= // Appel a GccAna. + diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx b/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx index 14ad20d020..be6e855b75 100644 --- a/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Lin2d2Tan.cxx @@ -46,8 +46,8 @@ Geom2dGcc_Lin2d2Tan:: { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); Geom2dAdaptor_Curve C2 = Qualified2.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); @@ -127,7 +127,7 @@ Geom2dGcc_Lin2d2Tan:: pararg2(1,2) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= @@ -196,8 +196,8 @@ Geom2dGcc_Lin2d2Tan:: { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); Geom2dAdaptor_Curve C2 = Qualified2.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); - Handle(Geom2d_Curve) CC2 = C2.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC2 = C2.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); GeomAbs_CurveType Type2 = C2.GetType(); @@ -260,7 +260,7 @@ Geom2dGcc_Lin2d2Tan:: pararg2(1,2) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= diff --git a/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx b/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx index 560614e6c7..95a0937a6f 100644 --- a/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx +++ b/src/Geom2dGcc/Geom2dGcc_Lin2dTanObl.cxx @@ -45,7 +45,7 @@ Geom2dGcc_Lin2dTanObl:: pararg2(1,2) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= @@ -111,7 +111,7 @@ Geom2dGcc_Lin2dTanObl:: pararg2(1,2) { Geom2dAdaptor_Curve C1 = Qualified1.Qualified(); - Handle(Geom2d_Curve) CC1 = C1.Curve(); + const Handle(Geom2d_Curve)& CC1 = C1.Curve(); GeomAbs_CurveType Type1 = C1.GetType(); //============================================================================= diff --git a/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx b/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx index 4a6a8c125a..28d052d8a0 100644 --- a/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx +++ b/src/GeomConvert/GeomConvert_SurfToAnaSurf.cxx @@ -558,7 +558,7 @@ Handle(Geom_Surface) GeomConvert_SurfToAnaSurf::TryTorusSphere(const Handle(Geom Standard_Real GeomConvert_SurfToAnaSurf::ComputeGap(const Handle(Geom_Surface)& theSurf, const Standard_Real theU1, const Standard_Real theU2, const Standard_Real theV1, const Standard_Real theV2, - const Handle(Geom_Surface) theNewSurf, const Standard_Real theTol) + const Handle(Geom_Surface)& theNewSurf, const Standard_Real theTol) { GeomAdaptor_Surface aGAS(theNewSurf); GeomAbs_SurfaceType aSType = aGAS.GetType(); diff --git a/src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx b/src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx index ee333f54aa..1ebfa63fd7 100644 --- a/src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx +++ b/src/GeomConvert/GeomConvert_SurfToAnaSurf.hxx @@ -115,7 +115,7 @@ private: static Standard_Real ComputeGap(const Handle(Geom_Surface)& theSurf, const Standard_Real theU1, const Standard_Real theU2, const Standard_Real theV1, const Standard_Real theV2, - const Handle(Geom_Surface) theNewSurf, const Standard_Real theTol = RealLast()); + const Handle(Geom_Surface)& theNewSurf, const Standard_Real theTol = RealLast()); diff --git a/src/GeomFill/GeomFill_Pipe.cxx b/src/GeomFill/GeomFill_Pipe.cxx index 2f9c759747..8362ab2622 100644 --- a/src/GeomFill/GeomFill_Pipe.cxx +++ b/src/GeomFill/GeomFill_Pipe.cxx @@ -87,7 +87,7 @@ static Standard_Boolean CheckSense(const TColGeom_SequenceOfCurve& Seq1, Standard_Boolean no_sing = Standard_True; Seq2.Clear(); - Handle(Geom_Curve) C1 = Seq1.Value(1); + const Handle(Geom_Curve)& C1 = Seq1.Value(1); Standard_Real f = C1->FirstParameter(), l = C1->LastParameter(); Standard_Integer iP, NP = 21; TColgp_Array1OfPnt Tab(1,NP); @@ -125,7 +125,7 @@ static Standard_Boolean CheckSense(const TColGeom_SequenceOfCurve& Seq1, for (Standard_Integer iseq=2; iseq<=Seq1.Length(); iseq++) { // discretisation de C2 - Handle(Geom_Curve) C2 = Seq1.Value(iseq); + const Handle(Geom_Curve)& C2 = Seq1.Value(iseq); f = C2->FirstParameter(); l = C2->LastParameter(); u = f; diff --git a/src/GeomLib/GeomLib.cxx b/src/GeomLib/GeomLib.cxx index fcb2305344..d6d120129c 100644 --- a/src/GeomLib/GeomLib.cxx +++ b/src/GeomLib/GeomLib.cxx @@ -2816,7 +2816,7 @@ static Standard_Boolean CompareWeightPoles(const TColgp_Array1OfPnt& thePoles1, //function : isIsoLine //purpose : //============================================================================= -Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D, +Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D, Standard_Boolean& theIsU, Standard_Real& theParam, Standard_Boolean& theIsForward) @@ -2896,8 +2896,8 @@ Standard_Boolean GeomLib::isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D, //function : buildC3dOnIsoLine //purpose : //============================================================================= -Handle(Geom_Curve) GeomLib::buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d) theC2D, - const Handle(Adaptor3d_Surface) theSurf, +Handle(Geom_Curve) GeomLib::buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D, + const Handle(Adaptor3d_Surface)& theSurf, const Standard_Real theFirst, const Standard_Real theLast, const Standard_Real theTolerance, diff --git a/src/GeomLib/GeomLib.hxx b/src/GeomLib/GeomLib.hxx index 71e817bb90..a3a13fb96a 100644 --- a/src/GeomLib/GeomLib.hxx +++ b/src/GeomLib/GeomLib.hxx @@ -239,7 +239,7 @@ public: //! @param theParam Line parameter. //! @param theIsForward Flag indicating forward parameterization on a isoline. //! @return Standard_True when 2d curve is a line and Standard_False otherwise. - Standard_EXPORT static Standard_Boolean isIsoLine (const Handle(Adaptor2d_Curve2d) theC2D, + Standard_EXPORT static Standard_Boolean isIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D, Standard_Boolean& theIsU, Standard_Real& theParam, Standard_Boolean& theIsForward); @@ -251,8 +251,8 @@ public: //! @param theParam Line parameter. //! @param theIsForward Flag indicating forward parameterization on a isoline. //! @return Standard_True when 3d curve is built and Standard_False otherwise. - Standard_EXPORT static Handle(Geom_Curve) buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d) theC2D, - const Handle(Adaptor3d_Surface) theSurf, + Standard_EXPORT static Handle(Geom_Curve) buildC3dOnIsoLine (const Handle(Adaptor2d_Curve2d)& theC2D, + const Handle(Adaptor3d_Surface)& theSurf, const Standard_Real theFirst, const Standard_Real theLast, const Standard_Real theTolerance, diff --git a/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx b/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx index 9d7bca0230..fa50eb6314 100644 --- a/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx +++ b/src/GeomToStep/GeomToStep_MakeRectangularTrimmedSurface.cxx @@ -49,7 +49,7 @@ GeomToStep_MakeRectangularTrimmedSurface:: done = Standard_False; return; } - Handle(StepGeom_Surface) StepSurf = mkSurf.Value(); + const Handle(StepGeom_Surface)& StepSurf = mkSurf.Value(); Standard_Real U1,U2,V1,V2; RTSurf->Bounds(U1, U2, V1, V2); diff --git a/src/GeometryTest/GeometryTest_APICommands.cxx b/src/GeometryTest/GeometryTest_APICommands.cxx index 8e742ae691..0624ec4f59 100644 --- a/src/GeometryTest/GeometryTest_APICommands.cxx +++ b/src/GeometryTest/GeometryTest_APICommands.cxx @@ -363,7 +363,7 @@ static Standard_Integer surfapp(Draw_Interpretor& di, Standard_Integer n, const if (anApprox.IsDone()) { - Handle(Geom_BSplineSurface) S = anApprox.Surface(); + const Handle(Geom_BSplineSurface)& S = anApprox.Surface(); DrawTrSurf::Set(a[1], S); di << a[1]; } @@ -445,7 +445,7 @@ static Standard_Integer surfint(Draw_Interpretor& di, Standard_Integer n, const } if (anApprox.IsDone()) { - Handle(Geom_BSplineSurface) S = anApprox.Surface(); + const Handle(Geom_BSplineSurface)& S = anApprox.Surface(); DrawTrSurf::Set(a[1], S); di << a[1]; } diff --git a/src/GeometryTest/GeometryTest_ConstraintCommands.cxx b/src/GeometryTest/GeometryTest_ConstraintCommands.cxx index 4946ed3d8a..c73ca5adfb 100644 --- a/src/GeometryTest/GeometryTest_ConstraintCommands.cxx +++ b/src/GeometryTest/GeometryTest_ConstraintCommands.cxx @@ -543,7 +543,7 @@ static Standard_Integer interpol (Draw_Interpretor& di,Standard_Integer n, const 1.0e-5) ; anInterpolator.Perform() ; if (anInterpolator.IsDone()) { - Handle(Geom_BSplineCurve) C = + const Handle(Geom_BSplineCurve)& C = anInterpolator.Curve(); DrawTrSurf::Set(a[1], C); } @@ -560,7 +560,7 @@ static Standard_Integer interpol (Draw_Interpretor& di,Standard_Integer n, const 1.0e-5); a2dInterpolator.Perform() ; if (a2dInterpolator.IsDone()) { - Handle(Geom2d_BSplineCurve) C = a2dInterpolator.Curve() ; + const Handle(Geom2d_BSplineCurve)& C = a2dInterpolator.Curve() ; DrawTrSurf::Set(a[1], C); } } diff --git a/src/Graphic3d/Graphic3d_CView.cxx b/src/Graphic3d/Graphic3d_CView.cxx index 985692f00c..59e0ee75a9 100644 --- a/src/Graphic3d/Graphic3d_CView.cxx +++ b/src/Graphic3d/Graphic3d_CView.cxx @@ -349,7 +349,7 @@ void Graphic3d_CView::SetComputedMode (const Standard_Boolean theMode) for (Graphic3d_MapOfStructure::Iterator aDispStructIter (myStructsDisplayed); aDispStructIter.More(); aDispStructIter.Next()) { - Handle(Graphic3d_Structure) aStruct = aDispStructIter.Key(); + const Handle(Graphic3d_Structure)& aStruct = aDispStructIter.Key(); const Graphic3d_TypeOfAnswer anAnswer = acceptDisplay (aStruct->Visual()); if (anAnswer != Graphic3d_TOA_COMPUTE) { diff --git a/src/Graphic3d/Graphic3d_CubeMapOrder.cxx b/src/Graphic3d/Graphic3d_CubeMapOrder.cxx index 52c1c309f5..99fb33025c 100644 --- a/src/Graphic3d/Graphic3d_CubeMapOrder.cxx +++ b/src/Graphic3d/Graphic3d_CubeMapOrder.cxx @@ -54,7 +54,7 @@ Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (unsigned char thePosXLocation, // function : Graphic3d_CubeMapOrder // purpose : // ======================================================================= -Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder theOrder) +Graphic3d_CubeMapOrder::Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder& theOrder) : myConvolution (theOrder.Order.myConvolution), myHasOverflows (theOrder.Order.myHasOverflows) @@ -135,7 +135,7 @@ Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::SetDefault() // function : Permute // purpose : // ======================================================================= -Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (Graphic3d_ValidatedCubeMapOrder thePermutation) +Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (const Graphic3d_ValidatedCubeMapOrder& thePermutation) { for (unsigned char i = 0; i < 6; ++i) { @@ -149,7 +149,7 @@ Graphic3d_CubeMapOrder& Graphic3d_CubeMapOrder::Permute (Graphic3d_ValidatedCube // function : Permuted // purpose : // ======================================================================= -Graphic3d_CubeMapOrder Graphic3d_CubeMapOrder::Permuted (Graphic3d_ValidatedCubeMapOrder thePermutation) const +Graphic3d_CubeMapOrder Graphic3d_CubeMapOrder::Permuted (const Graphic3d_ValidatedCubeMapOrder& thePermutation) const { Graphic3d_CubeMapOrder anOrder = *this; anOrder.Permute (thePermutation); diff --git a/src/Graphic3d/Graphic3d_CubeMapOrder.hxx b/src/Graphic3d/Graphic3d_CubeMapOrder.hxx index cbdeafc10d..a5cdeb82e6 100644 --- a/src/Graphic3d/Graphic3d_CubeMapOrder.hxx +++ b/src/Graphic3d/Graphic3d_CubeMapOrder.hxx @@ -42,7 +42,7 @@ public: unsigned char theNegZLocation); //! Creates Graphic3d_CubeMapOrder using Graphic3d_ValidatedCubeMapOrder. - Standard_EXPORT Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder theOrder); + Standard_EXPORT Graphic3d_CubeMapOrder (const Graphic3d_ValidatedCubeMapOrder& theOrder); //! Alias of 'operator='. Standard_EXPORT Graphic3d_CubeMapOrder& Set (const Graphic3d_CubeMapOrder& theOrder); @@ -61,10 +61,10 @@ public: Standard_EXPORT Graphic3d_CubeMapOrder& SetDefault(); //! Applies another cubemap order as permutation for the current one. - Standard_EXPORT Graphic3d_CubeMapOrder& Permute (Graphic3d_ValidatedCubeMapOrder anOrder); + Standard_EXPORT Graphic3d_CubeMapOrder& Permute (const Graphic3d_ValidatedCubeMapOrder& anOrder); //! Returns permuted by other cubemap order copy of current one. - Standard_EXPORT Graphic3d_CubeMapOrder Permuted (Graphic3d_ValidatedCubeMapOrder anOrder) const; + Standard_EXPORT Graphic3d_CubeMapOrder Permuted (const Graphic3d_ValidatedCubeMapOrder& anOrder) const; //! Swaps values of two cubemap sides. Standard_EXPORT Graphic3d_CubeMapOrder& Swap (Graphic3d_CubeMapSide theFirstSide, diff --git a/src/Graphic3d/Graphic3d_CubeMapPacked.cxx b/src/Graphic3d/Graphic3d_CubeMapPacked.cxx index 2f9e180158..df8e6f71af 100644 --- a/src/Graphic3d/Graphic3d_CubeMapPacked.cxx +++ b/src/Graphic3d/Graphic3d_CubeMapPacked.cxx @@ -24,7 +24,7 @@ IMPLEMENT_STANDARD_RTTIEXT(Graphic3d_CubeMapPacked, Graphic3d_CubeMap) // purpose : // ======================================================================= Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const TCollection_AsciiString& theFilePath, - const Graphic3d_ValidatedCubeMapOrder theOrder) + const Graphic3d_ValidatedCubeMapOrder& theOrder) : Graphic3d_CubeMap (theFilePath), myOrder (theOrder), @@ -36,7 +36,7 @@ Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const TCollection_AsciiString& // purpose : // ======================================================================= Graphic3d_CubeMapPacked::Graphic3d_CubeMapPacked (const Handle(Image_PixMap)& theImage, - const Graphic3d_ValidatedCubeMapOrder theOrder) + const Graphic3d_ValidatedCubeMapOrder& theOrder) : Graphic3d_CubeMap (Handle(Image_PixMap)()), myOrder (theOrder), diff --git a/src/Graphic3d/Graphic3d_CubeMapPacked.hxx b/src/Graphic3d/Graphic3d_CubeMapPacked.hxx index 41a4f94d7e..ef7bbd50e5 100644 --- a/src/Graphic3d/Graphic3d_CubeMapPacked.hxx +++ b/src/Graphic3d/Graphic3d_CubeMapPacked.hxx @@ -29,13 +29,13 @@ public: //! @theFileName - path to the cubemap image //! @theOrder - array containing six different indexes of cubemap sides which maps tile grid to cubemap sides Standard_EXPORT Graphic3d_CubeMapPacked (const TCollection_AsciiString& theFileName, - const Graphic3d_ValidatedCubeMapOrder theOrder = Graphic3d_CubeMapOrder::Default()); + const Graphic3d_ValidatedCubeMapOrder& theOrder = Graphic3d_CubeMapOrder::Default()); //! Initialization to set cubemap directly by PixMap. //! @thePixMap - origin PixMap //! @theOrder - array containing six different indexes of cubemap sides which maps tile grid to cubemap sides Standard_EXPORT Graphic3d_CubeMapPacked (const Handle(Image_PixMap)& theImage, - const Graphic3d_ValidatedCubeMapOrder theOrder = Graphic3d_CubeMapOrder::Default()); + const Graphic3d_ValidatedCubeMapOrder& theOrder = Graphic3d_CubeMapOrder::Default()); //! Returns current cubemap side as compressed PixMap. Standard_EXPORT virtual Handle(Image_CompressedPixMap) CompressedValue (const Handle(Image_SupportedFormats)& theSupported) Standard_OVERRIDE; diff --git a/src/Graphic3d/Graphic3d_StructureManager.cxx b/src/Graphic3d/Graphic3d_StructureManager.cxx index a4e45a9b01..5abb44781f 100644 --- a/src/Graphic3d/Graphic3d_StructureManager.cxx +++ b/src/Graphic3d/Graphic3d_StructureManager.cxx @@ -137,7 +137,7 @@ Handle(Graphic3d_Structure) Graphic3d_StructureManager::Identification (const St Handle(Graphic3d_Structure) SGfound; for (; it.More() && notfound; it.Next()) { - Handle(Graphic3d_Structure) SG = it.Key(); + const Handle(Graphic3d_Structure)& SG = it.Key(); if ( SG->Identification () == AId) { notfound = Standard_False; SGfound = SG; @@ -165,7 +165,6 @@ void Graphic3d_StructureManager::RecomputeStructures() NCollection_Map aStructNetwork; for (Graphic3d_MapIteratorOfMapOfStructure anIter(myDisplayedStructure); anIter.More(); anIter.Next()) { - Handle(Graphic3d_Structure) aStructure = anIter.Key(); anIter.Key()->Network (anIter.Key().get(), Graphic3d_TOC_DESCENDANT, aStructNetwork); } diff --git a/src/Graphic3d/Graphic3d_Vertex.cxx b/src/Graphic3d/Graphic3d_Vertex.cxx index d3f9ed7480..38480ab1fc 100644 --- a/src/Graphic3d/Graphic3d_Vertex.cxx +++ b/src/Graphic3d/Graphic3d_Vertex.cxx @@ -18,9 +18,11 @@ #include #include +#include + Standard_ShortReal Graphic3d_Vertex::Distance(const Graphic3d_Vertex& AOther) const { - return sqrt( (X() - AOther.X()) * (X() - AOther.X()) + return std::sqrt( (X() - AOther.X()) * (X() - AOther.X()) + (Y() - AOther.Y()) * (Y() - AOther.Y()) + (Z() - AOther.Z()) * (Z() - AOther.Z()) ); } diff --git a/src/IFGraph/IFGraph_Articulations.cxx b/src/IFGraph/IFGraph_Articulations.cxx index f185c25b0f..06664da2e3 100644 --- a/src/IFGraph/IFGraph_Articulations.cxx +++ b/src/IFGraph/IFGraph_Articulations.cxx @@ -64,7 +64,7 @@ IFGraph_Articulations::IFGraph_Articulations for (Interface_EntityIterator iter = thegraph.Shareds(thegraph.Entity(num)); iter.More(); iter.Next()) { - Handle(Standard_Transient) ent = iter.Value(); + const Handle(Standard_Transient)& ent = iter.Value(); Standard_Integer nument = thegraph.EntityNumber(ent); if (!thegraph.IsPresent(num)) { thegraph.GetFromEntity(ent,Standard_False); diff --git a/src/IFGraph/IFGraph_ConnectedComponants.cxx b/src/IFGraph/IFGraph_ConnectedComponants.cxx index 519e3b2ff4..6b75fdf301 100644 --- a/src/IFGraph/IFGraph_ConnectedComponants.cxx +++ b/src/IFGraph/IFGraph_ConnectedComponants.cxx @@ -35,7 +35,7 @@ IFGraph_ConnectedComponants::IFGraph_ConnectedComponants Interface_EntityIterator loaded = Loaded(); Reset(); for (loaded.Start(); loaded.More(); loaded.Next()) { - Handle(Standard_Transient) ent = loaded.Value(); + const Handle(Standard_Transient)& ent = loaded.Value(); if (IsInPart(ent)) continue; IFGraph_AllConnected connect(Model(),ent); AddPart(); diff --git a/src/IFSelect/IFSelect_BasicDumper.cxx b/src/IFSelect/IFSelect_BasicDumper.cxx index 26a04db161..3a5af1f5d6 100644 --- a/src/IFSelect/IFSelect_BasicDumper.cxx +++ b/src/IFSelect/IFSelect_BasicDumper.cxx @@ -142,7 +142,7 @@ IFSelect_BasicDumper::IFSelect_BasicDumper () { } return Standard_True; } if (type.IsEqual("IFSelect_SelectTextType")) { - const TCollection_AsciiString exname = file.ParamValue(1); + const TCollection_AsciiString& exname = file.ParamValue(1); if (exname.Length() < FIRSTCHAR) return Standard_False; if (exname.Value(FIRSTCHAR) == 'e') {} else if (exname.Value(FIRSTCHAR) == 'c') {} @@ -168,7 +168,7 @@ IFSelect_BasicDumper::IFSelect_BasicDumper () { } if (type.IsEqual("IFSelect_TransformStandard")) { Standard_Boolean copyoption; - const TCollection_AsciiString copyname = file.ParamValue(1); + const TCollection_AsciiString& copyname = file.ParamValue(1); if (copyname.Length() < FIRSTCHAR) return Standard_False; if (copyname.Value(FIRSTCHAR) == 'c') copyoption = Standard_True; else if (copyname.Value(FIRSTCHAR) == 'o') copyoption = Standard_False; diff --git a/src/IFSelect/IFSelect_CheckCounter.cxx b/src/IFSelect/IFSelect_CheckCounter.cxx index 6c3802c4e5..bcec09dfaf 100644 --- a/src/IFSelect/IFSelect_CheckCounter.cxx +++ b/src/IFSelect/IFSelect_CheckCounter.cxx @@ -72,7 +72,7 @@ void IFSelect_CheckCounter::Analyse(const Interface_CheckIterator& list, for (list.Start(); list.More(); list.Next()) { num = list.Number(); Handle(Standard_Transient) ent; - const Handle(Interface_Check) check = list.Value(); + const Handle(Interface_Check)& check = list.Value(); ent = check->Entity(); if (ent.IsNull() && num > 0 && num <= nbe) ent = model->Value(num); nb = check->NbFails(); diff --git a/src/IFSelect/IFSelect_ModelCopier.cxx b/src/IFSelect/IFSelect_ModelCopier.cxx index 79ddb58d50..c98d4a1cc6 100644 --- a/src/IFSelect/IFSelect_ModelCopier.cxx +++ b/src/IFSelect/IFSelect_ModelCopier.cxx @@ -259,7 +259,7 @@ IFSelect_ModelCopier::IFSelect_ModelCopier () { } Interface_CheckIterator checks; checks.SetName ("X-STEP WorkSession : Send All"); Message::SendInfo() << "** WorkSession : Sending all data"<NewEmptyModel(); Interface_CopyTool TC (original, protocol); @@ -361,7 +361,7 @@ IFSelect_ModelCopier::IFSelect_ModelCopier () { } // et aussi : pas de Dispatch (envoi en bloc) applied.Nullify(); - Handle(Interface_InterfaceModel) original = G.Model(); + const Handle(Interface_InterfaceModel)& original = G.Model(); if (dispnum > 0) { newmod = original->NewEmptyModel(); TC.Clear(); @@ -441,7 +441,7 @@ IFSelect_ModelCopier::IFSelect_ModelCopier () { } (const Interface_Graph& G, const Handle(IFSelect_WorkLibrary)& WL, Interface_CopyTool& TC, Handle(Interface_InterfaceModel)& newmod) { - Handle(Interface_InterfaceModel) original = G.Model(); + const Handle(Interface_InterfaceModel)& original = G.Model(); // Interface_CopyTool TC(original,protocol); newmod = original->NewEmptyModel(); TC.Clear(); diff --git a/src/IFSelect/IFSelect_SelectExtract.cxx b/src/IFSelect/IFSelect_SelectExtract.cxx index 2985948be7..a7d945be1e 100644 --- a/src/IFSelect/IFSelect_SelectExtract.cxx +++ b/src/IFSelect/IFSelect_SelectExtract.cxx @@ -37,10 +37,9 @@ IFSelect_SelectExtract::IFSelect_SelectExtract () { Interface_EntityIterator iter; Interface_EntityIterator inputer = InputResult(G); // tient compte de tout - Handle(Interface_InterfaceModel) model = G.Model(); Standard_Integer rank = 0; for (inputer.Start(); inputer.More(); inputer.Next()) { - Handle(Standard_Transient) ent = inputer.Value(); + const Handle(Standard_Transient)& ent = inputer.Value(); rank ++; if (SortInGraph(rank,ent,G) == thesort) iter.GetOneItem(ent); } diff --git a/src/IFSelect/IFSelect_SelectRootComps.cxx b/src/IFSelect/IFSelect_SelectRootComps.cxx index 368a82bf0c..8b59c52a20 100644 --- a/src/IFSelect/IFSelect_SelectRootComps.cxx +++ b/src/IFSelect/IFSelect_SelectRootComps.cxx @@ -55,7 +55,7 @@ IFSelect_SelectRootComps::IFSelect_SelectRootComps () { } // A present, on retient, parmi les inputs, celles comptees une seule fois // (N.B.: on prend inp1, qui donne UNE entite par composant, simple ou cycle) for (inp1.Start(); inp1.More(); inp1.Next()) { - Handle(Standard_Transient) ent = inp1.Value(); + const Handle(Standard_Transient)& ent = inp1.Value(); if ((GC.NbTimes(ent) <= 1) == IsDirect()) iter.GetOneItem(ent); } return iter; diff --git a/src/IFSelect/IFSelect_SelectRoots.cxx b/src/IFSelect/IFSelect_SelectRoots.cxx index a60c4e6653..32e517b437 100644 --- a/src/IFSelect/IFSelect_SelectRoots.cxx +++ b/src/IFSelect/IFSelect_SelectRoots.cxx @@ -38,12 +38,12 @@ IFSelect_SelectRoots::IFSelect_SelectRoots () { } // On note dans le graphe : le cumul de chaque ensemble (Entite + Shared tous // niveaux). Les Roots initiales comptees une seule fois sont bonnes for (input.Start(); input.More(); input.Next()) { - Handle(Standard_Transient) ent = input.Value(); + const Handle(Standard_Transient)& ent = input.Value(); GC.GetFromEntity(ent); } // A present, on retient, parmi les inputs, celles comptees une seule fois for (input.Start(); input.More(); input.Next()) { - Handle(Standard_Transient) ent = input.Value(); + const Handle(Standard_Transient)& ent = input.Value(); if ((GC.NbTimes(ent) <= 1) == IsDirect()) iter.GetOneItem(ent); } return iter; diff --git a/src/IFSelect/IFSelect_SelectSignature.cxx b/src/IFSelect/IFSelect_SelectSignature.cxx index c19bc5d320..95fe170c89 100644 --- a/src/IFSelect/IFSelect_SelectSignature.cxx +++ b/src/IFSelect/IFSelect_SelectSignature.cxx @@ -98,7 +98,7 @@ static Standard_Integer multsign { Standard_Boolean res; Standard_CString txt; - Handle(Interface_InterfaceModel) model = G.Model(); + const Handle(Interface_InterfaceModel)& model = G.Model(); if (theexact <= 0) { if (!thematcher.IsNull()) return thematcher->Matches (ent,model,thesigntext, (theexact < 0)); txt = thecounter->ComputedSign(ent,G); diff --git a/src/IFSelect/IFSelect_Selection.cxx b/src/IFSelect/IFSelect_Selection.cxx index 0fcc5ef743..e777c9f371 100644 --- a/src/IFSelect/IFSelect_Selection.cxx +++ b/src/IFSelect/IFSelect_Selection.cxx @@ -46,7 +46,7 @@ Standard_Boolean IFSelect_Selection::HasUniqueResult () const // On peut utiliser le Graphe a present Interface_Graph GG(G); for (iter.Start(); iter.More(); iter.Next()) { - Handle(Standard_Transient) ent = iter.Value(); + const Handle(Standard_Transient)& ent = iter.Value(); GG.GetFromEntity(ent,Standard_True); // et voila } return Interface_GraphContent(GG); // EntityIterator specialise (meme taille) diff --git a/src/IFSelect/IFSelect_SignatureList.cxx b/src/IFSelect/IFSelect_SignatureList.cxx index a56ab4a48f..4075df788c 100644 --- a/src/IFSelect/IFSelect_SignatureList.cxx +++ b/src/IFSelect/IFSelect_SignatureList.cxx @@ -212,7 +212,7 @@ IFSelect_SignatureList::IFSelect_SignatureList nbtot += nbent; nbsign ++; if (nbent > maxent) maxent = nbent; - TCollection_AsciiString name = iter.Key(); + const TCollection_AsciiString& name = iter.Key(); // if (!name.IsIntegerValue()) continue; pas bien fiable Standard_Integer ic, nc = name.Length(); Standard_Boolean iaint = Standard_True; diff --git a/src/IFSelect/IFSelect_TransformStandard.cxx b/src/IFSelect/IFSelect_TransformStandard.cxx index ab4572d329..cc35ac2ecf 100644 --- a/src/IFSelect/IFSelect_TransformStandard.cxx +++ b/src/IFSelect/IFSelect_TransformStandard.cxx @@ -118,7 +118,7 @@ IFSelect_TransformStandard::IFSelect_TransformStandard () (const Interface_Graph& G, Interface_CopyTool& TC, Handle(Interface_InterfaceModel)& newmod) const { - Handle(Interface_InterfaceModel) original = G.Model(); + const Handle(Interface_InterfaceModel)& original = G.Model(); newmod = original->NewEmptyModel(); TC.Clear(); Standard_Integer nb = G.Size(); @@ -150,7 +150,7 @@ IFSelect_TransformStandard::IFSelect_TransformStandard () Standard_Boolean res = Standard_True; Standard_Boolean chg = Standard_False; Standard_Integer nb = NbModifiers(); - Handle(Interface_InterfaceModel) original = G.Model(); + const Handle(Interface_InterfaceModel)& original = G.Model(); for (Standard_Integer i = 1; i <= nb; i ++) { Handle(IFSelect_Modifier) unmod = Modifier(i); diff --git a/src/IFSelect/IFSelect_WorkSession.cxx b/src/IFSelect/IFSelect_WorkSession.cxx index 0de1d2a60f..27730d18e6 100644 --- a/src/IFSelect/IFSelect_WorkSession.cxx +++ b/src/IFSelect/IFSelect_WorkSession.cxx @@ -568,7 +568,7 @@ Standard_Boolean IFSelect_WorkSession::ComputeCheck BM.Init (Standard_False,Flag_Incorrect); Standard_Integer num, nb = CG.Size(); for (checklist.Start(); checklist.More(); checklist.Next()) { - const Handle(Interface_Check) chk = checklist.Value(); + const Handle(Interface_Check)& chk = checklist.Value(); if (!chk->HasFailed()) continue; num = checklist.Number(); if (num > 0 && num <= nb) BM.SetTrue (num,Flag_Incorrect); @@ -2707,7 +2707,7 @@ void IFSelect_WorkSession::QueryCheckList (const Interface_CheckIterator& chl) thecheckana = TCollection_AsciiString (nb+1,' '); for (chl.Start(); chl.More(); chl.Next()) { Standard_Integer num = chl.Number(); - const Handle(Interface_Check) ach = chl.Value(); + const Handle(Interface_Check)& ach = chl.Value(); if (ach->HasFailed()) thecheckana.SetValue(num,'2'); else if (ach->HasWarnings()) thecheckana.SetValue(num,'1'); } @@ -3038,7 +3038,7 @@ void IFSelect_WorkSession::DumpSelection IFSelect_SelectionIterator iter; sel->FillIterator(iter); for (; iter.More(); iter.Next()) { nb ++; - Handle(IFSelect_Selection) newsel = iter.Value(); + const Handle(IFSelect_Selection)& newsel = iter.Value(); sout<<" -- "<Label()<1 && mode != IFSelect_CountSummary); counter->Analyse (chks,myModel,Standard_True,failsonly); @@ -3722,7 +3722,7 @@ void IFSelect_WorkSession::ListEntities if (!titre && mode == 0) sout<<" Keys : R Root ? Unknown * Unloaded"<Number(ent); if (mode == 1) { // n0 id (root?) category validity tracetype diff --git a/src/IGESCAFControl/IGESCAFControl_Provider.cxx b/src/IGESCAFControl/IGESCAFControl_Provider.cxx index fa8084ace0..f5c82fd3e1 100644 --- a/src/IGESCAFControl/IGESCAFControl_Provider.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Provider.cxx @@ -94,7 +94,7 @@ void IGESCAFControl_Provider::initStatic(const Handle(DE_ConfigurationNode)& the // function : setStatic // purpose : //======================================================================= -void IGESCAFControl_Provider::setStatic(const IGESCAFControl_ConfigurationNode::IGESCAFControl_InternalSection theParameter) +void IGESCAFControl_Provider::setStatic(const IGESCAFControl_ConfigurationNode::IGESCAFControl_InternalSection& theParameter) { Interface_Static::SetIVal("read.iges.bspline.continuity", theParameter.ReadBSplineContinuity); Interface_Static::SetIVal("read.precision.mode", theParameter.ReadPrecisionMode); diff --git a/src/IGESCAFControl/IGESCAFControl_Provider.hxx b/src/IGESCAFControl/IGESCAFControl_Provider.hxx index 101234a414..2dc29a3935 100644 --- a/src/IGESCAFControl/IGESCAFControl_Provider.hxx +++ b/src/IGESCAFControl/IGESCAFControl_Provider.hxx @@ -139,7 +139,7 @@ private: void initStatic(const Handle(DE_ConfigurationNode)& theNode); //! Initialize static variables - void setStatic(const IGESCAFControl_ConfigurationNode::IGESCAFControl_InternalSection theParameter); + void setStatic(const IGESCAFControl_ConfigurationNode::IGESCAFControl_InternalSection& theParameter); //! Reset used interface static variables void resetStatic(); diff --git a/src/IGESCAFControl/IGESCAFControl_Reader.cxx b/src/IGESCAFControl/IGESCAFControl_Reader.cxx index 86b083fe83..bf8cfba272 100644 --- a/src/IGESCAFControl/IGESCAFControl_Reader.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Reader.cxx @@ -95,7 +95,7 @@ static void AddCompositeShape (const Handle(XCAFDoc_ShapeTool)& theSTool, TopTools_MapOfShape& theMap) { TopoDS_Shape aShape = theShape; - TopLoc_Location aLoc = theShape.Location(); + const TopLoc_Location& aLoc = theShape.Location(); if (!theConsiderLoc && !aLoc.IsIdentity()) aShape.Location( TopLoc_Location() ); if (!theMap.Add (aShape)) diff --git a/src/IGESCAFControl/IGESCAFControl_Writer.cxx b/src/IGESCAFControl/IGESCAFControl_Writer.cxx index 706a3e93d7..53059072c5 100644 --- a/src/IGESCAFControl/IGESCAFControl_Writer.cxx +++ b/src/IGESCAFControl/IGESCAFControl_Writer.cxx @@ -278,7 +278,7 @@ void IGESCAFControl_Writer::MakeColors (const TopoDS_Shape &S, // check if shape has its own style (or inherits from ancestor) XCAFPrs_Style style = inherit; if ( settings.Contains(S) ) { - XCAFPrs_Style own = settings.FindFromKey(S); + const XCAFPrs_Style& own = settings.FindFromKey(S); if ( own.IsSetColorCurv() ) style.SetColorCurv ( own.GetColorCurv() ); if ( own.IsSetColorSurf() ) style.SetColorSurf ( own.GetColorSurf() ); style.SetMaterial (own.Material()); @@ -397,7 +397,7 @@ static void AttachLayer (const Handle(Transfer_FinderProcess) &FP, if ( aSh.ShapeType() == TopAbs_COMPOUND ) { TopoDS_Iterator aShIt(aSh); for ( ; aShIt.More(); aShIt.Next() ) { - TopoDS_Shape newSh = aShIt.Value(); + const TopoDS_Shape& newSh = aShIt.Value(); Handle(TColStd_HSequenceOfExtendedString) shLayers = new TColStd_HSequenceOfExtendedString; if (! LTool->GetLayers( newSh, shLayers) || newSh.ShapeType() == TopAbs_COMPOUND ) AttachLayer(FP, LTool, newSh, localIntName); @@ -413,7 +413,7 @@ static void AttachLayer (const Handle(Transfer_FinderProcess) &FP, } for (Standard_Integer i = 1; i <= shseq.Length(); i++ ) { - TopoDS_Shape localShape = shseq.Value(i); + const TopoDS_Shape& localShape = shseq.Value(i); Handle(IGESData_IGESEntity) Igesent; Handle(TransferBRep_ShapeMapper) mapper = TransferBRep::ShapeMapper ( FP, localShape ); if ( FP->FindTypedTransient ( mapper, STANDARD_TYPE(IGESData_IGESEntity), Igesent ) ) { diff --git a/src/IGESControl/IGESControl_Reader.cxx b/src/IGESControl/IGESControl_Reader.cxx index d9346bb415..93eb955eaf 100644 --- a/src/IGESControl/IGESControl_Reader.cxx +++ b/src/IGESControl/IGESControl_Reader.cxx @@ -149,7 +149,7 @@ void IGESControl_Reader::PrintTransferInfo // Init for dicoCountResult for IFSelect_ResultCount if ( mode == IFSelect_ResultCount ) { char mess[300]; - const Handle(Transfer_Binder) aBinder = iterTrans.Value(); + const Handle(Transfer_Binder)& aBinder = iterTrans.Value(); sprintf(mess,"\t%s",aBinder->ResultTypeName()); if (aMapCountResult.IsBound(mess)) aMapCountResult.ChangeFind(mess)++; @@ -159,7 +159,7 @@ void IGESControl_Reader::PrintTransferInfo // Init for dicoCountMapping for IFSelect_Mapping else if ( mode == IFSelect_Mapping ) { char mess[300]; - const Handle(Transfer_Binder) aBinder = iterTrans.Value(); + const Handle(Transfer_Binder)& aBinder = iterTrans.Value(); DeclareAndCast(IGESData_IGESEntity,igesEnt,iterTrans.Starting()); sprintf(mess,"%d\t%d\t%s\t%s", igesEnt->TypeNumber(), igesEnt->FormNumber(), @@ -178,7 +178,7 @@ void IGESControl_Reader::PrintTransferInfo // Init the dicoCount dicoList and nbWarn ,nb Fail. for(checkIterator.Start(); checkIterator.More(); checkIterator.Next() ) { char mess[300]; - const Handle(Interface_Check) aCheck = checkIterator.Value(); + const Handle(Interface_Check)& aCheck = checkIterator.Value(); Handle(Standard_Transient) ent = model->Value(checkIterator.Number()); DeclareAndCast(IGESData_IGESEntity,igesEnt,ent); Standard_Integer type = igesEnt->TypeNumber(), form = igesEnt->FormNumber(); @@ -242,7 +242,7 @@ void IGESControl_Reader::PrintTransferInfo Message_Messenger::StreamBuffer aSender = TF->SendInfo(); aSender << aMapCountIter.Value() << aMapCountIter.Key() << std::endl; if (mode == IFSelect_ListByItem) { - Handle(TColStd_HSequenceOfInteger) entityList = aMapListIter.Value(); + const Handle(TColStd_HSequenceOfInteger)& entityList = aMapListIter.Value(); Standard_Integer length = entityList->Length(); Message_Msg msg3035("IGES_3035"); TF->Send(msg3035, Message_Info); diff --git a/src/IGESData/IGESData_GeneralModule.cxx b/src/IGESData/IGESData_GeneralModule.cxx index 6920274416..37158506e7 100644 --- a/src/IGESData/IGESData_GeneralModule.cxx +++ b/src/IGESData/IGESData_GeneralModule.cxx @@ -168,7 +168,7 @@ void IGESData_GeneralModule::FillSharedCase if (enfr->NbAssociativities() != 0) { for (Interface_EntityIterator iter = enfr->Associativities(); iter.More(); iter.Next()) { - Handle(Standard_Transient) anent = iter.Value(); + const Handle(Standard_Transient)& anent = iter.Value(); Handle(Standard_Transient) newent; if (TC.Search(anent,newent)) ento->AddAssociativity (GetCasted(IGESData_IGESEntity,newent)); diff --git a/src/IGESData/IGESData_IGESModel.cxx b/src/IGESData/IGESData_IGESModel.cxx index c58873a852..7f17a73e28 100644 --- a/src/IGESData/IGESData_IGESModel.cxx +++ b/src/IGESData/IGESData_IGESModel.cxx @@ -492,7 +492,7 @@ void IGESData_VerifyDate(const Handle(TCollection_HAsciiString)& str, if (str.IsNull()) { ach->SendFail(Msg57); return; } - Handle(TCollection_HAsciiString) stdvar = str; + const Handle(TCollection_HAsciiString)& stdvar = str; if (strcmp(mess,"Last Change Date")==0) Msg57.Arg(25); else diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisible.cxx b/src/IGESDraw/IGESDraw_ToolViewsVisible.cxx index 3cf6d5a7c9..8480f21b94 100644 --- a/src/IGESDraw/IGESDraw_ToolViewsVisible.cxx +++ b/src/IGESDraw/IGESDraw_ToolViewsVisible.cxx @@ -200,7 +200,7 @@ void IGESDraw_ToolViewsVisible::OwnCheck { Standard_Integer res = 0; Standard_Integer nb = ent->NbDisplayedEntities(); - Handle(IGESData_ViewKindEntity) entcomp (ent); + const Handle(IGESData_ViewKindEntity)& entcomp = ent; for (Standard_Integer i = 1; i <= nb; i ++) { Handle(IGESData_IGESEntity) displayed = ent->DisplayedEntity(i); if (entcomp != displayed->View()) res ++; @@ -237,7 +237,7 @@ Standard_Boolean IGESDraw_ToolViewsVisible::OwnCorrect // Les entites affichees doivent referencer . Elles ont priorite. Standard_Boolean res = Standard_False; Standard_Integer nb = ent->NbDisplayedEntities(); - Handle(IGESData_ViewKindEntity) entcomp (ent); + const Handle(IGESData_ViewKindEntity)& entcomp = ent; for (Standard_Integer i = 1; i <= nb; i ++) { Handle(IGESData_IGESEntity) displayed = ent->DisplayedEntity(i); if (entcomp != displayed->View()) res = Standard_True; diff --git a/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx b/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx index ebfcfc813d..fdd813ca0c 100644 --- a/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx +++ b/src/IGESDraw/IGESDraw_ToolViewsVisibleWithAttr.cxx @@ -309,7 +309,7 @@ void IGESDraw_ToolViewsVisibleWithAttr::OwnCheck if (ent->LineFontValue(i) != 0 && ent->IsFontDefinition(i)) ach->AddFail ("At least one Line Font Definition Mismatch (both Value and Entity"); } - Handle(IGESData_ViewKindEntity) entcomp (ent); + const Handle(IGESData_ViewKindEntity)& entcomp = ent; Standard_Integer res = 0; nb = ent->NbDisplayedEntities(); for (i = 1; i <= nb; i ++) { @@ -380,7 +380,7 @@ Standard_Boolean IGESDraw_ToolViewsVisibleWithAttr::OwnCorrect // Les entites affichees doivent referencer . Elles ont priorite. Standard_Boolean res = Standard_False; Standard_Integer nb = ent->NbDisplayedEntities(); - Handle(IGESData_ViewKindEntity) entcomp (ent); + const Handle(IGESData_ViewKindEntity)& entcomp = ent; for (Standard_Integer i = 1; i <= nb; i ++) { Handle(IGESData_IGESEntity) displayed = ent->DisplayedEntity(i); if (entcomp != displayed->View()) res = Standard_True; diff --git a/src/IGESSelect/IGESSelect.cxx b/src/IGESSelect/IGESSelect.cxx index fa1a76ba7c..7f1d782536 100644 --- a/src/IGESSelect/IGESSelect.cxx +++ b/src/IGESSelect/IGESSelect.cxx @@ -41,7 +41,7 @@ Standard_Integer IGESSelect::WhatIges (const Handle(IGESData_IGESEntity)& ent, const Interface_Graph& G, Handle(IGESData_IGESEntity)& /* sup */, Standard_Integer& /* index */) { - Handle(IGESData_IGESEntity) igesent = ent; + const Handle(IGESData_IGESEntity)& igesent = ent; if (igesent.IsNull()) return Standard_False; // Standard_Integer igt = igesent->TypeNumber(); DeclareAndCast(IGESData_IGESModel,model,G.Model()); diff --git a/src/IGESSelect/IGESSelect_Dumper.cxx b/src/IGESSelect/IGESSelect_Dumper.cxx index 8e8241fb19..3cbfd8d94f 100644 --- a/src/IGESSelect/IGESSelect_Dumper.cxx +++ b/src/IGESSelect/IGESSelect_Dumper.cxx @@ -156,7 +156,7 @@ IGESSelect_Dumper::IGESSelect_Dumper () { } if (type.IsEqual("IGESSelect_SelectIGESTypeForm")) { if (file.NbParams() < 2) return Standard_False; //Standard_Boolean exact; //szv#4:S4163:12Mar99 not needed - const TCollection_AsciiString exname = file.ParamValue(1); + const TCollection_AsciiString& exname = file.ParamValue(1); if (exname.Length() < 1) return Standard_False; if (exname.Value(1) == 'e') {} //szv#4:S4163:12Mar99 `exact = Standard_True` not needed else if (exname.Value(1) == 'c') {} //szv#4:S4163:12Mar99 `exact = Standard_False` not needed @@ -201,7 +201,7 @@ IGESSelect_Dumper::IGESSelect_Dumper () { } if (file.NbParams() < 2) return Standard_False; Handle(IGESSelect_FloatFormat) ff = new IGESSelect_FloatFormat; Standard_Boolean zerosup; - const TCollection_AsciiString zsup = file.ParamValue(1); + const TCollection_AsciiString& zsup = file.ParamValue(1); if (zsup.Length() < 1) return Standard_False; if (zsup.Value(1) == 'z') zerosup = Standard_True; else if (zsup.Value(1) == 'n') zerosup = Standard_False; @@ -269,7 +269,7 @@ IGESSelect_Dumper::IGESSelect_Dumper () { } if (type.IsEqual("IGESSelect_SplineToBSpline")) { if (file.NbParams() < 1) return Standard_False; Standard_Boolean tryc2; - const TCollection_AsciiString tc2 = file.ParamValue(1); + const TCollection_AsciiString& tc2 = file.ParamValue(1); if (tc2.Length() < 1) return Standard_False; if (tc2.Value(1) == 'T') tryc2 = Standard_True; else if (tc2.Value(1) == 'N') tryc2 = Standard_False; diff --git a/src/IGESToBRep/IGESToBRep_Reader.cxx b/src/IGESToBRep/IGESToBRep_Reader.cxx index 7dd8339741..e1f2a409db 100644 --- a/src/IGESToBRep/IGESToBRep_Reader.cxx +++ b/src/IGESToBRep/IGESToBRep_Reader.cxx @@ -157,7 +157,7 @@ Standard_Integer IGESToBRep_Reader::LoadFile (const Standard_CString filename) Interface_CheckTool cht (model,protocol); Interface_CheckIterator anIter = cht.CompleteCheckList(); for(anIter.Start(); anIter.More(); anIter.Next()) { - const Handle(Interface_Check) ach = anIter.Value(); + const Handle(Interface_Check)& ach = anIter.Value(); nbWarn += ach->NbWarnings(); nbFail += ach->NbFails(); } diff --git a/src/IGESToBRep/IGESToBRep_TopoSurface.cxx b/src/IGESToBRep/IGESToBRep_TopoSurface.cxx index 653b3ad1c7..6464712111 100644 --- a/src/IGESToBRep/IGESToBRep_TopoSurface.cxx +++ b/src/IGESToBRep/IGESToBRep_TopoSurface.cxx @@ -1590,7 +1590,7 @@ TopoDS_Shape IGESToBRep_TopoSurface::TransferPlaneParts(const Handle(IGESGeom_Pl return res; } - TopoDS_Face F = MF.Face(); + const TopoDS_Face& F = MF.Face(); GProp_GProps G; BRepGProp::SurfaceProperties(F,G); if (G.Mass() < 0) { diff --git a/src/IntPatch/IntPatch_ImpPrmIntersection.cxx b/src/IntPatch/IntPatch_ImpPrmIntersection.cxx index 6ecec53651..ef7c959e0a 100644 --- a/src/IntPatch/IntPatch_ImpPrmIntersection.cxx +++ b/src/IntPatch/IntPatch_ImpPrmIntersection.cxx @@ -1414,7 +1414,7 @@ void IntPatch_ImpPrmIntersection::Perform (const Handle(Adaptor3d_Surface)& Surf gp_Pnt ptpoly; IntSurf_PntOn2S p2s; Handle(IntSurf_LineOn2S) Thelin = new IntSurf_LineOn2S (); - Handle(Adaptor2d_Curve2d) arcsegm = thesegm.Curve(); + const Handle(Adaptor2d_Curve2d)& arcsegm = thesegm.Curve(); Standard_Integer nbsample = 100; if (!reversed) { diff --git a/src/IntTools/IntTools_Context.cxx b/src/IntTools/IntTools_Context.cxx index 286bac96fc..6c4deb2777 100644 --- a/src/IntTools/IntTools_Context.cxx +++ b/src/IntTools/IntTools_Context.cxx @@ -736,7 +736,7 @@ Standard_Boolean IntTools_Context::IsValidBlockForFace aTInterm=IntTools_Tools::IntermediatePoint(aT1, aT2); - Handle(Geom_Curve) aC3D=aC.Curve(); + const Handle(Geom_Curve)& aC3D=aC.Curve(); // point 3D aC3D->D0(aTInterm, aPInterm); // @@ -821,7 +821,7 @@ Standard_Boolean IntTools_Context::IsVertexOnLine aPv=BRep_Tool::Pnt(aV); - Handle(Geom_Curve) aC3D=aC.Curve(); + const Handle(Geom_Curve)& aC3D=aC.Curve(); aTolSum=aTolV+aTolC; diff --git a/src/IntTools/IntTools_Tools.cxx b/src/IntTools/IntTools_Tools.cxx index 3c72ec9906..6575cea309 100644 --- a/src/IntTools/IntTools_Tools.cxx +++ b/src/IntTools/IntTools_Tools.cxx @@ -201,12 +201,12 @@ static Standard_Integer IntTools_Tools::SplitCurve(const IntTools_Curve& IC, IntTools_SequenceOfCurves& aCvs) { - Handle (Geom_Curve) aC3D =IC.Curve(); + const Handle (Geom_Curve)& aC3D =IC.Curve(); if(aC3D.IsNull()) return 0; // - Handle (Geom2d_Curve) aC2D1=IC.FirstCurve2d(); - Handle (Geom2d_Curve) aC2D2=IC.SecondCurve2d(); + const Handle (Geom2d_Curve)& aC2D1=IC.FirstCurve2d(); + const Handle (Geom2d_Curve)& aC2D2=IC.SecondCurve2d(); Standard_Boolean bIsClosed; bIsClosed=IntTools_Tools::IsClosed(aC3D); diff --git a/src/Interface/Interface_Graph.cxx b/src/Interface/Interface_Graph.cxx index 7d6412474e..bc7a982418 100644 --- a/src/Interface/Interface_Graph.cxx +++ b/src/Interface/Interface_Graph.cxx @@ -158,7 +158,7 @@ void Interface_Graph::Evaluate() // Mise en forme : liste d entiers for (iter.Start(); iter.More(); iter.Next()) { // num = 0 -> on sort du Model de depart, le noter "Error" et passer - Handle(Standard_Transient) entshare = iter.Value(); + const Handle(Standard_Transient)& entshare = iter.Value(); if(entshare == ent) continue; @@ -349,7 +349,7 @@ void Interface_Graph::GetFromIter if(thestats.IsNull()) return; for (iter.Start(); iter.More(); iter.Next()) { - Handle(Standard_Transient) ent = iter.Value(); + const Handle(Standard_Transient)& ent = iter.Value(); Standard_Integer num = EntityNumber(ent); if (!num) continue; @@ -368,7 +368,7 @@ void Interface_Graph::GetFromIter if(thestats.IsNull()) return; for (iter.Start(); iter.More(); iter.Next()) { - Handle(Standard_Transient) ent = iter.Value(); + const Handle(Standard_Transient)& ent = iter.Value(); Standard_Integer num = EntityNumber(ent); if (!num) continue; diff --git a/src/Interface/Interface_GraphContent.cxx b/src/Interface/Interface_GraphContent.cxx index c0a16a91b0..e7fa227ea0 100644 --- a/src/Interface/Interface_GraphContent.cxx +++ b/src/Interface/Interface_GraphContent.cxx @@ -34,7 +34,7 @@ Interface_GraphContent::Interface_GraphContent () { } Standard_Integer nb = list.NbEntities(); if (nb == 0) return; // Liste redefinie a VIDE for( ; list.More(); list.Next()) { - Handle(Standard_Transient) curent = list.Value(); + const Handle(Standard_Transient)& curent = list.Value(); if (agraph.IsPresent(agraph.EntityNumber(curent))) GetOneItem (curent); } diff --git a/src/Interface/Interface_InterfaceModel.cxx b/src/Interface/Interface_InterfaceModel.cxx index 184743ce32..7c1331345f 100644 --- a/src/Interface/Interface_InterfaceModel.cxx +++ b/src/Interface/Interface_InterfaceModel.cxx @@ -498,7 +498,7 @@ void Interface_InterfaceModel::FillSemanticChecks for (checks.Start(); checks.More(); checks.Next()) nb ++; therepch.ReSize (therepch.Extent() + nb + 2); for (checks.Start(); checks.More(); checks.Next()) { - const Handle(Interface_Check) ach = checks.Value(); + const Handle(Interface_Check)& ach = checks.Value(); Standard_Integer num = checks.Number(); // global check : ok si MEME MODELE if (num == 0) thechecksem->GetMessages(ach); @@ -756,7 +756,8 @@ void Interface_InterfaceModel::GetFromTransfer { theentities.Clear(); theentities.ReSize (aniter.NbEntities()); for (aniter.Start(); aniter.More(); aniter.Next()) { - Handle(Standard_Transient) ent = aniter.Value(); AddEntity(ent); + const Handle(Standard_Transient)& ent = aniter.Value(); + AddEntity(ent); } } diff --git a/src/Interface/Interface_MSG.cxx b/src/Interface/Interface_MSG.cxx index 55398cf2b1..bbd0229490 100644 --- a/src/Interface/Interface_MSG.cxx +++ b/src/Interface/Interface_MSG.cxx @@ -158,7 +158,7 @@ Standard_Integer Interface_MSG::Read (Standard_IStream& S) for (; iter.More(); iter.Next()) { if (!iter.Key().StartsWith(rootkey)) continue; S<<"@"<ToCString()<<"\n"; diff --git a/src/Interface/Interface_ShareTool.cxx b/src/Interface/Interface_ShareTool.cxx index 730420954d..1720dc19f7 100644 --- a/src/Interface/Interface_ShareTool.cxx +++ b/src/Interface/Interface_ShareTool.cxx @@ -202,7 +202,7 @@ void Interface_ShareTool::Print (const Interface_EntityIterator& iter, Standard { S << " Nb.Entities : " << iter.NbEntities() << " : "; for (iter.Start(); iter.More(); iter.Next()) { - Handle(Standard_Transient) ent = iter.Value(); + const Handle(Standard_Transient)& ent = iter.Value(); S << " n0/id:"; Model()->Print (ent, S); } diff --git a/src/LocOpe/LocOpe_SplitDrafts.cxx b/src/LocOpe/LocOpe_SplitDrafts.cxx index 5ad7158714..edce77fcf6 100644 --- a/src/LocOpe/LocOpe_SplitDrafts.cxx +++ b/src/LocOpe/LocOpe_SplitDrafts.cxx @@ -1644,7 +1644,7 @@ static TopoDS_Edge NewEdge(const TopoDS_Edge& edg, Standard_Boolean rev = Standard_False; TopoDS_Vertex Vf = V1; TopoDS_Vertex Vl = V2; - Handle(Geom_Curve) Cimg = i2s.Line(i); + const Handle(Geom_Curve)& Cimg = i2s.Line(i); Handle(Geom2d_Curve) Cimg2d; if (AppS1) { Cimg2d = i2s.LineOnS1(i); diff --git a/src/LocOpe/LocOpe_SplitShape.cxx b/src/LocOpe/LocOpe_SplitShape.cxx index 00535b0078..6922896185 100644 --- a/src/LocOpe/LocOpe_SplitShape.cxx +++ b/src/LocOpe/LocOpe_SplitShape.cxx @@ -457,7 +457,7 @@ Standard_Boolean LocOpe_SplitShape::Add(const TopTools_ListOfShape& Lwires, else { //we have to choose the direction - TopoDS_Edge aStartEdge = wexp.Current(); + const TopoDS_Edge& aStartEdge = wexp.Current(); TopTools_ListOfShape Ldirs; Ldirs.Append(aStartEdge); Ldirs.Append(NextSectionWire); diff --git a/src/LocOpe/LocOpe_Spliter.cxx b/src/LocOpe/LocOpe_Spliter.cxx index 5dbadd8c40..5f282ddf65 100644 --- a/src/LocOpe/LocOpe_Spliter.cxx +++ b/src/LocOpe/LocOpe_Spliter.cxx @@ -471,7 +471,7 @@ void LocOpe_Spliter::Perform(const Handle(LocOpe_WiresOnShape)& PW) } } if (itms.More()) { - TopoDS_Shape fac = itms.Key(); + const TopoDS_Shape& fac = itms.Key(); for (exp.Init(fac,TopAbs_EDGE); exp.More(); exp.Next()) { if (!Mapebord.Add(exp.Current())) { Mapebord.Remove(exp.Current()); diff --git a/src/MAT2d/MAT2d_Mat2d.cxx b/src/MAT2d/MAT2d_Mat2d.cxx index 4e3d54c176..2e2a31055b 100644 --- a/src/MAT2d/MAT2d_Mat2d.cxx +++ b/src/MAT2d/MAT2d_Mat2d.cxx @@ -1727,7 +1727,7 @@ MAT2d_Mat2d::~MAT2d_Mat2d() MAT_DataMapIteratorOfDataMapOfIntegerBisector itmap(bisectormap); for (; itmap.More(); itmap.Next()) { - Handle(MAT_Bisector) aBisector = itmap.Value(); + const Handle(MAT_Bisector)& aBisector = itmap.Value(); aBisector->FirstEdge(NULL); aBisector->SecondEdge(NULL); } diff --git a/src/MeshTest/MeshTest.cxx b/src/MeshTest/MeshTest.cxx index 4c165a8822..02f2997487 100644 --- a/src/MeshTest/MeshTest.cxx +++ b/src/MeshTest/MeshTest.cxx @@ -474,7 +474,7 @@ static Standard_Integer MemLeakTest(Draw_Interpretor&, Standard_Integer /*nbarg* w.Close(); TopoDS_Wire wireShape( w.Wire()); BRepBuilderAPI_MakeFace faceBuilder(wireShape); - TopoDS_Face f( faceBuilder.Face()); + const TopoDS_Face& f = faceBuilder.Face(); BRepMesh_IncrementalMesh im(f,1); BRepTools::Clean(f); } diff --git a/src/MeshVS/MeshVS_Mesh.cxx b/src/MeshVS/MeshVS_Mesh.cxx index dba34e57f8..4da739d9aa 100644 --- a/src/MeshVS/MeshVS_Mesh.cxx +++ b/src/MeshVS/MeshVS_Mesh.cxx @@ -146,7 +146,7 @@ Standard_Boolean MeshVS_Mesh::AcceptDisplayMode (const Standard_Integer theMode) for (MeshVS_SequenceOfPrsBuilder::Iterator aBuilderIter (myBuilders); aBuilderIter.More(); aBuilderIter.Next()) { - Handle(MeshVS_PrsBuilder) aBuilder = aBuilderIter.Value(); + const Handle(MeshVS_PrsBuilder)& aBuilder = aBuilderIter.Value(); if (!aBuilder.IsNull() && aBuilder->TestFlags (theMode)) { diff --git a/src/Message/Message_PrinterToReport.cxx b/src/Message/Message_PrinterToReport.cxx index 0bbd84062f..2888a55bd9 100644 --- a/src/Message/Message_PrinterToReport.cxx +++ b/src/Message/Message_PrinterToReport.cxx @@ -112,7 +112,7 @@ void Message_PrinterToReport::send (const TCollection_AsciiString& theString, //function : sendMetricAlert //purpose : //======================================================================= -void Message_PrinterToReport::sendMetricAlert (const TCollection_AsciiString theValue, +void Message_PrinterToReport::sendMetricAlert (const TCollection_AsciiString& theValue, const Message_Gravity theGravity) const { Message_AlertExtended::AddAlert (Report(), new Message_AttributeMeter (theValue), theGravity); diff --git a/src/Message/Message_PrinterToReport.hxx b/src/Message/Message_PrinterToReport.hxx index e82cfe1565..eb05a60638 100644 --- a/src/Message/Message_PrinterToReport.hxx +++ b/src/Message/Message_PrinterToReport.hxx @@ -61,7 +61,7 @@ protected: const Message_Gravity theGravity) const Standard_OVERRIDE; //! Send an alert with metrics active in the current report - Standard_EXPORT void sendMetricAlert (const TCollection_AsciiString theValue, + Standard_EXPORT void sendMetricAlert (const TCollection_AsciiString& theValue, const Message_Gravity theGravity) const; private: diff --git a/src/Message/Message_Report.cxx b/src/Message/Message_Report.cxx index b63bd7137f..9f606f7448 100644 --- a/src/Message/Message_Report.cxx +++ b/src/Message/Message_Report.cxx @@ -148,7 +148,7 @@ void Message_Report::ActivateInMessenger (const Standard_Boolean toActivate, Message_SequenceOfPrinters aPrintersToRemove; for (Message_SequenceOfPrinters::Iterator anIterator (aMessenger->Printers()); anIterator.More(); anIterator.Next()) { - const Handle(Message_Printer) aPrinter = anIterator.Value(); + const Handle(Message_Printer)& aPrinter = anIterator.Value(); if (aPrinter->IsKind(STANDARD_TYPE (Message_PrinterToReport)) && Handle(Message_PrinterToReport)::DownCast (aPrinter)->Report() == this) aPrintersToRemove.Append (aPrinter); diff --git a/src/MoniTool/MoniTool_AttrList.cxx b/src/MoniTool/MoniTool_AttrList.cxx index e5deb74a74..b7533c8f8b 100644 --- a/src/MoniTool/MoniTool_AttrList.cxx +++ b/src/MoniTool/MoniTool_AttrList.cxx @@ -169,10 +169,10 @@ MoniTool_AttrList::MoniTool_AttrList () { } NCollection_DataMap::Iterator iter(list); for (; iter.More(); iter.Next()) { - TCollection_AsciiString name = iter.Key(); + const TCollection_AsciiString& name = iter.Key(); if (!name.StartsWith(fromname)) continue; - Handle(Standard_Transient) atr = iter.Value(); + const Handle(Standard_Transient)& atr = iter.Value(); Handle(Standard_Transient) newatr = atr; // Copy ? according type diff --git a/src/MoniTool/MoniTool_TypedValue.cxx b/src/MoniTool/MoniTool_TypedValue.cxx index 244f821d83..f6e7b7534f 100644 --- a/src/MoniTool/MoniTool_TypedValue.cxx +++ b/src/MoniTool/MoniTool_TypedValue.cxx @@ -192,7 +192,7 @@ static Standard_Boolean StaticPath(const Handle(TCollection_HAsciiString)& val) def.AssignCat(" , alpha: "); NCollection_DataMap::Iterator listadd(theeadds); for (; listadd.More(); listadd.Next()) { - TCollection_AsciiString aName = listadd.Key(); + const TCollection_AsciiString& aName = listadd.Key(); Standard_CString enva = aName.ToCString(); if (enva[0] == '?') continue; Sprintf(mess,":%d ",listadd.Value()); diff --git a/src/OpenGl/OpenGl_Text.cxx b/src/OpenGl/OpenGl_Text.cxx index 023485e76a..0431d51df9 100644 --- a/src/OpenGl/OpenGl_Text.cxx +++ b/src/OpenGl/OpenGl_Text.cxx @@ -312,7 +312,7 @@ void OpenGl_Text::StringSize (const Handle(OpenGl_Context)& theCtx, } theWidth = Max (theWidth, aWidth); - Handle(OpenGl_Context) aCtx = theCtx; + const Handle(OpenGl_Context)& aCtx = theCtx; aFont.Nullify(); aCtx->ReleaseResource (aFontKey, Standard_True); } diff --git a/src/PCDM/PCDM_ReadWriter.cxx b/src/PCDM/PCDM_ReadWriter.cxx index a0a7b44e22..436185e37b 100644 --- a/src/PCDM/PCDM_ReadWriter.cxx +++ b/src/PCDM/PCDM_ReadWriter.cxx @@ -201,7 +201,7 @@ static TCollection_ExtendedString TryXmlDriverType // of the DocumentElement, the XML format cannot be defined if (aParser.parse (theFileName.ToCString())) { - LDOM_Element anElement = aParser.GetElement(); + const LDOM_Element& anElement = aParser.GetElement(); if (anElement.getTagName().equals (LDOMString(aDocumentElementName))) theFormat = anElement.getAttribute ("format"); } @@ -226,7 +226,7 @@ static TCollection_ExtendedString TryXmlDriverType (Standard_IStream& theIStream // of the DocumentElement, the XML format cannot be defined if (aParser.parse (theIStream, Standard_True)) { - LDOM_Element anElement = aParser.GetElement(); + const LDOM_Element& anElement = aParser.GetElement(); if (anElement.getTagName().equals (LDOMString(aDocumentElementName))) theFormat = anElement.getAttribute ("format"); } diff --git a/src/PrsDim/PrsDim.cxx b/src/PrsDim/PrsDim.cxx index b103684ade..ece9e75d19 100644 --- a/src/PrsDim/PrsDim.cxx +++ b/src/PrsDim/PrsDim.cxx @@ -895,7 +895,7 @@ Standard_Boolean PrsDim::InitAngleBetweenPlanarFaces (const TopoDS_Face& theFirs } // Get intersect line. - Handle(Geom_Curve) anIntersectCurve = aPlaneIntersector.Line (1); + const Handle(Geom_Curve)& anIntersectCurve = aPlaneIntersector.Line (1); Handle(Geom_Line) anIntersectLine = Handle(Geom_Line)::DownCast (anIntersectCurve); @@ -982,8 +982,6 @@ Standard_Boolean PrsDim::InitAngleBetweenCurvilinearFaces (const TopoDS_Face& th } // Get intersect line. - Handle(Geom_Curve) anIntersectCurve = aSurfaceIntersector.Line (1); - Handle(Geom_Line) aFirstLine, aSecondLine; Standard_Real aFirstU = 0.0; Standard_Real aFirstV = 0.0; diff --git a/src/PrsDim/PrsDim_PerpendicularRelation.cxx b/src/PrsDim/PrsDim_PerpendicularRelation.cxx index 0161b5d4e9..46426c1e11 100644 --- a/src/PrsDim/PrsDim_PerpendicularRelation.cxx +++ b/src/PrsDim/PrsDim_PerpendicularRelation.cxx @@ -218,7 +218,6 @@ void PrsDim_PerpendicularRelation::ComputeTwoEdgesPerpendicular(const Handle(Prs // current face BRepBuilderAPI_MakeFace makeface (myPlane->Pln()); - TopoDS_Face face (makeface.Face()); BRepAdaptor_Surface adp (makeface.Face()); // 2d lines => projection of 3d on current plane diff --git a/src/PrsDim/PrsDim_TangentRelation.cxx b/src/PrsDim/PrsDim_TangentRelation.cxx index 756ee39b45..037e0f5a5e 100644 --- a/src/PrsDim/PrsDim_TangentRelation.cxx +++ b/src/PrsDim/PrsDim_TangentRelation.cxx @@ -217,7 +217,6 @@ void PrsDim_TangentRelation::ComputeTwoEdgesTangent(const Handle(Prs3d_Presentat aPresentation->SetInfiniteState(isInfinite1 || isInfinite2); // current face BRepBuilderAPI_MakeFace makeface(myPlane->Pln()); - TopoDS_Face face(makeface.Face()); BRepAdaptor_Surface adp(makeface.Face()); Standard_Integer typArg(0); diff --git a/src/PrsMgr/PrsMgr_PresentableObject.cxx b/src/PrsMgr/PrsMgr_PresentableObject.cxx index 3cb38867de..b723891b86 100644 --- a/src/PrsMgr/PrsMgr_PresentableObject.cxx +++ b/src/PrsMgr/PrsMgr_PresentableObject.cxx @@ -346,7 +346,7 @@ void PrsMgr_PresentableObject::SetTransformPersistence (const Handle(Graphic3d_T //======================================================================= void PrsMgr_PresentableObject::AddChild (const Handle(PrsMgr_PresentableObject)& theObject) { - Handle(PrsMgr_PresentableObject) aHandleGuard = theObject; + const Handle(PrsMgr_PresentableObject)& aHandleGuard = theObject; if (theObject->myParent != NULL) { theObject->myParent->RemoveChild (aHandleGuard); diff --git a/src/QABugs/QABugs_1.cxx b/src/QABugs/QABugs_1.cxx index 01b5566821..de3d1d74f8 100644 --- a/src/QABugs/QABugs_1.cxx +++ b/src/QABugs/QABugs_1.cxx @@ -243,7 +243,7 @@ static Standard_Integer OCC10bug (Draw_Interpretor& di, Standard_Integer argc, c } // Construction du Geom_Plane GC_MakePlane MkPlane(A,B,C); - Handle(Geom_Plane) theGeomPlane=MkPlane.Value(); + const Handle(Geom_Plane)& theGeomPlane=MkPlane.Value(); // on le display & bind theAISPlaneTri= new AIS_PlaneTrihedron(theGeomPlane ); diff --git a/src/QABugs/QABugs_10.cxx b/src/QABugs/QABugs_10.cxx index 524ef59741..ddb79f56b2 100644 --- a/src/QABugs/QABugs_10.cxx +++ b/src/QABugs/QABugs_10.cxx @@ -391,7 +391,7 @@ static Standard_Integer OCC712 (Draw_Interpretor& di, Standard_Integer argc, con // performTriangulation //======================================================================= -Standard_Integer performTriangulation (TopoDS_Shape aShape, Draw_Interpretor& di) +Standard_Integer performTriangulation (const TopoDS_Shape& aShape, Draw_Interpretor& di) { int failed=0, total=0; TopExp_Explorer ExpFace; @@ -681,7 +681,7 @@ static Standard_Integer OCC825 (Draw_Interpretor& di,Standard_Integer argc, cons Handle(Geom_BezierSurface) BezSurf = new Geom_BezierSurface(poles); Handle(Geom_BSplineSurface) BSpSurf = GeomConvert::SurfaceToBSplineSurface(BezSurf); BRepBuilderAPI_MakeFace faceMaker(BSpSurf, Precision::Confusion()); - TopoDS_Face face = faceMaker.Face(); + const TopoDS_Face& face = faceMaker.Face(); gp_Pnt pnt(0, size, 0); BRepPrimAPI_MakeHalfSpace *hSpace = new BRepPrimAPI_MakeHalfSpace(face,pnt); @@ -893,7 +893,7 @@ static Standard_Integer OCC827 (Draw_Interpretor& di,Standard_Integer argc, cons // performBlend //======================================================================= -int performBlend (TopoDS_Shape aShape, Standard_Real rad, TopoDS_Shape& bShape, Draw_Interpretor& di) +int performBlend (const TopoDS_Shape& aShape, Standard_Real rad, TopoDS_Shape& bShape, Draw_Interpretor& di) { Standard_Integer status = 0; TopoDS_Shape newShape; diff --git a/src/QABugs/QABugs_11.cxx b/src/QABugs/QABugs_11.cxx index ac029f88e9..cd4131b984 100644 --- a/src/QABugs/QABugs_11.cxx +++ b/src/QABugs/QABugs_11.cxx @@ -440,7 +440,7 @@ Standard_Integer OCC157(Draw_Interpretor& di, Handle(Geom_Surface) aSurf = FS.Surface(); BRepBuilderAPI_MakeFace aMakeFace(aSurf,aWire,Standard_True); if(aMakeFace.IsDone()) { - TopoDS_Face aFace = aMakeFace.Face(); + const TopoDS_Face& aFace = aMakeFace.Face(); DBRep::Set(a[1],aFace); } } @@ -569,7 +569,7 @@ static Standard_Integer OCC297 (Draw_Interpretor& di,Standard_Integer /*argc*/, BRepBuilderAPI_MakeWire wire_(edg1_, edg2_, edg3_, edg4_); BRepBuilderAPI_MakeFace face_(wire_); - TopoDS_Face sh_ = face_.Face(); + const TopoDS_Face& sh_ = face_.Face(); int up = 1; @@ -585,7 +585,7 @@ static Standard_Integer OCC297 (Draw_Interpretor& di,Standard_Integer /*argc*/, myAISContext->Display(AISPoint, Standard_True); BRepPrimAPI_MakeHalfSpace half_(sh_, g_pnt); - TopoDS_Solid sol1_ = half_.Solid(); + const TopoDS_Solid& sol1_ = half_.Solid(); DBRep::Set("Face", sol1_); @@ -1551,8 +1551,8 @@ static Standard_Integer OCC909 (Draw_Interpretor& di, Standard_Integer argc, con TopExp_Explorer TE(awire, TopAbs_VERTEX); if ( TE.More()) { BRepTools_WireExplorer WE; - for ( WE.Init(awire,aface); WE.More(); WE.Next()) { - TopoDS_Edge E = WE.Current(); + for ( WE.Init(awire,aface); WE.More(); WE.Next()) + { count++; } } @@ -3885,9 +3885,9 @@ int TestCopyPaste(const Handle(TDocStd_Document)& doc) return 0; } -int TestOpenSave(TCollection_ExtendedString aFile1, - TCollection_ExtendedString aFile2, - TCollection_ExtendedString aFile3) +int TestOpenSave(const TCollection_ExtendedString& aFile1, + const TCollection_ExtendedString& aFile2, + const TCollection_ExtendedString& aFile3) { // Std Handle(TDocStd_Document) doc_std, doc_std_open; @@ -4498,7 +4498,7 @@ static Standard_Integer OCC20627 (Draw_Interpretor& di, Standard_Integer argc, c w.Close(); TopoDS_Wire wireShape( w.Wire()); BRepBuilderAPI_MakeFace faceBuilder(wireShape); - TopoDS_Face f( faceBuilder.Face()); + const TopoDS_Face& f( faceBuilder.Face()); BRepMesh_IncrementalMesh im(f,1); BRepTools::Clean(f); } diff --git a/src/QABugs/QABugs_16.cxx b/src/QABugs/QABugs_16.cxx index 492e2e1436..14dc5f2002 100644 --- a/src/QABugs/QABugs_16.cxx +++ b/src/QABugs/QABugs_16.cxx @@ -320,7 +320,7 @@ static Standard_Integer OCC218bug (Draw_Interpretor& di, Standard_Integer argc, } // Construction du Geom_Plane GC_MakePlane MkPlane(A,B,C); - Handle(Geom_Plane) theGeomPlane=MkPlane.Value(); + const Handle(Geom_Plane)& theGeomPlane=MkPlane.Value(); // on le display & bind theAISPlaneTri= new AIS_PlaneTrihedron(theGeomPlane ); diff --git a/src/QABugs/QABugs_17.cxx b/src/QABugs/QABugs_17.cxx index b46fc24e2a..8960b3c3ec 100644 --- a/src/QABugs/QABugs_17.cxx +++ b/src/QABugs/QABugs_17.cxx @@ -725,7 +725,7 @@ static Standard_Integer OCC606 ( Draw_Interpretor& di, Standard_Integer n, const if (!result_surf1.IsNull()) { BRepBuilderAPI_MakeFace b_face1(result_surf1, Precision::Confusion()); - TopoDS_Face bsp_face1 = b_face1.Face(); + const TopoDS_Face& bsp_face1 = b_face1.Face(); DBRep::Set(a[1],bsp_face1); } } @@ -1053,7 +1053,7 @@ static Standard_Integer OCCN1 (Draw_Interpretor& di, Standard_Integer argc, cons TopoDS_Wire twire = wire.Wire(); BRepBuilderAPI_MakeFace face(twire); - TopoDS_Face tface = face.Face(); + const TopoDS_Face& tface = face.Face(); ////////Handle(AIS_Shape) face_ais = new AIS_Shape( tface ); ////////aContext->Display(face_ais); diff --git a/src/QABugs/QABugs_19.cxx b/src/QABugs/QABugs_19.cxx index 2e0e7fbf1c..c6f3d91c0e 100644 --- a/src/QABugs/QABugs_19.cxx +++ b/src/QABugs/QABugs_19.cxx @@ -96,7 +96,7 @@ static Standard_Integer OCC230 (Draw_Interpretor& di, Standard_Integer argc, con } GCE2d_MakeSegment MakeSegment(P1,P2); - Handle(Geom2d_TrimmedCurve) TrimmedCurve = MakeSegment.Value(); + const Handle(Geom2d_TrimmedCurve)& TrimmedCurve = MakeSegment.Value(); DrawTrSurf::Set(argv[1], TrimmedCurve); return 0; } @@ -1014,7 +1014,7 @@ static Standard_Integer OCC11758 (Draw_Interpretor& di, Standard_Integer n, cons QCOMPARE ( Abs( ea.RealValue() - 0.1 * i ) < 1e-10 , Standard_True ); // TCollection_ExtendedString (const TCollection_ExtendedString& astring) - const TCollection_ExtendedString f(e); + const TCollection_ExtendedString& f(e); //assert( f.Length() == e.Length()); //assert( f == e ); QCOMPARE ( f.Length() , e.Length() ); diff --git a/src/QABugs/QABugs_20.cxx b/src/QABugs/QABugs_20.cxx index b055b1a57d..b5e84f0ed2 100644 --- a/src/QABugs/QABugs_20.cxx +++ b/src/QABugs/QABugs_20.cxx @@ -1992,7 +1992,7 @@ static Standard_Integer OCC26270(Draw_Interpretor& theDI, if (!aRes.IsNull()) { BRepBuilderAPI_MakeFace b_face1(aRes, Precision::Confusion()); - TopoDS_Face bsp_face1 = b_face1.Face(); + const TopoDS_Face& bsp_face1 = b_face1.Face(); DBRep::Set(theArgVal[2], bsp_face1); } } diff --git a/src/QABugs/QABugs_3.cxx b/src/QABugs/QABugs_3.cxx index 4475f851a3..39f3f54185 100644 --- a/src/QABugs/QABugs_3.cxx +++ b/src/QABugs/QABugs_3.cxx @@ -348,7 +348,7 @@ static Standard_Integer BUC60811(Draw_Interpretor& di, Standard_Integer argc, co Handle(Geom_OffsetSurface) offsurf; offsurf = new Geom_OffsetSurface(BZ1, -100); BRepBuilderAPI_MakeFace bzf2( offsurf, Precision::Confusion() ); - TopoDS_Face F2= bzf2.Face(); + const TopoDS_Face& F2= bzf2.Face(); Handle(AIS_Shape) ais22 = new AIS_Shape(F2); aContext->Display (ais22, Standard_False); DBRep::Set("F2",F2); @@ -1223,7 +1223,7 @@ static Standard_Integer BUC60951_(Draw_Interpretor& di, Standard_Integer argc, c shell.Closed (BRep_Tool::IsClosed (shell)); BRepPrimAPI_MakeHalfSpace half(shell, gp_Pnt(0, 0, 20)); - TopoDS_Solid sol = half.Solid(); + const TopoDS_Solid& sol = half.Solid(); gp_Ax2 anAx2(gp_Pnt(-800.0, 0.0, 0), gp_Dir(0, 0, -1)); BRepPrimAPI_MakeCylinder cyl(anAx2, 50, 300); TopoDS_Shape sh = cyl.Shape(); diff --git a/src/QABugs/QABugs_PresentableObject.cxx b/src/QABugs/QABugs_PresentableObject.cxx index 37717fd8dc..fedd0bb242 100644 --- a/src/QABugs/QABugs_PresentableObject.cxx +++ b/src/QABugs/QABugs_PresentableObject.cxx @@ -30,7 +30,7 @@ void QABugs_PresentableObject::Compute(const Handle(PrsMgr_PresentationManager)& const Handle(Prs3d_Presentation)& thePrs, const Standard_Integer theMode) { - Handle(Graphic3d_Structure) aStructure (thePrs); + const Handle(Graphic3d_Structure)& aStructure = thePrs; Handle(Graphic3d_Group) aGroup = aStructure->NewGroup(); Handle(Prs3d_ShadingAspect) anAspect = myDrawer->ShadingAspect(); Graphic3d_MaterialAspect aMat = anAspect->Aspect()->FrontMaterial(); diff --git a/src/QADNaming/QADNaming_ToolsCommands.cxx b/src/QADNaming/QADNaming_ToolsCommands.cxx index aed84fb665..72f344b9b5 100644 --- a/src/QADNaming/QADNaming_ToolsCommands.cxx +++ b/src/QADNaming/QADNaming_ToolsCommands.cxx @@ -125,7 +125,7 @@ static Standard_Integer QADNaming_TCopyShape (Draw_Interpretor& di, DNaming_DataMapIteratorOfDataMapOfShapeOfName itrn(aDMapOfShapeOfName); for(;itrn.More();itrn.Next()) { - TCollection_AsciiString name = itrn.Value(); + const TCollection_AsciiString& name = itrn.Value(); const TopoDS_Shape Result = TR.Copied(itrn.Key()); DBRep::Set(name.ToCString(), Result); di.AppendElement(name.ToCString()); diff --git a/src/RWGltf/RWGltf_Provider.cxx b/src/RWGltf/RWGltf_Provider.cxx index f8a9436c7e..1331011aeb 100644 --- a/src/RWGltf/RWGltf_Provider.cxx +++ b/src/RWGltf/RWGltf_Provider.cxx @@ -26,7 +26,7 @@ namespace // function : SetReaderParameters // purpose : //======================================================================= - static void SetReaderParameters(RWGltf_CafReader& theReader, const Handle(RWGltf_ConfigurationNode) theNode) + static void SetReaderParameters(RWGltf_CafReader& theReader, const Handle(RWGltf_ConfigurationNode)& theNode) { theReader.SetDoublePrecision(!theNode->InternalParameters.ReadSinglePrecision); theReader.SetSystemLengthUnit(theNode->GlobalParameters.LengthUnit / 1000); diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx b/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx index 416b9c86a9..981ce97936 100644 --- a/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx +++ b/src/RWStepGeom/RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve.cxx @@ -333,7 +333,7 @@ void RWStepGeom_RWBSplineCurveWithKnotsAndRationalBSplineCurve::Check const Interface_ShareTool& aShto, Handle(Interface_Check)& ach) const { - Handle(StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve) aRationalBSC = ent; + const Handle(StepGeom_BSplineCurveWithKnotsAndRationalBSplineCurve)& aRationalBSC = ent; Handle(StepGeom_BSplineCurveWithKnots) aBSCWK = aRationalBSC->BSplineCurveWithKnots(); RWStepGeom_RWBSplineCurveWithKnots t1; diff --git a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx b/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx index 1e106df80a..1a517949b7 100644 --- a/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx +++ b/src/RWStepGeom/RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface.cxx @@ -432,7 +432,7 @@ void RWStepGeom_RWBSplineSurfaceWithKnotsAndRationalBSplineSurface::Check const Interface_ShareTool& aShto, Handle(Interface_Check)& ach) const { - Handle(StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface) aRationalBSS = ent; + const Handle(StepGeom_BSplineSurfaceWithKnotsAndRationalBSplineSurface)& aRationalBSS = ent; Handle(StepGeom_BSplineSurfaceWithKnots) aBSSWK = aRationalBSS->BSplineSurfaceWithKnots(); RWStepGeom_RWBSplineSurfaceWithKnots t1; diff --git a/src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx b/src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx index 86da09c35a..3117ca72b6 100644 --- a/src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx +++ b/src/STEPCAFControl/STEPCAFControl_GDTProperty.cxx @@ -1166,7 +1166,7 @@ Handle(StepDimTol_HArray1OfDatumReferenceModifier) STEPCAFControl_GDTProperty:: GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence& theModifiers, const XCAFDimTolObjects_DatumModifWithValue& theModifWithVal, const Standard_Real theValue, - const StepBasic_Unit theUnit) + const StepBasic_Unit& theUnit) { if ((theModifiers.Length() == 0) && (theModifWithVal == XCAFDimTolObjects_DatumModifWithValue_None)) return NULL; @@ -1307,7 +1307,7 @@ Handle(TCollection_HAsciiString) STEPCAFControl_GDTProperty::GetTolValueType(con //function : GetTessellation //purpose : //======================================================================= -Handle(StepVisual_TessellatedGeometricSet) STEPCAFControl_GDTProperty::GetTessellation(const TopoDS_Shape theShape) +Handle(StepVisual_TessellatedGeometricSet) STEPCAFControl_GDTProperty::GetTessellation(const TopoDS_Shape& theShape) { // Build coordinate list and curves NCollection_Handle aCurves = new StepVisual_VectorOfHSequenceOfInteger; diff --git a/src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx b/src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx index 03631c61ca..c685b39edc 100644 --- a/src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx +++ b/src/STEPCAFControl/STEPCAFControl_GDTProperty.hxx @@ -99,9 +99,9 @@ public: Standard_EXPORT static Handle(StepDimTol_HArray1OfDatumReferenceModifier) GetDatumRefModifiers(const XCAFDimTolObjects_DatumModifiersSequence& theModifiers, const XCAFDimTolObjects_DatumModifWithValue& theModifWithVal, const Standard_Real theValue, - const StepBasic_Unit theUnit); + const StepBasic_Unit& theUnit); - Standard_EXPORT static Handle(StepVisual_TessellatedGeometricSet) GetTessellation(const TopoDS_Shape theShape); + Standard_EXPORT static Handle(StepVisual_TessellatedGeometricSet) GetTessellation(const TopoDS_Shape& theShape); }; diff --git a/src/STEPCAFControl/STEPCAFControl_Provider.cxx b/src/STEPCAFControl/STEPCAFControl_Provider.cxx index c7078c397b..6eb2db9feb 100644 --- a/src/STEPCAFControl/STEPCAFControl_Provider.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Provider.cxx @@ -99,7 +99,7 @@ void STEPCAFControl_Provider::initStatic(const Handle(DE_ConfigurationNode)& the // function : setStatic // purpose : //======================================================================= -void STEPCAFControl_Provider::setStatic(const STEPCAFControl_ConfigurationNode::STEPCAFControl_InternalSection theParameter) +void STEPCAFControl_Provider::setStatic(const STEPCAFControl_ConfigurationNode::STEPCAFControl_InternalSection& theParameter) { Interface_Static::SetIVal("read.iges.bspline.continuity", theParameter.ReadBSplineContinuity); Interface_Static::SetIVal("read.precision.mode", theParameter.ReadPrecisionMode); diff --git a/src/STEPCAFControl/STEPCAFControl_Provider.hxx b/src/STEPCAFControl/STEPCAFControl_Provider.hxx index fb468efafa..d7774028b1 100644 --- a/src/STEPCAFControl/STEPCAFControl_Provider.hxx +++ b/src/STEPCAFControl/STEPCAFControl_Provider.hxx @@ -139,7 +139,7 @@ public: void initStatic(const Handle(DE_ConfigurationNode)& theNode); //! Initialize static variables - void setStatic(const STEPCAFControl_ConfigurationNode::STEPCAFControl_InternalSection theParameter); + void setStatic(const STEPCAFControl_ConfigurationNode::STEPCAFControl_InternalSection& theParameter); //! Reset used interface static variables void resetStatic(); diff --git a/src/STEPCAFControl/STEPCAFControl_Reader.cxx b/src/STEPCAFControl/STEPCAFControl_Reader.cxx index 7395804d8f..1460a6a8d0 100644 --- a/src/STEPCAFControl/STEPCAFControl_Reader.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Reader.cxx @@ -781,7 +781,7 @@ TDF_Label STEPCAFControl_Reader::AddShape(const TopoDS_Shape &S, // check whether it has associated external ref TColStd_SequenceOfHAsciiString SHAS; if (ShapePDMap.IsBound(S) && PDFileMap.IsBound(ShapePDMap.Find(S))) { - Handle(STEPCAFControl_ExternFile) EF = PDFileMap.Find(ShapePDMap.Find(S)); + const Handle(STEPCAFControl_ExternFile)& EF = PDFileMap.Find(ShapePDMap.Find(S)); if (!EF.IsNull()) { // (store information on extern refs in the document) SHAS.Append(EF->GetName()); @@ -1231,7 +1231,7 @@ static Standard_Boolean IsOverriden(const Interface_Graph& theGraph, return Standard_True; } // for root style returns true only if it is overridden by other root style - auto anItem = anOverRidingStyle->ItemAP242 ().Value (); + const Handle(Standard_Transient)& anItem = anOverRidingStyle->ItemAP242().Value(); if(!anItem.IsNull() && anItem->IsKind(STANDARD_TYPE(StepShape_ShapeRepresentation))) { return Standard_True; @@ -1315,7 +1315,7 @@ static TDF_Label GetLabelFromPD(const Handle(StepBasic_ProductDefinition) &PD, { TDF_Label L; if (PDFileMap.IsBound(PD)) { - Handle(STEPCAFControl_ExternFile) EF = PDFileMap.Find(PD); + const Handle(STEPCAFControl_ExternFile)& EF = PDFileMap.Find(PD); if (!EF.IsNull()) { L = EF->GetLabel(); if (!L.IsNull()) return L; @@ -1348,7 +1348,7 @@ TDF_Label STEPCAFControl_Reader::FindInstance(const Handle(StepRepr_NextAssembly TDF_Label L; // get shape resulting from CDSR (in fact, only location is interesting) - Handle(Transfer_TransientProcess) TP = Tool.TransientProcess(); + const Handle(Transfer_TransientProcess)& TP = Tool.TransientProcess(); Handle(Transfer_Binder) binder = TP->Find(NAUO); if (binder.IsNull() || !binder->HasResult()) { #ifdef OCCT_DEBUG @@ -1468,7 +1468,7 @@ static TDF_Label GetLabelFromPD(const Handle(StepBasic_ProductDefinition) &PD, { TDF_Label L; if (PDFileMap.IsBound(PD)) { - Handle(STEPCAFControl_ExternFile) EF = PDFileMap.Find(PD); + const Handle(STEPCAFControl_ExternFile)& EF = PDFileMap.Find(PD); if (!EF.IsNull()) { L = EF->GetLabel(); if (!L.IsNull()) return L; @@ -2093,7 +2093,7 @@ Standard_Boolean readPMIPresentation(const Handle(Standard_Transient)& thePresen //function : readAnnotationPlane //purpose : read annotation plane //======================================================================= -Standard_Boolean readAnnotationPlane(const Handle(StepVisual_AnnotationPlane) theAnnotationPlane, +Standard_Boolean readAnnotationPlane(const Handle(StepVisual_AnnotationPlane)& theAnnotationPlane, gp_Ax2& thePlane) { if (theAnnotationPlane.IsNull()) @@ -2239,7 +2239,7 @@ void readAnnotation(const Handle(XSControl_TransferReader)& theTR, //purpose : read connection points for given dimension //======================================================================= void readConnectionPoints(const Handle(XSControl_TransferReader)& theTR, - const Handle(Standard_Transient) theGDT, + const Handle(Standard_Transient)& theGDT, const Handle(XCAFDimTolObjects_DimensionObject)& theDimObject) { if (theGDT.IsNull() || theDimObject.IsNull()) @@ -2252,7 +2252,7 @@ void readConnectionPoints(const Handle(XSControl_TransferReader)& theTR, Handle(StepShape_ShapeDimensionRepresentation) aSDR = NULL; for (Interface_EntityIterator anIt = aGraph.Sharings(theGDT); aSDR.IsNull() && anIt.More(); anIt.Next()) { - Handle(Standard_Transient) anEnt = anIt.Value(); + const Handle(Standard_Transient)& anEnt = anIt.Value(); Handle(StepShape_DimensionalCharacteristicRepresentation) aDCR = Handle(StepShape_DimensionalCharacteristicRepresentation)::DownCast(anEnt); if (!aDCR.IsNull()) @@ -2355,7 +2355,7 @@ static Standard_Boolean ReadDatums(const Handle(XCAFDoc_ShapeTool) &STool, const Interface_Graph &graph, const Handle(Transfer_TransientProcess) &TP, const TDF_Label TolerL, - const Handle(StepDimTol_GeometricToleranceWithDatumReference) GTWDR) + const Handle(StepDimTol_GeometricToleranceWithDatumReference)& GTWDR) { if (GTWDR.IsNull()) return Standard_False; Handle(StepDimTol_HArray1OfDatumReference) HADR = GTWDR->DatumSystem(); @@ -2772,14 +2772,14 @@ Standard_Boolean STEPCAFControl_Reader::readDatumsAP242(const Handle(Standard_Tr Interface_EntityIterator anIter = aGraph.Shareds(theEnt); for (anIter.Start(); anIter.More(); anIter.Next()) { - Handle(Standard_Transient) anAtr = anIter.Value(); + const Handle(Standard_Transient)& anAtr = anIter.Value(); if (anAtr->IsKind(STANDARD_TYPE(StepDimTol_DatumSystem))) { Standard_Integer aPositionCounter = 0;//position on frame Handle(StepDimTol_DatumSystem) aDS = Handle(StepDimTol_DatumSystem)::DownCast(anAtr); Interface_EntityIterator anIterDS = aGraph.Sharings(aDS); for (anIterDS.Start(); anIterDS.More(); anIterDS.Next()) { - Handle(Standard_Transient) anAtrDS = anIterDS.Value(); + const Handle(Standard_Transient)& anAtrDS = anIterDS.Value(); if (anAtrDS->IsKind(STANDARD_TYPE(StepAP242_GeometricItemSpecificUsage))) { //get axis @@ -2957,7 +2957,7 @@ TDF_Label STEPCAFControl_Reader::createGDTObjectInXCAF(const Handle(Standard_Tra // Collect all Shape_Aspect entities Interface_EntityIterator anIter = aGraph.Shareds(theEnt); for (anIter.Start(); anIter.More(); anIter.Next()) { - Handle(Standard_Transient) anAtr = anIter.Value(); + const Handle(Standard_Transient)& anAtr = anIter.Value(); NCollection_Sequence aSAs; if (anAtr->IsKind(STANDARD_TYPE(StepRepr_ProductDefinitionShape))) { @@ -2965,14 +2965,14 @@ TDF_Label STEPCAFControl_Reader::createGDTObjectInXCAF(const Handle(Standard_Tra Interface_EntityIterator anIterSDR = aGraph.Sharings(anAtr); for (anIterSDR.Start(); anIterSDR.More(); anIterSDR.Next()) { - Handle(Standard_Transient) anAtrSDR = anIterSDR.Value(); + const Handle(Standard_Transient)& anAtrSDR = anIterSDR.Value(); if (anAtrSDR->IsKind(STANDARD_TYPE(StepShape_ShapeDefinitionRepresentation))) { isAllOver = Standard_True; Interface_EntityIterator anIterABSR = aGraph.Shareds(anAtrSDR); for (anIterABSR.Start(); anIterABSR.More(); anIterABSR.Next()) { - Handle(Standard_Transient) anAtrABSR = anIterABSR.Value(); + const Handle(Standard_Transient)& anAtrABSR = anIterABSR.Value(); if (anAtrABSR->IsKind(STANDARD_TYPE(StepShape_AdvancedBrepShapeRepresentation))) { aSeqRI1.Append(anAtrABSR); @@ -4416,7 +4416,7 @@ Standard_Boolean STEPCAFControl_Reader::ReadMaterials(const Handle(XSControl_Wor void collectViewShapes(const Handle(XSControl_WorkSession)& theWS, const Handle(TDocStd_Document)& theDoc, - const Handle(StepRepr_Representation) theRepr, + const Handle(StepRepr_Representation)& theRepr, TDF_LabelSequence& theShapes) { Handle(XSControl_TransferReader) aTR = theWS->TransferReader(); @@ -4451,7 +4451,7 @@ void collectViewShapes(const Handle(XSControl_WorkSession)& theWS, //======================================================================= Handle(TCollection_HAsciiString) buildClippingPlanes(const Handle(StepGeom_GeometricRepresentationItem)& theClippingCameraModel, TDF_LabelSequence& theClippingPlanes, - const Handle(XCAFDoc_ClippingPlaneTool) theTool) + const Handle(XCAFDoc_ClippingPlaneTool)& theTool) { Handle(TCollection_HAsciiString) anExpression = new TCollection_HAsciiString(); NCollection_Sequence aPlanes; @@ -4790,7 +4790,7 @@ void STEPCAFControl_Reader::ExpandSubShapes(const Handle(XCAFDoc_ShapeTool)& Sha // topological containers to expand for (Standard_Integer i = 1; i <= aReprItems.Length(); ++i) { - Handle(StepRepr_RepresentationItem) aTRepr = aReprItems.Value(i); + const Handle(StepRepr_RepresentationItem)& aTRepr = aReprItems.Value(i); if (aTRepr->IsKind(STANDARD_TYPE(StepShape_ManifoldSolidBrep))) aMSBSeq.Append(aTRepr); else if (aTRepr->IsKind(STANDARD_TYPE(StepShape_ShellBasedSurfaceModel))) diff --git a/src/STEPCAFControl/STEPCAFControl_Writer.cxx b/src/STEPCAFControl/STEPCAFControl_Writer.cxx index b9c9a2bee7..7dd761e5f5 100644 --- a/src/STEPCAFControl/STEPCAFControl_Writer.cxx +++ b/src/STEPCAFControl/STEPCAFControl_Writer.cxx @@ -318,7 +318,7 @@ IFSelect_ReturnStatus STEPCAFControl_Writer::Write(const Standard_CString theFil for (NCollection_DataMap::Iterator anExtFileIter(myFiles); anExtFileIter.More(); anExtFileIter.Next()) { - Handle(STEPCAFControl_ExternFile) anExtFile = anExtFileIter.Value(); + const Handle(STEPCAFControl_ExternFile)& anExtFile = anExtFileIter.Value(); if (anExtFile->GetWriteStatus() != IFSelect_RetVoid) { continue; @@ -1040,7 +1040,7 @@ static Standard_Boolean setDefaultInstanceColor(const Handle(StepVisual_StyledIt aFatherStyleIter.More(); aFatherStyleIter.Next()) { StepVisual_PresentationStyleSelect aPSS; - StepVisual_PresentationStyleSelect anOlDPSS = aFatherStyleIter.Value(); + const StepVisual_PresentationStyleSelect& anOlDPSS = aFatherStyleIter.Value(); if (!anOlDPSS.PointStyle().IsNull()) aPSS.SetValue(anOlDPSS.PointStyle()); else if (!anOlDPSS.CurveStyle().IsNull()) @@ -1090,7 +1090,7 @@ static void MakeSTEPStyles(STEPConstruct_Styles& theStyles, if (theInherit) aStyle = *theInherit; if (theSettings.Contains(theShape)) { - XCAFPrs_Style anOwnStyle = theSettings.FindFromKey(theShape); + const XCAFPrs_Style& anOwnStyle = theSettings.FindFromKey(theShape); if (!anOwnStyle.IsVisible()) aStyle.SetVisibility(Standard_False); if (anOwnStyle.IsSetColorCurv()) @@ -2315,7 +2315,7 @@ static StepBasic_Unit GetUnit(const Handle(StepRepr_RepresentationContext)& theR //purpose : auxiliary //====================================================================== static Handle(StepRepr_ReprItemAndMeasureWithUnit) CreateDimValue(const Standard_Real theValue, - const StepBasic_Unit theUnit, + const StepBasic_Unit& theUnit, const Handle(TCollection_HAsciiString)& theName, const Standard_CString theMeasureName, const Standard_Boolean theIsAngle, @@ -2375,7 +2375,7 @@ static Handle(StepRepr_ReprItemAndMeasureWithUnit) CreateDimValue(const Standard //======================================================================= Handle(StepRepr_ShapeAspect) STEPCAFControl_Writer::writeShapeAspect(const Handle(XSControl_WorkSession)& theWS, const TDF_Label theLabel, - const TopoDS_Shape theShape, + const TopoDS_Shape& theShape, Handle(StepRepr_RepresentationContext)& theRC, Handle(StepAP242_GeometricItemSpecificUsage)& theGISU) { @@ -2432,7 +2432,7 @@ Handle(StepRepr_ShapeAspect) STEPCAFControl_Writer::writeShapeAspect(const Handl for (Interface_EntityIterator aSharingIter = aGraph.Sharings(aPDS); aSharingIter.More() && aSDR.IsNull(); aSharingIter.Next()) { - Handle(Standard_Transient) anEntity = aSharingIter.Value(); + const Handle(Standard_Transient)& anEntity = aSharingIter.Value(); aSDR = Handle(StepShape_ShapeDefinitionRepresentation)::DownCast(anEntity); } if (aSDR.IsNull()) @@ -2457,7 +2457,7 @@ void STEPCAFControl_Writer::writePresentation(const Handle(XSControl_WorkSession const Standard_Boolean theHasPlane, const gp_Ax2& theAnnotationPlane, const gp_Pnt& theTextPosition, - const Handle(Standard_Transient) theDimension) + const Handle(Standard_Transient)& theDimension) { if (thePresentation.IsNull()) return; @@ -2509,7 +2509,7 @@ void STEPCAFControl_Writer::writePresentation(const Handle(XSControl_WorkSession // Plane Handle(StepGeom_Plane) aPlane = new StepGeom_Plane(); GeomToStep_MakeAxis2Placement3d anAxisMaker(theAnnotationPlane); - Handle(StepGeom_Axis2Placement3d) anAxis = anAxisMaker.Value(); + const Handle(StepGeom_Axis2Placement3d)& anAxis = anAxisMaker.Value(); // Set text position to plane origin Handle(StepGeom_CartesianPoint) aTextPos = new StepGeom_CartesianPoint(); Handle(TColStd_HArray1OfReal) aCoords = new TColStd_HArray1OfReal(1, 3); @@ -2540,7 +2540,7 @@ Handle(StepDimTol_Datum) STEPCAFControl_Writer::writeDatumAP242(const Handle(XSC const TDF_LabelSequence& theShapeL, const TDF_Label& theDatumL, const Standard_Boolean theIsFirstDTarget, - const Handle(StepDimTol_Datum) theWrittenDatum) + const Handle(StepDimTol_Datum)& theWrittenDatum) { // Get working data const Handle(Interface_InterfaceModel)& aModel = theWS->Model(); @@ -2799,14 +2799,14 @@ Handle(StepDimTol_Datum) STEPCAFControl_Writer::writeDatumAP242(const Handle(XSC // qualifiers, modifiers, orientation and tolerance class) //====================================================================== static void WriteDimValues(const Handle(XSControl_WorkSession)& theWS, - const Handle(XCAFDimTolObjects_DimensionObject) theObject, - const Handle(StepRepr_RepresentationContext) theRC, - const StepShape_DimensionalCharacteristic theDimension) + const Handle(XCAFDimTolObjects_DimensionObject)& theObject, + const Handle(StepRepr_RepresentationContext)& theRC, + const StepShape_DimensionalCharacteristic& theDimension) { // Get working data const Handle(Interface_InterfaceModel)& aModel = theWS->Model(); XCAFDimTolObjects_DimensionModifiersSequence aModifiers = theObject->GetModifiers(); - Handle(Standard_Transient) aDim = theDimension.Value(); + const Handle(Standard_Transient)& aDim = theDimension.Value(); Standard_Boolean isAngle = aDim->IsKind(STANDARD_TYPE(StepShape_AngularLocation)) || aDim->IsKind(STANDARD_TYPE(StepShape_AngularSize)); @@ -2929,7 +2929,7 @@ static void WriteDimValues(const Handle(XSControl_WorkSession)& theWS, gp_Dir aDir; theObject->GetDirection(aDir); GeomToStep_MakeCartesianPoint MkPoint(gp_Pnt(0, 0, 0)); - Handle(StepGeom_CartesianPoint) aLoc = MkPoint.Value(); + const Handle(StepGeom_CartesianPoint)& aLoc = MkPoint.Value(); Handle(StepGeom_Direction) anAxis = new StepGeom_Direction(); Handle(TColStd_HArray1OfReal) aCoords = new TColStd_HArray1OfReal(1, 3); aCoords->SetValue(1, aDir.X()); @@ -3022,7 +3022,7 @@ static void WriteDimValues(const Handle(XSControl_WorkSession)& theWS, //====================================================================== static void WriteDerivedGeometry(const Handle(XSControl_WorkSession)& theWS, const Handle(XCAFDimTolObjects_DimensionObject)& theObject, - const Handle(StepRepr_ConstructiveGeometryRepresentation) theRepr, + const Handle(StepRepr_ConstructiveGeometryRepresentation)& theRepr, Handle(StepRepr_ShapeAspect)& theFirstSA, Handle(StepRepr_ShapeAspect)& theSecondSA, NCollection_Vector& thePnts) @@ -3078,8 +3078,8 @@ static void WriteDerivedGeometry(const Handle(XSControl_WorkSession)& theWS, //====================================================================== static Handle(StepDimTol_HArray1OfDatumSystemOrReference) WriteDatumSystem(const Handle(XSControl_WorkSession)& theWS, const TDF_Label theGeomTolL, - const TDF_LabelSequence theDatumSeq, - const STEPConstruct_DataMapOfAsciiStringTransient theDatumMap, + const TDF_LabelSequence& theDatumSeq, + const STEPConstruct_DataMapOfAsciiStringTransient& theDatumMap, const Handle(StepRepr_RepresentationContext)& theRC) { // Get working data diff --git a/src/STEPCAFControl/STEPCAFControl_Writer.hxx b/src/STEPCAFControl/STEPCAFControl_Writer.hxx index 0a6438de7a..f35dafd28b 100644 --- a/src/STEPCAFControl/STEPCAFControl_Writer.hxx +++ b/src/STEPCAFControl/STEPCAFControl_Writer.hxx @@ -237,7 +237,7 @@ protected: Handle(StepRepr_ShapeAspect) writeShapeAspect(const Handle(XSControl_WorkSession)& theWS, const TDF_Label theLabel, - const TopoDS_Shape theShape, + const TopoDS_Shape& theShape, Handle(StepRepr_RepresentationContext)& theRC, Handle(StepAP242_GeometricItemSpecificUsage)& theGISU); @@ -248,13 +248,13 @@ protected: const Standard_Boolean theHasPlane, const gp_Ax2& theAnnotationPlane, const gp_Pnt& theTextPosition, - const Handle(Standard_Transient) theDimension); + const Handle(Standard_Transient)& theDimension); Handle(StepDimTol_Datum) writeDatumAP242(const Handle(XSControl_WorkSession)& theWS, const TDF_LabelSequence& theShapeL, const TDF_Label& theDatumL, const Standard_Boolean isFirstDTarget, - const Handle(StepDimTol_Datum) theWrittenDatum); + const Handle(StepDimTol_Datum)& theWrittenDatum); void writeToleranceZone(const Handle(XSControl_WorkSession)& theWS, const Handle(XCAFDimTolObjects_GeomToleranceObject)& theObject, diff --git a/src/STEPConstruct/STEPConstruct_Assembly.cxx b/src/STEPConstruct/STEPConstruct_Assembly.cxx index b6e180155e..3fe626dabc 100644 --- a/src/STEPConstruct/STEPConstruct_Assembly.cxx +++ b/src/STEPConstruct/STEPConstruct_Assembly.cxx @@ -195,7 +195,7 @@ Standard_Boolean STEPConstruct_Assembly::CheckSRRReversesNAUO(const Interface_Gr Handle(Standard_Type) tSDR = STANDARD_TYPE(StepShape_ShapeDefinitionRepresentation); Interface_EntityIterator anIter = theGraph.Sharings(rep1); for (; anIter.More() && pd1.IsNull(); anIter.Next()) { - Handle(Standard_Transient) enti = anIter.Value(); + const Handle(Standard_Transient)& enti = anIter.Value(); if (enti->DynamicType() == tSDR) { Handle(StepShape_ShapeDefinitionRepresentation) SDR = Handle(StepShape_ShapeDefinitionRepresentation)::DownCast(enti); @@ -206,7 +206,7 @@ Standard_Boolean STEPConstruct_Assembly::CheckSRRReversesNAUO(const Interface_Gr anIter = theGraph.Sharings(rep2); for (; anIter.More() && pd2.IsNull(); anIter.Next()) { - Handle(Standard_Transient) enti = anIter.Value(); + const Handle(Standard_Transient)& enti = anIter.Value(); if (enti->DynamicType() == tSDR) { Handle(StepShape_ShapeDefinitionRepresentation) SDR = Handle(StepShape_ShapeDefinitionRepresentation)::DownCast(enti); diff --git a/src/STEPConstruct/STEPConstruct_ExternRefs.cxx b/src/STEPConstruct/STEPConstruct_ExternRefs.cxx index c8624171d4..66f63ad566 100644 --- a/src/STEPConstruct/STEPConstruct_ExternRefs.cxx +++ b/src/STEPConstruct/STEPConstruct_ExternRefs.cxx @@ -229,7 +229,7 @@ Standard_Boolean STEPConstruct_ExternRefs::LoadExternRefs () // for each DocumentFile, find associated with it data: Interface_EntityIterator subs = Graph().Sharings(DocFile); for (subs.Start(); subs.More(); subs.Next()) { - Handle(Standard_Transient) sub = subs.Value(); + const Handle(Standard_Transient)& sub = subs.Value(); // FORMAT - ??????? // @@ -659,7 +659,7 @@ Standard_Integer STEPConstruct_ExternRefs::AddExternRef (const Standard_CString // Handle(Standard_Transient) sub = subs.Value(); Interface_EntityIterator subs = Graph().Sharings(PD); for (subs.Start(); subs.More(); subs.Next()) { - Handle(Standard_Transient) sub = subs.Value(); + const Handle(Standard_Transient)& sub = subs.Value(); if (!sub->IsKind(STANDARD_TYPE(StepRepr_ProductDefinitionShape))) continue; Handle(StepRepr_ProductDefinitionShape) ProdDefSh = Handle(StepRepr_ProductDefinitionShape)::DownCast ( sub ); @@ -682,7 +682,7 @@ Standard_Integer STEPConstruct_ExternRefs::AddExternRef (const Standard_CString // Interface_EntityIterator subs2 = Graph().Sharings(ProdDef); Interface_EntityIterator subs2 = Graph().Sharings(PD); for (subs2.Start(); subs2.More(); subs2.Next()) { - Handle(Standard_Transient) sub2 = subs2.Value(); + const Handle(Standard_Transient)& sub2 = subs2.Value(); if (sub2->IsKind(STANDARD_TYPE(StepRepr_NextAssemblyUsageOccurrence))) { Handle(StepRepr_NextAssemblyUsageOccurrence) NAUO = diff --git a/src/STEPControl/STEPControl_ActorRead.cxx b/src/STEPControl/STEPControl_ActorRead.cxx index 2abe2e3a73..a3f81219fb 100644 --- a/src/STEPControl/STEPControl_ActorRead.cxx +++ b/src/STEPControl/STEPControl_ActorRead.cxx @@ -589,7 +589,7 @@ static void getSDR(const Handle(StepRepr_ProductDefinitionShape)& PDS, TopoDS_Iterator it(Result1); for ( ; it.More(); it.Next() ) { - TopoDS_Shape aSubShape = it.Value(); + const TopoDS_Shape& aSubShape = it.Value(); B.Add(Cund, aSubShape); } } @@ -639,7 +639,7 @@ static void getSDR(const Handle(StepRepr_ProductDefinitionShape)& PDS, TopoDS_Iterator it(Result1); for ( ; it.More(); it.Next() ) { - TopoDS_Shape aSubShape = it.Value(); + const TopoDS_Shape& aSubShape = it.Value(); B.Add(Cund, aSubShape); } } @@ -657,7 +657,7 @@ static void getSDR(const Handle(StepRepr_ProductDefinitionShape)& PDS, Interface_EntityIterator subs1 = graph.Sharings(rep); Handle(Standard_Type) tSRR = STANDARD_TYPE(StepRepr_ShapeRepresentationRelationship); for (subs1.Start(); subs1.More(); subs1.Next()) { - Handle(Standard_Transient) anitem = subs1.Value(); + const Handle(Standard_Transient)& anitem = subs1.Value(); if( !anitem->IsKind(STANDARD_TYPE(StepRepr_RepresentationRelationship))) continue; if (anitem->DynamicType() == tSRR) @@ -991,7 +991,7 @@ Handle(TransferBRep_ShapeBinder) STEPControl_ActorRead::TransferEntity( // Put not suspected open Shells as they are (updated 23.11.2010) TopExp_Explorer allShellsExp(comp, TopAbs_SHELL); for ( ; allShellsExp.More(); allShellsExp.Next() ) { - TopoDS_Shape aCurrentShell = allShellsExp.Current(); + const TopoDS_Shape& aCurrentShell = allShellsExp.Current(); if ( !myNMTool.IsPureNMShell(aCurrentShell) && !shellClosingsMap.Contains(aCurrentShell) ) brepBuilder.Add(compWithClosings, aCurrentShell); } @@ -1005,7 +1005,7 @@ Handle(TransferBRep_ShapeBinder) STEPControl_ActorRead::TransferEntity( TopExp_Explorer exp(comp, TopAbs_SHELL); for (; exp.More(); exp.Next()) { - TopoDS_Shape aSubShape = exp.Current(); + const TopoDS_Shape& aSubShape = exp.Current(); if (aSubShape.ShapeType() == TopAbs_SHELL && aSubShape.Closed()) { TopoDS_Solid nextSolid; brepBuilder.MakeSolid(nextSolid); @@ -1348,7 +1348,7 @@ Handle(TransferBRep_ShapeBinder) STEPControl_ActorRead::OldWay for (subs.Start(); subs.More() && PS.More(); subs.Next()) { Message_ProgressRange aRange = PS.Next(); - Handle(Standard_Transient) anitem = subs.Value(); + const Handle(Standard_Transient)& anitem = subs.Value(); if ( anitem->DynamicType() != tCDSR && anitem->DynamicType() != tSRR ) continue; // DeclareAndCast(StepShape_ContextDependentShapeRepresentation,anitem,subs.Value()); // if (anitem.IsNull()) continue; @@ -2026,12 +2026,12 @@ void STEPControl_ActorRead::computeIDEASClosings(const TopoDS_Compound& comp, TopExp_Explorer shellExpA(comp, TopAbs_SHELL); for ( ; shellExpA.More(); shellExpA.Next() ) { - TopoDS_Shape shellA = shellExpA.Current(); + const TopoDS_Shape& shellA = shellExpA.Current(); TopExp_Explorer shellExpB(comp, TopAbs_SHELL); TopTools_ListOfShape closingShells; for ( ; shellExpB.More(); shellExpB.Next() ) { - TopoDS_Shape shellB = shellExpB.Current(); + const TopoDS_Shape& shellB = shellExpB.Current(); if ( shellA.IsSame(shellB) ) continue; // Check whether ShellB is non-manifold and adjacent to ShellA. diff --git a/src/STEPControl/STEPControl_ActorWrite.cxx b/src/STEPControl/STEPControl_ActorWrite.cxx index 3caee36941..e7e576ba64 100644 --- a/src/STEPControl/STEPControl_ActorWrite.cxx +++ b/src/STEPControl/STEPControl_ActorWrite.cxx @@ -228,7 +228,7 @@ static Standard_Boolean IsManifoldShape(const TopoDS_Shape& theShape) { TopoDS_Iterator anIt(theShape); for ( ; anIt.More(); anIt.Next() ) { - TopoDS_Shape aDirectChild = anIt.Value(); + const TopoDS_Shape& aDirectChild = anIt.Value(); if (aDirectChild.ShapeType() != TopAbs_COMPOUND) aBrepBuilder.Add(aDirectShapes, aDirectChild); } @@ -791,7 +791,7 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferShape // Transfer Solids to closed Shells. Prepare RepItemSeq & NonManifoldGroup for ( TopoDS_Iterator iter(aNMCompound); iter.More(); iter.Next() ) { - TopoDS_Shape aSubShape = iter.Value(); + const TopoDS_Shape& aSubShape = iter.Value(); if (aSubShape.ShapeType() == TopAbs_SOLID) { for ( TopoDS_Iterator aSubIter(aSubShape); aSubIter.More(); aSubIter.Next() ) { TopoDS_Shell aSubShell = TopoDS::Shell( aSubIter.Value() ); @@ -1191,7 +1191,7 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferShape aGCSet->SetName(empty); // iterates on compound with vertices and traces each vertex for ( anExp.ReInit() ; anExp.More(); anExp.Next() ) { - TopoDS_Shape aVertex = anExp.Current(); + const TopoDS_Shape& aVertex = anExp.Current(); if ( aVertex.ShapeType() != TopAbs_VERTEX ) continue; curNb++; @@ -1483,7 +1483,7 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferCompound #endif for (TopoDS_Iterator iter(theShape); iter.More(); iter.Next()) { - TopoDS_Shape aSubShape = iter.Value(); + const TopoDS_Shape& aSubShape = iter.Value(); if (aSubShape.ShapeType() != TopAbs_VERTEX || !isSeparateVertices) { // Store non-manifold topology as shells (ssv; 10.11.2010) @@ -1597,7 +1597,7 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferSubShape gp_Trsf aLoc; Standard_Boolean isShapeLocated = Standard_False; if ( GroupMode() >0) { - TopLoc_Location shloc = shape.Location(); + const TopLoc_Location& shloc = shape.Location(); isShapeLocated = !shloc.IsIdentity(); aLoc = shloc.Transformation(); TopLoc_Location shident; @@ -1643,7 +1643,7 @@ Handle(Transfer_Binder) STEPControl_ActorWrite::TransferSubShape // make location for assembly placement GeomToStep_MakeAxis2Placement3d mkax (aLoc); - Handle(StepGeom_Axis2Placement3d) AxLoc = mkax.Value(); + const Handle(StepGeom_Axis2Placement3d)& AxLoc = mkax.Value(); AX1 = AxLoc; // create assembly structures (CDSR, NAUO etc.) diff --git a/src/STEPSelections/STEPSelections_Counter.cxx b/src/STEPSelections/STEPSelections_Counter.cxx index 9fe036fb75..1ad2668a85 100644 --- a/src/STEPSelections/STEPSelections_Counter.cxx +++ b/src/STEPSelections/STEPSelections_Counter.cxx @@ -137,7 +137,7 @@ void STEPSelections_Counter::Count(const Interface_Graph& graph, Standard_Integer nbElem = gs->NbElements(); for (Standard_Integer i = 1; i <= nbElem ; i++) { StepShape_GeometricSetSelect aGSS = gs->ElementsValue(i); - Handle(Standard_Transient) ent = aGSS.Value(); + const Handle(Standard_Transient)& ent = aGSS.Value(); Handle(StepGeom_CompositeCurve) ccurve = Handle(StepGeom_CompositeCurve)::DownCast(ent); if(!ccurve.IsNull()) { myNbWires++; diff --git a/src/SWDRAW/SWDRAW.cxx b/src/SWDRAW/SWDRAW.cxx index f60bc0e90e..0b7878dc1b 100644 --- a/src/SWDRAW/SWDRAW.cxx +++ b/src/SWDRAW/SWDRAW.cxx @@ -94,7 +94,7 @@ static Standard_Integer LocDump (Draw_Interpretor& di, Standard_Integer argc, co return 1; } - TopLoc_Location L = a.Location(); + const TopLoc_Location& L = a.Location(); di << "Location of shape " << argv[1] << ":\n"; di << "Results in:\n"; gp_Trsf T = L.Transformation(); diff --git a/src/SelectMgr/SelectMgr_SelectableObjectSet.cxx b/src/SelectMgr/SelectMgr_SelectableObjectSet.cxx index 8739f8c289..89fb16e790 100644 --- a/src/SelectMgr/SelectMgr_SelectableObjectSet.cxx +++ b/src/SelectMgr/SelectMgr_SelectableObjectSet.cxx @@ -88,7 +88,7 @@ namespace } private: - BVHBuilderAdaptorRegular& operator=(BVHBuilderAdaptorRegular) { return *this; } + BVHBuilderAdaptorRegular& operator=(const BVHBuilderAdaptorRegular&) { return *this; } private: ObjectsMap& myObjects; @@ -223,7 +223,7 @@ namespace } private: - BVHBuilderAdaptorPersistent& operator=(BVHBuilderAdaptorPersistent) { return *this; } + BVHBuilderAdaptorPersistent& operator=(const BVHBuilderAdaptorPersistent&) { return *this; } private: ObjectsMap& myObjects; diff --git a/src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx b/src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx index df3159d98f..d33ea30427 100644 --- a/src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx +++ b/src/SelectMgr/SelectMgr_SelectingVolumeManager.cxx @@ -98,7 +98,7 @@ const Handle(Graphic3d_Camera)& SelectMgr_SelectingVolumeManager::Camera() const // function : SetCamera // purpose : //======================================================================= -void SelectMgr_SelectingVolumeManager::SetCamera (const Handle(Graphic3d_Camera) theCamera) +void SelectMgr_SelectingVolumeManager::SetCamera (const Handle(Graphic3d_Camera)& theCamera) { Standard_ASSERT_RAISE(!myActiveSelectingVolume.IsNull(), "SelectMgr_SelectingVolumeManager::SetCamera() should be called after initialization of selection volume "); diff --git a/src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx b/src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx index 708e7a885f..aed25cd94a 100644 --- a/src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx +++ b/src/SelectMgr/SelectMgr_SelectingVolumeManager.hxx @@ -89,7 +89,7 @@ public: //! Updates camera projection and orientation matrices in all selecting volumes //! Note: this method should be called after selection volume building //! else exception will be thrown - Standard_EXPORT void SetCamera (const Handle(Graphic3d_Camera) theCamera); + Standard_EXPORT void SetCamera (const Handle(Graphic3d_Camera)& theCamera); //! Updates viewport in all selecting volumes //! Note: this method should be called after selection volume building diff --git a/src/SelectMgr/SelectMgr_ViewerSelector.cxx b/src/SelectMgr/SelectMgr_ViewerSelector.cxx index 5f86073410..4370d4cee0 100644 --- a/src/SelectMgr/SelectMgr_ViewerSelector.cxx +++ b/src/SelectMgr/SelectMgr_ViewerSelector.cxx @@ -1044,7 +1044,6 @@ void SelectMgr_ViewerSelector::MoveSelectableObject (const Handle(SelectMgr_Sele //======================================================================= void SelectMgr_ViewerSelector::RemoveSelectableObject (const Handle(SelectMgr_SelectableObject)& theObject) { - Handle(SelectMgr_SelectableObject) anObj = theObject; if (myMapOfObjectSensitives.UnBind (theObject)) { RemovePicked (theObject); diff --git a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx b/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx index c176ed0d1c..8ffc86183f 100644 --- a/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx +++ b/src/ShapeAnalysis/ShapeAnalysis_FreeBoundsProperties.cxx @@ -39,7 +39,7 @@ #define NbControl 23 -static void ContourProperties(TopoDS_Wire wire, +static void ContourProperties(const TopoDS_Wire& wire, Standard_Real& countourArea, Standard_Real& countourLength) { @@ -49,8 +49,9 @@ static void ContourProperties(TopoDS_Wire wire, gp_XYZ prev, cont; for (BRepTools_WireExplorer exp(wire); exp.More(); exp.Next()) { - TopoDS_Edge Edge = exp.Current(); nbe++; - + const TopoDS_Edge& Edge = exp.Current(); + nbe++; + Standard_Real First, Last; Handle(Geom_Curve) c3d; ShapeAnalysis_Edge sae; diff --git a/src/ShapeAnalysis/ShapeAnalysis_Shell.cxx b/src/ShapeAnalysis/ShapeAnalysis_Shell.cxx index 344be5a6e1..2c5916df51 100644 --- a/src/ShapeAnalysis/ShapeAnalysis_Shell.cxx +++ b/src/ShapeAnalysis/ShapeAnalysis_Shell.cxx @@ -56,7 +56,7 @@ void ShapeAnalysis_Shell::Clear() if (shape.ShapeType() == TopAbs_SHELL) myShells.Add (shape); //szv#4:S4163:12Mar99 i = else { for (TopExp_Explorer exs (shape,TopAbs_SHELL); exs.More(); exs.Next()) { - TopoDS_Shape sh = exs.Current(); + const TopoDS_Shape& sh = exs.Current(); myShells.Add (sh); //szv#4:S4163:12Mar99 i = } } @@ -120,7 +120,7 @@ Standard_Boolean ShapeAnalysis_Shell::CheckOrientedShells(const TopoDS_Shape& sh TopTools_IndexedMapOfShape dirs, revs, ints; for (TopExp_Explorer exs(shape,TopAbs_SHELL); exs.More(); exs.Next()) { - TopoDS_Shape sh = exs.Current(); + const TopoDS_Shape& sh = exs.Current(); //szv#4:S4163:12Mar99 optimized if (CheckEdges (sh,myBad,dirs,revs,ints)) if (myShells.Add (sh)) res = Standard_True; @@ -134,7 +134,7 @@ Standard_Boolean ShapeAnalysis_Shell::CheckOrientedShells(const TopoDS_Shape& sh Standard_Integer nb = dirs.Extent(); Standard_Integer i; // svv Jan11 2000 : porting on DEC for (i = 1; i <= nb; i ++) { - TopoDS_Shape sh = dirs.FindKey (i); + const TopoDS_Shape& sh = dirs.FindKey (i); if (!myBad.Contains(sh)) { if (!revs.Contains(sh)) { if(checkinternaledges) { @@ -154,7 +154,7 @@ Standard_Boolean ShapeAnalysis_Shell::CheckOrientedShells(const TopoDS_Shape& sh nb = revs.Extent(); for (i = 1; i <= nb; i ++) { - TopoDS_Shape sh = revs.FindKey (i); + const TopoDS_Shape& sh = revs.FindKey (i); if (!myBad.Contains(sh)) { if (!dirs.Contains(sh)) { if(checkinternaledges) { diff --git a/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx b/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx index 326c062a1e..e655fd5b0f 100644 --- a/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx +++ b/src/ShapeAnalysis/ShapeAnalysis_TransferParametersProj.cxx @@ -231,7 +231,7 @@ Standard_Real ShapeAnalysis_TransferParametersProj::Perform(const Standard_Real //function : CorrectParameter //purpose : auxiliary //======================================================================= -static Standard_Real CorrectParameter(const Handle(Geom2d_Curve) crv, +static Standard_Real CorrectParameter(const Handle(Geom2d_Curve)& crv, const Standard_Real param) { if(crv->IsKind(STANDARD_TYPE(Geom2d_TrimmedCurve))) { @@ -580,7 +580,7 @@ TopoDS_Vertex ShapeAnalysis_TransferParametersProj::CopyNMVertex (const TopoDS_V //update tolerance Standard_Boolean needUpdate = Standard_False; gp_Pnt aPV = (*((Handle(BRep_TVertex)*)&anewV.TShape()))->Pnt(); - TopLoc_Location toLoc = toedge.Location(); + const TopLoc_Location& toLoc = toedge.Location(); BRep_ListIteratorOfListOfCurveRepresentation toitcr ((*((Handle(BRep_TEdge)*)&toedge.TShape()))->ChangeCurves()); diff --git a/src/ShapeBuild/ShapeBuild_Edge.cxx b/src/ShapeBuild/ShapeBuild_Edge.cxx index 34b2d5ff52..b731950da0 100644 --- a/src/ShapeBuild/ShapeBuild_Edge.cxx +++ b/src/ShapeBuild/ShapeBuild_Edge.cxx @@ -288,8 +288,8 @@ void ShapeBuild_Edge::SetRange3d (const TopoDS_Edge& edge, void ShapeBuild_Edge::CopyPCurves (const TopoDS_Edge& toedge, const TopoDS_Edge& fromedge) const { - TopLoc_Location fromLoc = fromedge.Location(); - TopLoc_Location toLoc = toedge.Location(); + const TopLoc_Location& fromLoc = fromedge.Location(); + const TopLoc_Location& toLoc = toedge.Location(); for (BRep_ListIteratorOfListOfCurveRepresentation fromitcr ((*((Handle(BRep_TEdge)*)&fromedge.TShape()))->ChangeCurves()); fromitcr.More(); fromitcr.Next()) { Handle(BRep_GCurve) fromGC = Handle(BRep_GCurve)::DownCast(fromitcr.Value()); diff --git a/src/ShapeBuild/ShapeBuild_ReShape.cxx b/src/ShapeBuild/ShapeBuild_ReShape.cxx index 89b9d69223..1745e74488 100644 --- a/src/ShapeBuild/ShapeBuild_ReShape.cxx +++ b/src/ShapeBuild/ShapeBuild_ReShape.cxx @@ -59,7 +59,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, TopoDS_Compound C; B.MakeCompound (C); for (TopoDS_Iterator it (shape); it.More(); it.Next()) { - TopoDS_Shape sh = it.Value(); + const TopoDS_Shape& sh = it.Value(); Standard_Integer stat = Status (sh,newsh,Standard_False); if (stat != 0) modif = 1; if (stat >= 0) B.Add (C,newsh); @@ -75,7 +75,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, TopoDS_Solid S; B.MakeSolid (S); for (TopoDS_Iterator it (shape); it.More(); it.Next()) { - TopoDS_Shape sh = it.Value(); + const TopoDS_Shape& sh = it.Value(); newsh = Apply (sh,until,buildmode); if (newsh.IsNull()) { modif = -1; @@ -83,7 +83,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, else if (newsh.ShapeType() != TopAbs_SHELL) { Standard_Integer nbsub = 0; for (TopExp_Explorer exh(newsh,TopAbs_SHELL); exh.More(); exh.Next()) { - TopoDS_Shape onesh = exh.Current (); + const TopoDS_Shape& onesh = exh.Current (); B.Add (S,onesh); nbsub ++; } @@ -110,7 +110,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, TopoDS_Shell S; B.MakeShell (S); for (TopoDS_Iterator it (shape); it.More(); it.Next()) { - TopoDS_Shape sh = it.Value(); + const TopoDS_Shape& sh = it.Value(); newsh = Apply (sh,until,buildmode); if (newsh.IsNull()) { modif = -1; @@ -118,7 +118,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, else if (newsh.ShapeType() != TopAbs_FACE) { Standard_Integer nbsub = 0; for (TopExp_Explorer exf(newsh,TopAbs_FACE); exf.More(); exf.Next()) { - TopoDS_Shape onesh = exf.Current (); + const TopoDS_Shape& onesh = exf.Current (); B.Add (S,onesh); nbsub ++; } @@ -189,7 +189,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, // apply recorded modifications to subshapes for ( TopoDS_Iterator it(shape,Standard_False); it.More(); it.Next() ) { - TopoDS_Shape sh = it.Value(); + const TopoDS_Shape& sh = it.Value(); newsh = Apply ( sh, until ); if ( newsh != sh ) { if ( ShapeExtend::DecodeStatus ( myStatus, ShapeExtend_DONE4 ) ) @@ -207,7 +207,7 @@ TopoDS_Shape ShapeBuild_ReShape::Apply (const TopoDS_Shape& shape, } Standard_Integer nitems = 0; for ( TopoDS_Iterator subit(newsh); subit.More(); subit.Next(), nitems++ ) { - TopoDS_Shape subsh = subit.Value(); + const TopoDS_Shape& subsh = subit.Value(); if ( subsh.ShapeType() == sh.ShapeType() ) B.Add ( result, subsh ); else locStatus |= ShapeExtend::EncodeStatus ( ShapeExtend_FAIL1 ); } diff --git a/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx b/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx index d37d601ac7..db1e6bedd5 100644 --- a/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx +++ b/src/ShapeConstruct/ShapeConstruct_ProjectCurveOnSurface.cxx @@ -1513,7 +1513,7 @@ Handle(Geom2d_Curve) ShapeConstruct_ProjectCurveOnSurface::ApproximatePCurve(con } GeomAPI_PointsToBSpline appr(points3d, params->Array1(), 1, 10, GeomAbs_C1, theTolerance2d); - Handle(Geom_BSplineCurve) crv3d = appr.Curve(); + const Handle(Geom_BSplineCurve)& crv3d = appr.Curve(); Standard_Integer NbPoles = crv3d->NbPoles(); TColgp_Array1OfPnt poles3d (1, NbPoles); TColgp_Array1OfPnt2d poles2d (1, NbPoles); diff --git a/src/ShapeExtend/ShapeExtend_Explorer.cxx b/src/ShapeExtend/ShapeExtend_Explorer.cxx index 97a99eed4b..ab5b8d0749 100644 --- a/src/ShapeExtend/ShapeExtend_Explorer.cxx +++ b/src/ShapeExtend/ShapeExtend_Explorer.cxx @@ -56,7 +56,7 @@ static void FillList (const Handle(TopTools_HSequenceOfShape)& list, const TopoDS_Shape& comp, const Standard_Boolean expcomp) { for (TopoDS_Iterator it (comp); it.More(); it.Next()) { - TopoDS_Shape sub = it.Value(); + const TopoDS_Shape& sub = it.Value(); if (sub.ShapeType() != TopAbs_COMPOUND) list->Append (sub); else if (!expcomp) list->Append (sub); else FillList (list,sub,expcomp); @@ -118,7 +118,7 @@ TopAbs_ShapeEnum ShapeExtend_Explorer::ShapeType (const TopoDS_Shape& shape, if (!compound || res != TopAbs_COMPOUND) return res; res = TopAbs_SHAPE; for (TopoDS_Iterator iter(shape); iter.More(); iter.Next()) { - TopoDS_Shape sh = iter.Value(); + const TopoDS_Shape& sh = iter.Value(); if (sh.IsNull()) continue; TopAbs_ShapeEnum typ = sh.ShapeType(); if (typ == TopAbs_COMPOUND) typ = ShapeType (sh,compound); diff --git a/src/ShapeFix/ShapeFix.cxx b/src/ShapeFix/ShapeFix.cxx index 6f710fac39..cd16f3251a 100644 --- a/src/ShapeFix/ShapeFix.cxx +++ b/src/ShapeFix/ShapeFix.cxx @@ -356,7 +356,7 @@ static Standard_Real getNearPoint(const TColgp_SequenceOfPnt& aSeq1, //purpose : auxiliary for FixVertexPosition //======================================================================= static Standard_Boolean getNearestEdges(TopTools_ListOfShape& theLEdges, - const TopoDS_Vertex theVert, + const TopoDS_Vertex& theVert, TopTools_SequenceOfShape& theSuitEdges, TopTools_SequenceOfShape& theRejectEdges, const Standard_Real theTolerance, @@ -505,7 +505,7 @@ Standard_Boolean ShapeFix::FixVertexPosition(TopoDS_Shape& theshape, Standard_Integer nV =1; TopoDS_Iterator aExp3(aExp1.Current()); for( ; aExp3.More(); aExp3.Next(),nV++) { - TopoDS_Shape aVert = aExp3.Value(); + const TopoDS_Shape& aVert = aExp3.Value(); if(nV ==1) aVert1 = aVert; else if(aVert1.IsSame(aVert)) diff --git a/src/ShapeFix/ShapeFix_ComposeShell.cxx b/src/ShapeFix/ShapeFix_ComposeShell.cxx index af2f722c34..2e5e826560 100644 --- a/src/ShapeFix/ShapeFix_ComposeShell.cxx +++ b/src/ShapeFix/ShapeFix_ComposeShell.cxx @@ -721,7 +721,7 @@ Standard_Integer ShapeFix_ComposeShell::ComputeCode (const Handle(ShapeExtend_Wi // After applying context to (seam) edge, distribute its indices on new edges, // according to their parameters on that edge static void DistributeSplitPoints (const Handle(ShapeExtend_WireData) &sbwd, - const TopoDS_Face myFace, + const TopoDS_Face& myFace, const Standard_Integer index, const Standard_Integer nsplit, TColStd_SequenceOfInteger& indexes, @@ -785,7 +785,7 @@ static void DefinePatch (ShapeFix_WireSegment &wire, const Standard_Integer code //function : GetGridResolution //purpose : auxiliary //======================================================================= -static Standard_Real GetGridResolution(const Handle(TColStd_HArray1OfReal) SplitValues, +static Standard_Real GetGridResolution(const Handle(TColStd_HArray1OfReal)& SplitValues, const Standard_Integer cutIndex) { Standard_Integer nb = SplitValues->Length(); @@ -1869,7 +1869,7 @@ void ShapeFix_ComposeShell::BreakWires (ShapeFix_SequenceOfWireSegment &seqw) ShapeFix_WireSegment wire = seqw(i); if(wire.IsVertex()) continue; - Handle(ShapeExtend_WireData) sbwd = wire.WireData(); + const Handle(ShapeExtend_WireData)& sbwd = wire.WireData(); // find first vertex for split Standard_Integer j; // svv #1 @@ -1933,7 +1933,7 @@ void ShapeFix_ComposeShell::BreakWires (ShapeFix_SequenceOfWireSegment &seqw) // -1 - short in 3d but not in 2d (to be checked after algo and atteching to // another wire if alone) static Standard_Integer IsShortSegment (const ShapeFix_WireSegment &seg, - const TopoDS_Face myFace, + const TopoDS_Face& myFace, const Handle(Geom_Surface)& myGrid, const TopLoc_Location &myLoc, const Standard_Real UResolution, @@ -1948,7 +1948,7 @@ static Standard_Integer IsShortSegment (const ShapeFix_WireSegment &seg, Standard_Integer code = 1; ShapeAnalysis_Edge sae; - Handle(ShapeExtend_WireData) sbwd = seg.WireData(); + const Handle(ShapeExtend_WireData)& sbwd = seg.WireData(); for ( Standard_Integer i=1; i <= sbwd->NbEdges(); i++ ) { TopoDS_Edge edge = sbwd->Edge ( i ); if ( ! Vf.IsSame ( sae.LastVertex ( edge ) ) ) return 0; @@ -2065,7 +2065,7 @@ void ShapeFix_ComposeShell::CollectWires (ShapeFix_SequenceOfWireSegment &wires, // find next segment to connect (or first if sbwd is NULL) for ( i = 1; i <= seqw.Length(); i++ ) { - ShapeFix_WireSegment seg = seqw.Value(i); + const ShapeFix_WireSegment& seg = seqw.Value(i); if(seg.IsVertex()) continue; TopAbs_Orientation anOr = seg.Orientation(); @@ -2101,7 +2101,7 @@ void ShapeFix_ComposeShell::CollectWires (ShapeFix_SequenceOfWireSegment &wires, // distance 2 // short auto // angle ->> PI 1 - Handle(ShapeExtend_WireData) wire = seg.WireData(); + const Handle(ShapeExtend_WireData)& wire = seg.WireData(); for ( Standard_Integer j=0; j <2; j++ ) { if ( ! endV.IsSame ( j ? seg.LastVertex() : seg.FirstVertex() ) ) continue; @@ -2341,7 +2341,7 @@ static gp_Pnt2d GetMiddlePoint (const ShapeFix_WireSegment& wire, Bnd_Box2d box; ShapeAnalysis_Edge sae; ShapeAnalysis_Curve sac; - Handle(ShapeExtend_WireData) wd = wire.WireData(); + const Handle(ShapeExtend_WireData)& wd = wire.WireData(); for(Standard_Integer i = 1; i <= wd->NbEdges(); i++) { TopoDS_Edge E = wd->Edge (i); Standard_Real cf,cl; @@ -2374,7 +2374,7 @@ void ShapeFix_ComposeShell::MakeFacesOnPatch (TopTools_SequenceOfShape &faces, if ( loops.Length() == 1 ) { TopoDS_Face newFace; B.MakeFace ( newFace, surf, myLoc, ::Precision::Confusion() ); - TopoDS_Shape aSH = loops.Value(1); + const TopoDS_Shape& aSH = loops.Value(1); if( aSH.ShapeType() != TopAbs_WIRE) return; TopoDS_Wire wire = TopoDS::Wire ( loops.Value(1) ); @@ -2804,7 +2804,7 @@ void ShapeFix_ComposeShell::DispatchWires (TopTools_SequenceOfShape &faces, loops.Append(wires(i).GetVertex()); } else { - Handle(ShapeExtend_WireData) aWD = aSeg.WireData(); + const Handle(ShapeExtend_WireData)& aWD = aSeg.WireData(); if(!aWD.IsNull()) loops.Append ( aWD->Wire() ); } diff --git a/src/ShapeFix/ShapeFix_Face.cxx b/src/ShapeFix/ShapeFix_Face.cxx index 15016761eb..b1dc19303b 100644 --- a/src/ShapeFix/ShapeFix_Face.cxx +++ b/src/ShapeFix/ShapeFix_Face.cxx @@ -691,7 +691,7 @@ Standard_Boolean ShapeFix_Face::Perform() TopoDS_Shape aCurW = aItW.Value(); while(aMapReorderedWires.IsBound(aCurW)) { - TopoDS_Shape aFixW = aMapReorderedWires.Find(aCurW); + const TopoDS_Shape& aFixW = aMapReorderedWires.Find(aCurW); Context()->Replace(aCurW, aFixW); aCurW = aFixW; } @@ -715,7 +715,7 @@ Standard_Boolean ShapeFix_Face::Perform() // Shift all pcurves of edges in the given wire on the given face // to vector -static void Shift2dWire(const TopoDS_Wire w, const TopoDS_Face f, +static void Shift2dWire(const TopoDS_Wire& w, const TopoDS_Face& f, const gp_Vec2d vec, const Handle(ShapeAnalysis_Surface)& mySurf, Standard_Boolean recompute3d = Standard_False) @@ -1418,7 +1418,7 @@ Standard_Boolean ShapeFix_Face::FixOrientation(TopTools_DataMapOfShapeListOfShap if(nb < nbAll) { for( i =1; i <= nbAll;i++) { - TopoDS_Shape aS2 = allSubShapes.Value(i); + const TopoDS_Shape& aS2 = allSubShapes.Value(i); if(aS2.ShapeType() != TopAbs_WIRE || (aS2.Orientation() != TopAbs_FORWARD && aS2.Orientation() != TopAbs_REVERSED)) B.Add ( S,aS2); diff --git a/src/ShapeFix/ShapeFix_IntersectionTool.cxx b/src/ShapeFix/ShapeFix_IntersectionTool.cxx index b98d4bb2c5..daa53f2adc 100644 --- a/src/ShapeFix/ShapeFix_IntersectionTool.cxx +++ b/src/ShapeFix/ShapeFix_IntersectionTool.cxx @@ -1974,7 +1974,7 @@ Standard_Boolean ShapeFix_IntersectionTool::FixIntersectingWires B.Add(newface,wire); } for(i=1 ; i<=SeqNMShapes.Length(); i++) { - TopoDS_Shape aNMS = SeqNMShapes.Value(i); + const TopoDS_Shape& aNMS = SeqNMShapes.Value(i); B.Add(newface,aNMS); } newface.Orientation(ori); diff --git a/src/ShapeFix/ShapeFix_Shell.cxx b/src/ShapeFix/ShapeFix_Shell.cxx index fe2ba6e754..6eb989fad8 100644 --- a/src/ShapeFix/ShapeFix_Shell.cxx +++ b/src/ShapeFix/ShapeFix_Shell.cxx @@ -339,7 +339,7 @@ static Standard_Boolean AddMultiConexityFaces(TopTools_SequenceOfShape& Lface, TopTools_SequenceOfShape AddShapes; for(Standard_Integer i1 = 1 ; i1<=Lface.Length();i1++ ) { - TopoDS_Shape aShape = Lface.Value(i1); + const TopoDS_Shape& aShape = Lface.Value(i1); Standard_Integer aNbMultEdges =0; @@ -347,7 +347,7 @@ static Standard_Boolean AddMultiConexityFaces(TopTools_SequenceOfShape& Lface, for(TopoDS_Iterator aItWires(aShape,Standard_False); aItWires.More(); aItWires.Next()) { Standard_Integer aNbEdges =0; for(TopoDS_Iterator aItEdges(aItWires.Value(),Standard_False); aItEdges.More(); aItEdges.Next(),aNbEdges++) { - TopoDS_Shape edge = aItEdges.Value(); + const TopoDS_Shape& edge = aItEdges.Value(); if(!aMapMultiConnectEdges.Contains(edge)) continue; aNbMultEdges++; } @@ -367,7 +367,7 @@ static Standard_Boolean AddMultiConexityFaces(TopTools_SequenceOfShape& Lface, TopTools_DataMapOfShapeShape aTmpFaceShell; if(GetShells(llPosibleShells,aMap,aTmpShells,aTmpFaceShell,aTmp)) { for(Standard_Integer kk =1; kk <= aTmpShells.Length(); kk++) { - TopoDS_Shape aSh = aTmpShells.Value(kk); + const TopoDS_Shape& aSh = aTmpShells.Value(kk); TopTools_MapOfShape mapEdges; if(GetFreeEdges(aSh,mapEdges)) { Standard_Integer nbedge =0; @@ -386,7 +386,7 @@ static Standard_Boolean AddMultiConexityFaces(TopTools_SequenceOfShape& Lface, for(Standard_Integer k1 =1; k1 <= AddShapes.Length(); k1++) { TopTools_DataMapOfShapeInteger MapOtherShells; TopTools_MapOfShape dire,reve; - TopoDS_Shape aSh = AddShapes.Value(k1); + const TopoDS_Shape& aSh = AddShapes.Value(k1); TopTools_MapOfShape mapEdges; if(!GetFreeEdges(aSh,mapEdges)) continue; TopTools_ListOfShape lfaces; @@ -573,7 +573,7 @@ static void GlueClosedCandidate(TopTools_SequenceOfShape& OpenShells, Standard_Boolean isReversed = Standard_False; Standard_Integer nbedge =0; TopTools_MapOfShape mapEdges2; - TopoDS_Shape aShell2 = OpenShells.Value(j); + const TopoDS_Shape& aShell2 = OpenShells.Value(j); if(!GetFreeEdges(aShell2,mapEdges2)) continue; for(TopTools_MapIteratorOfMapOfShape aIte2( mapEdges2);aIte2.More() && isAddShell;aIte2.Next()) { TopoDS_Edge edge2 = TopoDS::Edge(aIte2.Key()); @@ -675,13 +675,13 @@ static void CreateNonManifoldShells(TopTools_SequenceOfShape& SeqShells, { TopTools_IndexedDataMapOfShapeListOfShape aMap; for(Standard_Integer i =1 ; i <= SeqShells.Length(); i++) { - TopoDS_Shape aShell = SeqShells.Value(i); + const TopoDS_Shape& aShell = SeqShells.Value(i); TopTools_IndexedMapOfShape medeg; TopExp::MapShapes(aShell,TopAbs_EDGE,medeg); for(TopTools_MapIteratorOfMapOfShape mit(aMapMultiConnectEdges); mit.More(); mit.Next()) { //for(TopExp_Explorer aExp(aShell,TopAbs_EDGE); aExp.More(); aExp.Next(),nbe++) { //TopoDS_Shape ae = aExp.Current(); - TopoDS_Shape ae =mit.Key(); + const TopoDS_Shape& ae =mit.Key(); //if( aMapMultiConnectEdges.Contains(aExp.Current())) { if(medeg.Contains(ae)) { if(aMap.Contains(ae)) @@ -714,7 +714,7 @@ static void CreateNonManifoldShells(TopTools_SequenceOfShape& SeqShells, else if(ismerged) { TopoDS_Shape arshell = aMapShells.FindFromKey(alit.Value()); while(aMapShells.Contains(arshell)){ - TopoDS_Shape ss = aMapShells.FindFromKey(arshell); + const TopoDS_Shape& ss = aMapShells.FindFromKey(arshell); if(ss.IsSame(arshell)) break; arshell = ss; } @@ -729,7 +729,7 @@ static void CreateNonManifoldShells(TopTools_SequenceOfShape& SeqShells, else { TopoDS_Shape arshell = aMapShells.FindFromKey(alit.Value()); while(aMapShells.Contains(arshell)) { - TopoDS_Shape ss = aMapShells.FindFromKey(arshell); + const TopoDS_Shape& ss = aMapShells.FindFromKey(arshell); if(ss.IsSame(arshell)) break; arshell = ss; } @@ -749,7 +749,7 @@ static void CreateNonManifoldShells(TopTools_SequenceOfShape& SeqShells, } if(mapmerge.Extent() >1 || ismerged) { for(TopTools_MapIteratorOfMapOfShape alit1(mapmerge); alit1.More();alit1.Next()) { - TopoDS_Shape oldShell = alit1.Key(); + const TopoDS_Shape& oldShell = alit1.Key(); //while(aMapShells.Contains(oldShell)) { // TopoDS_Shape ss = aMapShells.FindFromKey(oldShell); // if(ss.IsSame(oldShell)) break; @@ -764,7 +764,7 @@ static void CreateNonManifoldShells(TopTools_SequenceOfShape& SeqShells, if(aMapShells.Contains(SeqShells.Value(nn))) { TopoDS_Shape aNewShell = aMapShells.FindFromKey(SeqShells.Value(nn)); while(aMapShells.Contains(aNewShell)) { - TopoDS_Shape ss = aMapShells.FindFromKey(aNewShell); + const TopoDS_Shape& ss = aMapShells.FindFromKey(aNewShell); if(ss.IsSame(aNewShell)) break; aNewShell = ss; } diff --git a/src/ShapeFix/ShapeFix_Solid.cxx b/src/ShapeFix/ShapeFix_Solid.cxx index 7a553995b5..3536144802 100644 --- a/src/ShapeFix/ShapeFix_Solid.cxx +++ b/src/ShapeFix/ShapeFix_Solid.cxx @@ -167,7 +167,7 @@ static void CollectSolids(const TopTools_SequenceOfShape& aSeqShells , if(!st) continue; for ( Standard_Integer j = 1; j <= aSeqShells.Length(); j++ ) { if(i==j) continue; - TopoDS_Shape aShell2 = aSeqShells.Value(j); + const TopoDS_Shape& aShell2 = aSeqShells.Value(j); if(!BRep_Tool::IsClosed(aShell2)) continue; if(aMapHoles.Contains(aShell2)) continue; if(aMapShellHoles.IsBound(aShell2)) { @@ -245,7 +245,7 @@ static void CollectSolids(const TopTools_SequenceOfShape& aSeqShells , //purpose : //======================================================================= -static Standard_Boolean CreateSolids(const TopoDS_Shape theShape,TopTools_IndexedMapOfShape& aMapSolids) +static Standard_Boolean CreateSolids(const TopoDS_Shape& theShape,TopTools_IndexedMapOfShape& aMapSolids) { TopTools_SequenceOfShape aSeqShells; Standard_Boolean isDone = Standard_False; @@ -432,8 +432,8 @@ Standard_Boolean ShapeFix_Solid::Perform(const Message_ProgressRange& theProgres if(aExp.More()) { TopoDS_Shell aShtmp = TopoDS::Shell(aExp.Current()); ShapeAnalysis_FreeBounds sfb(aShtmp); - TopoDS_Compound aC1 = sfb.GetClosedWires(); - TopoDS_Compound aC2 = sfb.GetOpenWires(); + const TopoDS_Compound& aC1 = sfb.GetClosedWires(); + const TopoDS_Compound& aC2 = sfb.GetOpenWires(); Standard_Integer numedge =0; TopExp_Explorer aExp1(aC1,TopAbs_EDGE); for( ; aExp1.More(); aExp1.Next()) @@ -474,7 +474,7 @@ Standard_Boolean ShapeFix_Solid::Perform(const Message_ProgressRange& theProgres if(CreateSolids(aResShape,aMapSolids)) { SendWarning (Message_Msg ("FixAdvSolid.FixOrientation.MSG20"));// Orientation of shell was corrected.. if(aMapSolids.Extent() ==1) { - TopoDS_Shape aResSol = aMapSolids.FindKey(1); + const TopoDS_Shape& aResSol = aMapSolids.FindKey(1); if(aResShape.ShapeType() == TopAbs_SHELL && myCreateOpenSolidMode) { TopoDS_Solid solid; BRep_Builder B; diff --git a/src/ShapeFix/ShapeFix_Wire.cxx b/src/ShapeFix/ShapeFix_Wire.cxx index f03fd76f01..fd99e29005 100644 --- a/src/ShapeFix/ShapeFix_Wire.cxx +++ b/src/ShapeFix/ShapeFix_Wire.cxx @@ -3306,8 +3306,8 @@ static void CopyReversePcurves(const TopoDS_Edge& toedge, const TopoDS_Edge& fromedge, const Standard_Boolean reverse) { - TopLoc_Location fromLoc = fromedge.Location(); - TopLoc_Location toLoc = toedge.Location(); + const TopLoc_Location& fromLoc = fromedge.Location(); + const TopLoc_Location& toLoc = toedge.Location(); for (BRep_ListIteratorOfListOfCurveRepresentation fromitcr ((*((Handle(BRep_TEdge)*)&fromedge.TShape()))->ChangeCurves()); fromitcr.More(); fromitcr.Next()) { Handle(BRep_GCurve) fromGC = Handle(BRep_GCurve)::DownCast(fromitcr.Value()); diff --git a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx index e24d82e595..7cf4ab7661 100644 --- a/src/ShapeProcess/ShapeProcess_ShapeContext.cxx +++ b/src/ShapeProcess/ShapeProcess_ShapeContext.cxx @@ -177,7 +177,7 @@ static void RecModif (const TopoDS_Shape &S, { TopoDS_Shape r = S; //gka -modification to keep history for shape with location (OCC21617) - TopLoc_Location aShLoc = S.Location(); + const TopLoc_Location& aShLoc = S.Location(); TopLoc_Location aNullLoc; r.Location(aNullLoc); @@ -204,9 +204,9 @@ static void RecModif (const TopoDS_Shape &S, Standard_Boolean modif = Standard_False; BRep_Builder B; for ( TopoDS_Iterator it(r,Standard_False); it.More(); it.Next() ) { - TopoDS_Shape sh = it.Value(); + const TopoDS_Shape& sh = it.Value(); if ( repl.IsBound(sh) ) { - TopoDS_Shape newsh = repl.Find(sh); + const TopoDS_Shape& newsh = repl.Find(sh); if ( ! newsh.IsNull() ) B.Add ( result, newsh ); modif = Standard_True; } @@ -366,7 +366,7 @@ static void ExplodeModifier (const TopoDS_Shape &S, TopTools_DataMapOfShapeShape &map, const TopAbs_ShapeEnum until) { - TopoDS_Shape res = repl.ModifiedShape ( S ); + const TopoDS_Shape& res = repl.ModifiedShape ( S ); if ( res != S ) { diff --git a/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx b/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx index ff0c54fe2b..070f06b70a 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_ConvertSurfaceToBezierBasis.cxx @@ -406,7 +406,7 @@ void ShapeUpgrade_ConvertSurfaceToBezierBasis::Compute(const Standard_Boolean Se //purpose : //======================================================================= -static Handle(Geom_Surface) GetSegment(const Handle(Geom_Surface) surf, +static Handle(Geom_Surface) GetSegment(const Handle(Geom_Surface)& surf, const Standard_Real U1, const Standard_Real U2, const Standard_Real V1, diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx b/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx index 1b000c1366..4b3e52bb39 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_RemoveInternalWires.cxx @@ -113,7 +113,7 @@ ShapeUpgrade_RemoveInternalWires::ShapeUpgrade_RemoveInternalWires(const TopoDS_ TopTools_IndexedDataMapOfShapeListOfShape aWireFaces; Standard_Integer i =1, nb = theSeqShapes.Length(); for( ; i <= nb; i++) { - TopoDS_Shape aS = theSeqShapes.Value(i); + const TopoDS_Shape& aS = theSeqShapes.Value(i); if(aS.ShapeType() == TopAbs_FACE) removeSmallWire(aS,TopoDS_Wire()); else if(aS.ShapeType() == TopAbs_WIRE) { @@ -163,7 +163,7 @@ void ShapeUpgrade_RemoveInternalWires::removeSmallWire (const TopoDS_Shape& theF TopoDS_Iterator aIte(aW,Standard_False); for( ; aIte.More(); aIte.Next()) { - TopoDS_Shape aE = aIte.Value(); + const TopoDS_Shape& aE = aIte.Value(); if(myRemoveEdges.IsBound(aE)) myRemoveEdges.ChangeFind(aE).Append(aF); else { @@ -193,7 +193,7 @@ void ShapeUpgrade_RemoveInternalWires::removeSmallFaces () //collecting all faces containing edges from removed wire for( ; aIte.More(); aIte.Next()) { - TopoDS_Shape aEdge = aIte.Value(); + const TopoDS_Shape& aEdge = aIte.Value(); if(!myEdgeFaces.Contains(aEdge)) { myStatus |= ShapeExtend::EncodeStatus (ShapeExtend_FAIL2); continue; diff --git a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx index caba9bfb61..d422ed9e46 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_RemoveLocations.cxx @@ -52,7 +52,7 @@ ShapeUpgrade_RemoveLocations::ShapeUpgrade_RemoveLocations() Standard_Boolean ShapeUpgrade_RemoveLocations::Remove(const TopoDS_Shape& theShape) { - TopoDS_Shape aShape = theShape; + const TopoDS_Shape& aShape = theShape; myShape = aShape; TopAbs_ShapeEnum shtype = theShape.ShapeType(); Standard_Boolean isRemoveLoc = ((shtype != TopAbs_COMPOUND && myLevelRemoving == TopAbs_SHAPE) || @@ -179,7 +179,7 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& aNewShape= myMapNewShapes.Find(aShape); aNewShape.Orientation(theShape.Orientation()); if(!theRemoveLoc && !theShape.Location().IsIdentity()) { - TopLoc_Location aL = theShape.Location(); + const TopLoc_Location& aL = theShape.Location(); aNewShape.Location(aL); } if(shtype != TopAbs_EDGE) { @@ -256,7 +256,7 @@ Standard_Boolean ShapeUpgrade_RemoveLocations::MakeNewShape(const TopoDS_Shape& aNewShape.Orientation(TopAbs_FORWARD); TopoDS_Iterator aIt(aShape,Standard_False,isRemoveLoc); for( ; aIt.More(); aIt.Next()) { - TopoDS_Shape subshape = aIt.Value(); + const TopoDS_Shape& subshape = aIt.Value(); TopoDS_Shape anewsubshape; Standard_Boolean isDoneSubShape = MakeNewShape(subshape,anAncShape,anewsubshape,isRemoveLoc); isDone = (isDone || isDoneSubShape); diff --git a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx b/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx index eb252bddc0..494d5b2db1 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_SplitSurfaceContinuity.cxx @@ -138,7 +138,7 @@ ShapeUpgrade_SplitSurfaceContinuity::ShapeUpgrade_SplitSurfaceContinuity() myStatus |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE2 ); if ( spc.Status ( ShapeExtend_DONE3 ) ) { myStatus |= ShapeExtend::EncodeStatus ( ShapeExtend_DONE3 ); - Handle(Geom_Curve) aNewBascurve = spc.GetCurve(); + const Handle(Geom_Curve)& aNewBascurve = spc.GetCurve(); Surface->SetBasisCurve(aNewBascurve); } return; diff --git a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx index 7d603b2dae..022fdc7915 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_UnifySameDomain.cxx @@ -1154,7 +1154,7 @@ static void AddPCurves(const TopTools_SequenceOfShape& theFaces, // seams and equal edges are dropped // Returns true if one of original edges dropped static Standard_Boolean AddOrdinaryEdges(TopTools_SequenceOfShape& edges, - const TopoDS_Shape aShape, + const TopoDS_Shape& aShape, Standard_Integer& anIndex, TopTools_SequenceOfShape& theRemovedEdges) { @@ -1162,7 +1162,7 @@ static Standard_Boolean AddOrdinaryEdges(TopTools_SequenceOfShape& edges, TopTools_IndexedMapOfShape aNewEdges; //add edges without seams for(TopExp_Explorer exp(aShape,TopAbs_EDGE); exp.More(); exp.Next()) { - TopoDS_Shape edge = exp.Current(); + const TopoDS_Shape& edge = exp.Current(); if(aNewEdges.Contains(edge)) { aNewEdges.RemoveKey(edge); @@ -2496,7 +2496,7 @@ Standard_Boolean ShapeUpgrade_UnifySameDomain::MergeEdges(TopTools_SequenceOfSha // fill in the map V-E for (TopoDS_Iterator it(anEdge.Oriented(TopAbs_FORWARD)); it.More(); it.Next()) { - TopoDS_Shape aV = it.Value(); + const TopoDS_Shape& aV = it.Value(); if (aV.Orientation() == TopAbs_FORWARD || aV.Orientation() == TopAbs_REVERSED) { if (!aMapVE.Contains(aV)) @@ -3072,7 +3072,7 @@ void ShapeUpgrade_UnifySameDomain::IntUnifyFaces(const TopoDS_Shape& theInpShape Standard_Boolean hasConnectAnotherFaces = Standard_False; TopExp_Explorer ex(faces(i), TopAbs_EDGE); for (; ex.More() && !hasConnectAnotherFaces; ex.Next()) { - TopoDS_Shape aE = ex.Current(); + const TopoDS_Shape& aE = ex.Current(); const TopTools_ListOfShape& aLF = aMapEF.FindFromKey(aE); if (aLF.Extent() > 1) { for (it.Init(aLF); it.More() && !hasConnectAnotherFaces; it.Next()) { diff --git a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx b/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx index 0bd2850378..63600eaee9 100644 --- a/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx +++ b/src/ShapeUpgrade/ShapeUpgrade_WireDivide.cxx @@ -167,8 +167,8 @@ void ShapeUpgrade_WireDivide::SetSurface(const Handle(Geom_Surface)& S, //purpose : //======================================================================= -static void CorrectSplitValues(const Handle(TColStd_HSequenceOfReal) orig3d, - const Handle(TColStd_HSequenceOfReal) orig2d, +static void CorrectSplitValues(const Handle(TColStd_HSequenceOfReal)& orig3d, + const Handle(TColStd_HSequenceOfReal)& orig2d, Handle(TColStd_HSequenceOfReal) new2d, Handle(TColStd_HSequenceOfReal) new3d) { diff --git a/src/StdLPersistent/StdLPersistent_Dependency.cxx b/src/StdLPersistent/StdLPersistent_Dependency.cxx index 57a75d7486..29d03a8d97 100644 --- a/src/StdLPersistent/StdLPersistent_Dependency.cxx +++ b/src/StdLPersistent/StdLPersistent_Dependency.cxx @@ -39,7 +39,7 @@ void StdLPersistent_Dependency::instance::Import StdLPersistent_HArray1OfPersistent::Iterator anIter (*myVariables->Array()); for (; anIter.More(); anIter.Next()) { - const Handle(StdObjMgt_Persistent) aPersistent = anIter.Value(); + const Handle(StdObjMgt_Persistent)& aPersistent = anIter.Value(); if (aPersistent) theAttribute->GetVariables().Append (aPersistent->GetAttribute()); } diff --git a/src/StdPersistent/StdPersistent_Naming.cxx b/src/StdPersistent/StdPersistent_Naming.cxx index ecaa4128aa..0daf4f0c73 100644 --- a/src/StdPersistent/StdPersistent_Naming.cxx +++ b/src/StdPersistent/StdPersistent_Naming.cxx @@ -85,7 +85,7 @@ void StdPersistent_Naming::Name::Import StdLPersistent_HArray1OfPersistent::Iterator anIter (*myArgs->Array()); for (; anIter.More(); anIter.Next()) { - Handle(StdObjMgt_Persistent) aPersistent = anIter.Value(); + const Handle(StdObjMgt_Persistent)& aPersistent = anIter.Value(); if (aPersistent) { Handle(TDF_Attribute) anArg = aPersistent->GetAttribute(); diff --git a/src/StdPrs/StdPrs_Curve.cxx b/src/StdPrs/StdPrs_Curve.cxx index cde1d4ec4d..7f68142ba4 100644 --- a/src/StdPrs/StdPrs_Curve.cxx +++ b/src/StdPrs/StdPrs_Curve.cxx @@ -84,7 +84,7 @@ static void FindLimits(const Adaptor3d_Curve& aCurve, // purpose: //================================================================== static void DrawCurve (const Adaptor3d_Curve& aCurve, - const Handle(Graphic3d_Group) aGroup, + const Handle(Graphic3d_Group)& aGroup, const Standard_Integer NbP, const Standard_Real U1, const Standard_Real U2, diff --git a/src/StepAP209/StepAP209_Construct.cxx b/src/StepAP209/StepAP209_Construct.cxx index c189307ce5..e00718b1d3 100644 --- a/src/StepAP209/StepAP209_Construct.cxx +++ b/src/StepAP209/StepAP209_Construct.cxx @@ -597,7 +597,7 @@ Handle(StepFEA_HSequenceOfElementRepresentation) StepAP209_Construct::GetFeaElem aSequence = new StepFEA_HSequenceOfElementRepresentation; for (; anIter.More(); anIter.Next()) { - Handle(Standard_Transient) anEntity = anIter.Value(); + const Handle(Standard_Transient)& anEntity = anIter.Value(); if(anEntity->IsKind(theType)) { Handle(StepFEA_ElementRepresentation) anElement = Handle(StepFEA_ElementRepresentation)::DownCast(anEntity); diff --git a/src/StepData/StepData_StepModel.cxx b/src/StepData/StepData_StepModel.cxx index 5d86f07835..f8941148af 100644 --- a/src/StepData/StepData_StepModel.cxx +++ b/src/StepData/StepData_StepModel.cxx @@ -113,7 +113,7 @@ void StepData_StepModel::VerifyCheck(Handle(Interface_Check)& ach) const Interface_ShareTool sh(me,aHP); Handle(Interface_GeneralModule) module; Standard_Integer CN; for (Interface_EntityIterator iter = Header(); iter.More(); iter.Next()) { - Handle(Standard_Transient) head = iter.Value(); + const Handle(Standard_Transient)& head = iter.Value(); if (!lib.Select(head,module,CN)) continue; module->CheckCase(CN,head,sh,ach); } diff --git a/src/StepData/StepData_StepWriter.cxx b/src/StepData/StepData_StepWriter.cxx index ee04642aa8..b276ebf44d 100644 --- a/src/StepData/StepData_StepWriter.cxx +++ b/src/StepData/StepData_StepWriter.cxx @@ -172,7 +172,7 @@ void StepData_StepWriter::SendModel(const Handle(StepData_Protocol)& protocol, Interface_EntityIterator header = themodel->Header(); thenum = 0; for (header.Start(); header.More(); header.Next()) { - Handle(Standard_Transient) anent = header.Value(); + const Handle(Standard_Transient)& anent = header.Value(); // Write Entity via Lib (similaire a SendEntity) Handle(StepData_ReadWriteModule) module; Standard_Integer CN; @@ -681,7 +681,7 @@ void StepData_StepWriter::SendList(const StepData_FieldList& list, for (i = 1; i <= nb; i ++) { Handle(StepData_PDescr) pde; if (!descr.IsNull()) pde = descr->Field(i); - const StepData_Field fild = list.Field(i); + const StepData_Field& fild = list.Field(i); SendField (fild,pde); } // end entity ? diff --git a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx b/src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx index 7dca9ea9f7..b5570da5f4 100644 --- a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx +++ b/src/StepKinematics/StepKinematics_MechanismStateRepresentation.cxx @@ -24,7 +24,7 @@ StepKinematics_MechanismStateRepresentation::StepKinematics_MechanismStateRepres void StepKinematics_MechanismStateRepresentation::Init(const Handle(TCollection_HAsciiString)& theName, const Handle(StepRepr_HArray1OfRepresentationItem)& theItems, const Handle(StepRepr_RepresentationContext)& theContextOfItems, - const Handle(StepKinematics_MechanismRepresentation) theMechanism) + const Handle(StepKinematics_MechanismRepresentation)& theMechanism) { StepRepr_Representation::Init(theName, theItems, theContextOfItems); myRepresentedMechanism = theMechanism; diff --git a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx b/src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx index 82ee1ca25c..7e26f9c189 100644 --- a/src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx +++ b/src/StepKinematics/StepKinematics_MechanismStateRepresentation.hxx @@ -34,7 +34,7 @@ public: //! Returns a MechanismStateRepresentation Standard_EXPORT StepKinematics_MechanismStateRepresentation(); - Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theName, const Handle(StepRepr_HArray1OfRepresentationItem)& theItems, const Handle(StepRepr_RepresentationContext)& theContextOfItems, const Handle(StepKinematics_MechanismRepresentation) theMechanism); + Standard_EXPORT void Init(const Handle(TCollection_HAsciiString)& theName, const Handle(StepRepr_HArray1OfRepresentationItem)& theItems, const Handle(StepRepr_RepresentationContext)& theContextOfItems, const Handle(StepKinematics_MechanismRepresentation)& theMechanism); Standard_EXPORT void SetMechanism(const Handle(StepKinematics_MechanismRepresentation)& theMechanism); diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx b/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx index b03f5f3575..66ae92690a 100644 --- a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx +++ b/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.cxx @@ -27,7 +27,7 @@ IMPLEMENT_STANDARD_RTTIEXT(StepRepr_ReprItemAndMeasureWithUnitAndQRI,StepRepr_Re void StepRepr_ReprItemAndMeasureWithUnitAndQRI::Init (const Handle(StepBasic_MeasureWithUnit)& aMWU, const Handle(StepRepr_RepresentationItem)& aRI, - const Handle(StepShape_QualifiedRepresentationItem) aQRI) + const Handle(StepShape_QualifiedRepresentationItem)& aQRI) { StepRepr_ReprItemAndMeasureWithUnit::Init(aMWU, aRI); myQualifiedRepresentationItem = aQRI; diff --git a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx b/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx index 961a8165dd..c8108ac603 100644 --- a/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx +++ b/src/StepRepr/StepRepr_ReprItemAndMeasureWithUnitAndQRI.hxx @@ -35,7 +35,7 @@ public: Standard_EXPORT StepRepr_ReprItemAndMeasureWithUnitAndQRI(); - Standard_EXPORT void Init (const Handle(StepBasic_MeasureWithUnit)& aMWU, const Handle(StepRepr_RepresentationItem)& aRI, const Handle(StepShape_QualifiedRepresentationItem) aQRI); + Standard_EXPORT void Init (const Handle(StepBasic_MeasureWithUnit)& aMWU, const Handle(StepRepr_RepresentationItem)& aRI, const Handle(StepShape_QualifiedRepresentationItem)& aQRI); Standard_EXPORT void SetQualifiedRepresentationItem (const Handle(StepShape_QualifiedRepresentationItem)& aQRI); diff --git a/src/StepToTopoDS/StepToTopoDS_Builder.cxx b/src/StepToTopoDS/StepToTopoDS_Builder.cxx index b502766c3b..1f431520a9 100644 --- a/src/StepToTopoDS/StepToTopoDS_Builder.cxx +++ b/src/StepToTopoDS/StepToTopoDS_Builder.cxx @@ -673,7 +673,7 @@ void StepToTopoDS_Builder::Init { Message_ProgressRange aRange = aPS.Next(); StepShape_GeometricSetSelect aGSS = GCS->ElementsValue(i); - Handle(Standard_Transient) ent = aGSS.Value(); + const Handle(Standard_Transient)& ent = aGSS.Value(); TopoDS_Shape res = TransferBRep::ShapeResult ( TP, ent ); if ( ! res.IsNull() ) { // already translated diff --git a/src/StepToTopoDS/StepToTopoDS_NMTool.cxx b/src/StepToTopoDS/StepToTopoDS_NMTool.cxx index 8db5198325..143d995ea1 100644 --- a/src/StepToTopoDS/StepToTopoDS_NMTool.cxx +++ b/src/StepToTopoDS/StepToTopoDS_NMTool.cxx @@ -184,7 +184,7 @@ Standard_Boolean StepToTopoDS_NMTool::IsPureNMShell(const TopoDS_Shape& Shell) { Standard_Boolean result = Standard_True; TopExp_Explorer edgeExp(Shell, TopAbs_EDGE); for ( ; edgeExp.More(); edgeExp.Next() ) { - TopoDS_Shape currentEdge = edgeExp.Current(); + const TopoDS_Shape& currentEdge = edgeExp.Current(); if ( !this->isEdgeRegisteredAsNM(currentEdge) ) { result = Standard_False; break; @@ -223,10 +223,10 @@ Standard_Boolean StepToTopoDS_NMTool::isAdjacentShell(const TopoDS_Shape& ShellA TopExp_Explorer edgeExpA(ShellA, TopAbs_EDGE); for ( ; edgeExpA.More(); edgeExpA.Next() ) { - TopoDS_Shape currentEdgeA = edgeExpA.Current(); + const TopoDS_Shape& currentEdgeA = edgeExpA.Current(); TopExp_Explorer edgeExpB(ShellB, TopAbs_EDGE); for ( ; edgeExpB.More(); edgeExpB.Next() ) { - TopoDS_Shape currentEdgeB = edgeExpB.Current(); + const TopoDS_Shape& currentEdgeB = edgeExpB.Current(); if ( currentEdgeA.IsSame(currentEdgeB) ) return Standard_True; } diff --git a/src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx b/src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx index 3b0e2fca74..a005fc8aca 100644 --- a/src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx +++ b/src/StepToTopoDS/StepToTopoDS_TranslateEdge.cxx @@ -136,7 +136,7 @@ static void DecodeMakeEdgeError(const BRepLib_MakeEdge& ME, // ============================================================================ static Handle(Geom_Curve) MakeCurve - (const Handle(StepGeom_Curve)& C1, const Handle(Transfer_TransientProcess) TP) + (const Handle(StepGeom_Curve)& C1, const Handle(Transfer_TransientProcess)& TP) { Handle(Geom_Curve) C2 = Handle(Geom_Curve)::DownCast (TP->FindTransient(C1)); if (!C2.IsNull()) return C2; diff --git a/src/TDF/TDF_CopyLabel.cxx b/src/TDF/TDF_CopyLabel.cxx index e2c701774c..e4d07e86e8 100644 --- a/src/TDF/TDF_CopyLabel.cxx +++ b/src/TDF/TDF_CopyLabel.cxx @@ -80,7 +80,7 @@ void TDF_CopyLabel::ExternalReferences(const TDF_Label& aRefLabel, const TDF_Lab // TDF_Tool::Entry(itr.Value()->Label(), entr1); //d // std::cout<<"\tSource Attribute dynamic type = "<DynamicType()<<" Label = "<Label(), entr1); // std::cout<<"\t\tReferences attribute dynamic type = "<DynamicType()<<" Label = "<SetRelocation(att, att); #ifdef OCCT_DEBUG PrintEntry(att->Label(), Standard_True); diff --git a/src/TDF/TDF_Data.cxx b/src/TDF/TDF_Data.cxx index 50e85d0fc2..afbd2dae75 100644 --- a/src/TDF/TDF_Data.cxx +++ b/src/TDF/TDF_Data.cxx @@ -243,7 +243,7 @@ Standard_Integer TDF_Data::CommitTransaction if (aPtrCurrentAtt->mySavedTransaction >= aPtrCurrentAtt->myTransaction) { - const Handle(TDF_Attribute) currentAtt = aPtrCurrentAtt; + const Handle(TDF_Attribute)& currentAtt = aPtrCurrentAtt; // Collision with a not forgotten version. if (backupAtt.IsNull()) { TDF_Data_DeltaCreation diff --git a/src/TDF/TDF_Tool.cxx b/src/TDF/TDF_Tool.cxx index ca2228f9be..954b540d95 100644 --- a/src/TDF/TDF_Tool.cxx +++ b/src/TDF/TDF_Tool.cxx @@ -172,7 +172,7 @@ static Standard_Boolean TDF_Tool_DescendantRef attMItr.More(); attMItr.Next()) { // CLE // const Handle(TDF_Attribute)& att = attMItr.Key(); - Handle(TDF_Attribute) att = attMItr.Key(); + const Handle(TDF_Attribute)& att = attMItr.Key(); if (!att.IsNull() && !att->Label().IsNull()) { // ENDCLE @@ -242,7 +242,7 @@ static void TDF_Tool_OutReferers(const TDF_Label& aRefLabel, attMItr.More(); attMItr.Next()) { // CLE // const Handle(TDF_Attribute)& att = attMItr.Key(); - Handle(TDF_Attribute) att = attMItr.Key(); + const Handle(TDF_Attribute)& att = attMItr.Key(); // ENDCLE if (aFilterForReferences.IsKept(att) && !att->Label().IsNull() && @@ -316,7 +316,7 @@ static void TDF_Tool_OutReferences(const TDF_Label& aRefLabel, itr.Value()->References(ds); const TDF_AttributeMap& attMap = ds->Attributes(); for (TDF_MapIteratorOfAttributeMap attMItr(attMap);attMItr.More();attMItr.Next()) { - Handle(TDF_Attribute) att = attMItr.Key(); + const Handle(TDF_Attribute)& att = attMItr.Key(); if (aFilterForReferences.IsKept(att) && !att->Label().IsNull() && !att->Label().IsDescendant(aRefLabel)) diff --git a/src/TDocStd/TDocStd_Application.cxx b/src/TDocStd/TDocStd_Application.cxx index 7157746eb8..751ea1f826 100644 --- a/src/TDocStd/TDocStd_Application.cxx +++ b/src/TDocStd/TDocStd_Application.cxx @@ -119,7 +119,7 @@ void TDocStd_Application::ReadingFormats(TColStd_SequenceOfAsciiString &theForma NCollection_IndexedDataMap::Iterator anIter(myReaders); for (; anIter.More(); anIter.Next()) { - Handle(PCDM_RetrievalDriver) aDriver = anIter.Value(); + const Handle(PCDM_RetrievalDriver)& aDriver = anIter.Value(); if (aDriver.IsNull() == Standard_False) { theFormats.Append(anIter.Key()); } @@ -138,7 +138,7 @@ void TDocStd_Application::WritingFormats(TColStd_SequenceOfAsciiString &theForma NCollection_IndexedDataMap::Iterator anIter(myWriters); for (; anIter.More(); anIter.Next()) { - Handle(PCDM_StorageDriver) aDriver = anIter.Value(); + const Handle(PCDM_StorageDriver)& aDriver = anIter.Value(); if (aDriver.IsNull() == Standard_False) { theFormats.Append(anIter.Key()); } diff --git a/src/TNaming/TNaming_Name.cxx b/src/TNaming/TNaming_Name.cxx index 7238eda6a2..1f30b327f3 100644 --- a/src/TNaming/TNaming_Name.cxx +++ b/src/TNaming/TNaming_Name.cxx @@ -376,7 +376,7 @@ static TopoDS_Shape MakeShape (const TopTools_IndexedMapOfShape& MS) //purpose : Tries to make shape with given type from the given shape //======================================================================= -static TopoDS_Shape ShapeWithType(const TopoDS_Shape theShape, +static TopoDS_Shape ShapeWithType(const TopoDS_Shape& theShape, const TopAbs_ShapeEnum theType ) { if (theShape.IsNull() || theType == TopAbs_SHAPE) return theShape; Standard_Integer aType = theShape.ShapeType(); @@ -1351,7 +1351,7 @@ static Standard_Boolean FilterByNeighbourgs (const TDF_Label& L, //---------------------------------------- // First argument: collection has to be filtered. //---------------------------------------- - Handle(TNaming_NamedShape) Cand = Args.First(); //collection of candidates + const Handle(TNaming_NamedShape)& Cand = Args.First(); //collection of candidates #ifdef OCCT_DEBUG_FNB Standard_Integer i = 1; diff --git a/src/TObj/TObj_Assistant.cxx b/src/TObj/TObj_Assistant.cxx index 4783d45a46..d4ad4136b6 100644 --- a/src/TObj/TObj_Assistant.cxx +++ b/src/TObj/TObj_Assistant.cxx @@ -96,7 +96,7 @@ Handle(TObj_Model) TObj_Assistant::FindModel //purpose : //======================================================================= -void TObj_Assistant::BindModel (const Handle(TObj_Model) theModel) +void TObj_Assistant::BindModel (const Handle(TObj_Model)& theModel) { getModels().Append(theModel); } diff --git a/src/TObj/TObj_Assistant.hxx b/src/TObj/TObj_Assistant.hxx index f9ac21778f..702cc1c4dd 100644 --- a/src/TObj/TObj_Assistant.hxx +++ b/src/TObj/TObj_Assistant.hxx @@ -45,7 +45,7 @@ public: //! Binds model to the map static Standard_EXPORT void - BindModel (const Handle(TObj_Model) theModel); + BindModel (const Handle(TObj_Model)& theModel); //! Clears all records from the model map static Standard_EXPORT void diff --git a/src/TopOpeBRep/TopOpeBRep_DSFiller.cxx b/src/TopOpeBRep/TopOpeBRep_DSFiller.cxx index 9952806b43..e4b9c58c24 100644 --- a/src/TopOpeBRep/TopOpeBRep_DSFiller.cxx +++ b/src/TopOpeBRep/TopOpeBRep_DSFiller.cxx @@ -739,8 +739,8 @@ void TopOpeBRep_DSFiller::InsertIntersection2d if ( ! ClearShapeSameDomain(aS1, aS2, HDS) ) return; - TopoDS_Shape S1 = aS1; - TopoDS_Shape S2 = aS2; + const TopoDS_Shape& S1 = aS1; + const TopoDS_Shape& S2 = aS2; TopOpeBRepDS_DataStructure& BDS1 = HDS->ChangeDS(); BDS1.AddShape(S1,1); BDS1.AddShape(S2,2); diff --git a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx b/src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx index 6b665f4720..f975368fae 100644 --- a/src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx +++ b/src/TopOpeBRep/TopOpeBRep_EdgesFiller.cxx @@ -249,7 +249,7 @@ void TopOpeBRep_EdgesFiller::Insert(const TopoDS_Shape& E1,const TopoDS_Shape& E SetShapeTransition(P2D,T1,T2); if (isvertex1) { - const TopoDS_Shape V = V1; + const TopoDS_Shape& V = V1; Standard_Integer Vindex = myPDS->AddShape(V,1); TopOpeBRepDS_Config SSC = P2D.EdgesConfig(); EVI = StoreVI(P2D,T1,E2index,Vindex,Standard_True,SSC,par1,1); @@ -257,7 +257,7 @@ void TopOpeBRep_EdgesFiller::Insert(const TopoDS_Shape& E1,const TopoDS_Shape& E } if (isvertex2) { - const TopoDS_Shape V = V2; + const TopoDS_Shape& V = V2; Standard_Integer Vindex = myPDS->AddShape(V,2); TopOpeBRepDS_Config SSC = P2D.EdgesConfig(); EVI = StoreVI(P2D,T1,E2index,Vindex,Standard_False,SSC,par1,1); diff --git a/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx b/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx index 0f30fdde7d..bdea09c0e4 100644 --- a/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx +++ b/src/TopOpeBRep/TopOpeBRep_FFTransitionTool.cxx @@ -123,9 +123,9 @@ TopOpeBRepDS_Transition TopOpeBRep_FFTransitionTool::ProcessLineTransition // P.IsOnDomS1() and P.IsOnDomS2() are both false Standard_Integer nbv = LI.NbVPoint(); - TopOpeBRep_VPointInter P1 = LI.VPoint(1); + const TopOpeBRep_VPointInter& P1 = LI.VPoint(1); Standard_Real par1 = P1.ParameterOnLine(); - TopOpeBRep_VPointInter Pn = LI.VPoint(nbv); + const TopOpeBRep_VPointInter& Pn = LI.VPoint(nbv); Standard_Real parn = Pn.ParameterOnLine(); Standard_Real par = P.ParameterOnLine(); diff --git a/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx b/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx index d29dc21e2d..5d82c1632b 100644 --- a/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx +++ b/src/TopOpeBRep/TopOpeBRep_FacesFiller_1.cxx @@ -116,7 +116,7 @@ Standard_EXPORT void FUN_VPIndex(TopOpeBRep_FacesFiller& FF, Standard_Boolean& EPIfound, Handle(TopOpeBRepDS_Interference)& IEPI, // out Standard_Boolean& CPIfound, Handle(TopOpeBRepDS_Interference)& ICPI, // out const Standard_Integer mkVP); -Standard_EXPORT Standard_Boolean FUN_newtransEdge(const Handle(TopOpeBRepDS_HDataStructure) HDS, +Standard_EXPORT Standard_Boolean FUN_newtransEdge(const Handle(TopOpeBRepDS_HDataStructure)& HDS, const TopOpeBRep_FacesFiller& FF, const TopOpeBRep_LineInter& L, const Standard_Boolean& Lonrest, diff --git a/src/TopOpeBRep/TopOpeBRep_LineInter.cxx b/src/TopOpeBRep/TopOpeBRep_LineInter.cxx index 7f6768cdaa..d9791d08e0 100644 --- a/src/TopOpeBRep/TopOpeBRep_LineInter.cxx +++ b/src/TopOpeBRep/TopOpeBRep_LineInter.cxx @@ -55,8 +55,8 @@ extern Standard_Boolean TopOpeBRep_GettraceCONIC(); //----------------------------------------------------------------------- static void FUN_ALINETOWLINE (const Handle(IntPatch_ALine)& AL, - const Handle(BRepAdaptor_Surface) surf1, - const Handle(BRepAdaptor_Surface) surf2, + const Handle(BRepAdaptor_Surface)& surf1, + const Handle(BRepAdaptor_Surface)& surf2, IntPatch_SequenceOfLine& theLines) { Standard_Integer nbpointsmax = 200; diff --git a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx b/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx index 845b2deaa0..7268d4ccd6 100644 --- a/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx +++ b/src/TopOpeBRep/TopOpeBRep_ShapeIntersector.cxx @@ -1265,7 +1265,7 @@ static TopoDS_Solid GetNewSolid(const TopoDS_Shape& S, TopoDS_Face& F) TopoDS_Wire w = mkw.Wire(); BRepLib_MakeFace mkf( w ); - TopoDS_Face infFace = mkf.Face(); + const TopoDS_Face& infFace = mkf.Face(); TopoDS_Shell newShell; TopoDS_Solid newSolid; diff --git a/src/TopOpeBRep/TopOpeBRep_kpart.cxx b/src/TopOpeBRep/TopOpeBRep_kpart.cxx index e1971bc8ea..f5f27eb87c 100644 --- a/src/TopOpeBRep/TopOpeBRep_kpart.cxx +++ b/src/TopOpeBRep/TopOpeBRep_kpart.cxx @@ -161,7 +161,7 @@ Standard_Boolean FUNBREP_topowalki_new Standard_Boolean keep = Standard_True; if (LITdefinie) { - Handle(TopOpeBRepDS_Interference) I = DSCIL.Last(); + const Handle(TopOpeBRepDS_Interference)& I = DSCIL.Last(); TopOpeBRepDS_Transition LIT = I->Transition(); Standard_Boolean LITonsort = M_FORWARD( LIT.Orientation(TopAbs_OUT) ); Standard_Boolean LprecIsEntrant = !LITonsort; @@ -470,7 +470,7 @@ Standard_Boolean FUNBREP_topogline_new // we have to parametrize the found interference (parameter PIfound) // and next interference (parline) - Handle(TopOpeBRepDS_Interference) Ifound = DSCIL.First(); + const Handle(TopOpeBRepDS_Interference)& Ifound = DSCIL.First(); Standard_Real PIfound = TopOpeBRepDS_InterferenceTool::Parameter(Ifound); FUNBREP_Periodize(L,Ifound,PIfound,parline); TopOpeBRepDS_InterferenceTool::Parameter(Ifound,PIfound); diff --git a/src/TopOpeBRep/TopOpeBRep_vpr.cxx b/src/TopOpeBRep/TopOpeBRep_vpr.cxx index 1e5338e88a..14f1519c68 100644 --- a/src/TopOpeBRep/TopOpeBRep_vpr.cxx +++ b/src/TopOpeBRep/TopOpeBRep_vpr.cxx @@ -351,7 +351,7 @@ static Standard_Boolean FUN_LineRestF //----------------------------------------------------------------------- Standard_EXPORT Standard_Boolean FUN_newtransEdge -(const Handle(TopOpeBRepDS_HDataStructure) HDS, +(const Handle(TopOpeBRepDS_HDataStructure)& HDS, const TopOpeBRep_FacesFiller& FF, const TopOpeBRep_LineInter& L, const Standard_Boolean& Lonrest, @@ -363,7 +363,7 @@ Standard_EXPORT Standard_Boolean FUN_newtransEdge { T.Before(TopAbs_UNKNOWN); T.After(TopAbs_UNKNOWN); const TopoDS_Face& OOface = FF.Face(OOShapeIndex); - TopoDS_Face FIE = OOface; + const TopoDS_Face& FIE = OOface; { TopAbs_Orientation oFIE = FIE.Orientation(); if (oFIE == TopAbs_INTERNAL || oFIE == TopAbs_EXTERNAL) { @@ -454,7 +454,7 @@ Standard_EXPORT Standard_Boolean FUN_newtransEdge } // FUN_newtransEdge //----------------------------------------------------------------------- -static void FUN_ScanInterfList(const TopOpeBRepDS_Point& PDS, const Handle(TopOpeBRepDS_HDataStructure) HDS, +static void FUN_ScanInterfList(const TopOpeBRepDS_Point& PDS, const Handle(TopOpeBRepDS_HDataStructure)& HDS, const TopOpeBRepDS_ListOfInterference& loI, TopOpeBRepDS_ListOfInterference& loIfound) //----------------------------------------------------------------------- { @@ -512,7 +512,7 @@ static Standard_Boolean FUN_sameGsameS(const TopOpeBRepDS_ListOfInterference& lo // geometry , and support TopOpeBRepDS_PointIterator PI(loI); for (; PI.More(); PI.Next()) { - Handle(TopOpeBRepDS_Interference) EPI = PI.Value(); + const Handle(TopOpeBRepDS_Interference)& EPI = PI.Value(); Standard_Integer GEPI = EPI->Geometry(); Standard_Integer SEPI = EPI->Support(); if (GEPI == G && SEPI == S) loIfound.Append(EPI); } diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx index 8369bcfb0c..20d732fbd2 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1.cxx @@ -265,7 +265,7 @@ void TopOpeBRepBuild_Builder1::GFillShellSFS (const TopoDS_Shape& SH, TopOpeBRepTool_ShapeExplorer exFace; - TopoDS_Shape SH1 = SH;// SH1.Orientation(TopAbs_FORWARD); + const TopoDS_Shape& SH1 = SH;// SH1.Orientation(TopAbs_FORWARD); //1) process firstly same domain faces and non-interference faces for (exFace.Init(SH1,TopAbs_FACE); exFace.More(); exFace.Next()) { @@ -289,7 +289,7 @@ void TopOpeBRepBuild_Builder1::GFillShellSFS (const TopoDS_Shape& SH, //2 Process all other faces for (exFace.Init(SH1,TopAbs_FACE); exFace.More(); exFace.Next()) { - TopoDS_Shape FOR = exFace.Current(); + const TopoDS_Shape& FOR = exFace.Current(); if(!myDataStructure -> HasShape(FOR) || myDataStructure->HasSameDomain(FOR)) @@ -421,7 +421,7 @@ void TopOpeBRepBuild_Builder1::GFillWireNotSameDomWES(const TopoDS_Shape& W, TopAbs_State TB1,TB2; G1.StatesON(TB1,TB2); Standard_Boolean RevOri1 = G1.IsToReverse1(); - TopoDS_Shape WW = W; //WW.Orientation(TopAbs_FORWARD); + const TopoDS_Shape& WW = W; //WW.Orientation(TopAbs_FORWARD); TopOpeBRepTool_ShapeExplorer exEdge(WW,TopAbs_EDGE); for (; exEdge.More(); exEdge.Next()) { @@ -518,7 +518,7 @@ void TopOpeBRepBuild_Builder1::GFillFaceSameDomSFS(const TopoDS_Shape& FOR, if(myDataStructure -> DS().AncestorRank(FOR) != 1) return; - TopOpeBRepBuild_GTopo G1 = Gin; + const TopOpeBRepBuild_GTopo& G1 = Gin; TopAbs_State TB1,TB2; G1.StatesON(TB1,TB2); @@ -696,7 +696,7 @@ void TopOpeBRepBuild_Builder1::GFillWireSameDomWES(const TopoDS_Shape& W, { TopAbs_State TB1,TB2; G1.StatesON(TB1,TB2); - TopoDS_Shape WW = W; //WW.Orientation(TopAbs_FORWARD); + const TopoDS_Shape& WW = W; //WW.Orientation(TopAbs_FORWARD); Standard_Integer iref = myDataStructure -> DS().AncestorRank(W); diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx index 498fe590b0..7ec0ae15a6 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_Builder1_1.cxx @@ -488,7 +488,7 @@ void DumpMapOfShapeWithState (const Standard_Integer iP, ////// aSplFacesState in order to propagate the state for faces. nE=anEdgesToRestMap.Extent(); for (k=1; k<=nE; k++) { - const TopoDS_Shape anEdge=anEdgesToRestMap(k); + const TopoDS_Shape& anEdge=anEdgesToRestMap(k); if (aMapOfShapeWithState.Contains (anEdge)) { const TopOpeBRepDS_ShapeWithState& aSWS=aMapOfShapeWithState.FindFromKey(anEdge); TopAbs_State aState=aSWS.State(); diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx index 9c1054aa0f..fb4954f3ef 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_CorrectFace2d.cxx @@ -260,7 +260,7 @@ TopOpeBRepBuild_CorrectFace2d::TopOpeBRepBuild_CorrectFace2d() anEdgeExists=0; aWExp.Init(aWire, TopAbs_EDGE); for (; aWExp.More(); aWExp.Next()) { - TopoDS_Shape anEdge=aWExp.Current(); + const TopoDS_Shape& anEdge=aWExp.Current(); if (myCopyAvoidMap.Contains(anEdge)) { anEdgeExists=1; break; @@ -346,7 +346,7 @@ TopOpeBRepBuild_CorrectFace2d::TopOpeBRepBuild_CorrectFace2d() aWExp.Init(myCurrentWire, TopAbs_EDGE); for (; aWExp.More(); aWExp.Next(), aNbEdges++) { - TopoDS_Shape anEdge=aWExp.Current(); + const TopoDS_Shape& anEdge=aWExp.Current(); if (aCopyAvoidMap.Contains(anEdge)) anAvoidMap.Add(anEdge); } diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx index 2baa392faf..7112add40f 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridFF.cxx @@ -637,7 +637,7 @@ static Standard_Boolean FUN_validF1edge(const TopoDS_Shape& F) if(tSPS) debfille(iE); #endif - TopOpeBRepBuild_GTopo GME = G1; + const TopOpeBRepBuild_GTopo& GME = G1; GMergeEdgeWES(EOR,GME,WES); TopOpeBRepBuild_GTopo GSE = G1; diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx index d6183fadc5..59250b94fb 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_GridSS.cxx @@ -79,7 +79,7 @@ Standard_EXPORT void TopOpeBRepDS_SetThePCurve //(const TopoDS_Face& fF,const TopoDS_Edge& E,Standard_Real& splitpar); //--------------------------------------------- -static Standard_Integer FUN_getG(const gp_Pnt& P,const TopOpeBRepDS_ListOfInterference& LI,const Handle(TopOpeBRepDS_HDataStructure) HDS,Standard_Integer& iEinterf) +static Standard_Integer FUN_getG(const gp_Pnt& P,const TopOpeBRepDS_ListOfInterference& LI,const Handle(TopOpeBRepDS_HDataStructure)& HDS,Standard_Integer& iEinterf) //--------------------------------------------- { TopOpeBRepDS_ListIteratorOfListOfInterference ILI(LI); @@ -119,7 +119,7 @@ static Standard_Integer FUN_getG(const gp_Pnt& P,const TopOpeBRepDS_ListOfInterf #define DECREASEPERIOD (-1) static Standard_Boolean FUN_EPIforEvisoONperiodicF -(const TopoDS_Edge& E,const TopoDS_Face& F,const TopOpeBRepDS_ListOfInterference& EPIlist,const Handle(TopOpeBRepDS_HDataStructure) HDS,TopOpeBRepDS_ListOfInterference& loCPI) +(const TopoDS_Edge& E,const TopoDS_Face& F,const TopOpeBRepDS_ListOfInterference& EPIlist,const Handle(TopOpeBRepDS_HDataStructure)& HDS,TopOpeBRepDS_ListOfInterference& loCPI) { Standard_Real parone=-1.e7; TopOpeBRepTool_CORRISO CORRISO(F); CORRISO.Init(F); diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx index 07a1771604..4c353a2dfa 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_Merge.cxx @@ -144,7 +144,7 @@ static void CorrectUnclosedWire(TopoDS_Shape& aWire) for(i = 1; i <= nbVer; i++) { const TopTools_ListOfShape& Elist = VElists.FindFromIndex(i); if(Elist.Extent() == 1) { - TopoDS_Shape anEdge = Elist.First(); + const TopoDS_Shape& anEdge = Elist.First(); // std::cout << "Remove redundant edge" << std::endl; BB.Remove(aWire, anEdge); } @@ -345,7 +345,7 @@ void TopOpeBRepBuild_Builder::MakeSolids(TopOpeBRepBuild_SolidBuilder& SOBU,TopT else { myBuildTool.MakeShell(newShell); for (SOBU.InitFace(); SOBU.MoreFace(); SOBU.NextFace()) { - TopoDS_Shape F = SOBU.Face(); + const TopoDS_Shape& F = SOBU.Face(); myBuildTool.AddShellFace(newShell,F); } } @@ -369,7 +369,7 @@ void TopOpeBRepBuild_Builder::MakeShells(TopOpeBRepBuild_SolidBuilder& SOBU,TopT else { myBuildTool.MakeShell(newShell); for (SOBU.InitFace(); SOBU.MoreFace(); SOBU.NextFace()) { - TopoDS_Shape F = SOBU.Face(); + const TopoDS_Shape& F = SOBU.Face(); myBuildTool.AddShellFace(newShell,F); } } @@ -413,7 +413,7 @@ void TopOpeBRepBuild_Builder::MakeFaces(const TopoDS_Shape& aFace,TopOpeBRepBuil else { myBuildTool.MakeWire(newWire); for(FABU.InitEdge(); FABU.MoreEdge(); FABU.NextEdge()) { - TopoDS_Shape E = FABU.Edge(); + const TopoDS_Shape& E = FABU.Edge(); if (hns) myBuildTool.UpdateSurface(E,aFace,newFace); myBuildTool.AddWireEdge(newWire,E); } diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx index 30bda5260c..99266bb619 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_Tools.cxx @@ -400,8 +400,8 @@ const Standard_Real PAR_T = 0.43213918; const TopoDS_Edge& anEdgeObj, gp_Vec& aNormal) { - TopoDS_Edge aEd=anEdgeObj; - TopoDS_Face aFS=aFObj; + const TopoDS_Edge& aEd=anEdgeObj; + const TopoDS_Face& aFS=aFObj; Standard_Real f2 = 0., l2 = 0., tolpc = 0., f = 0., l = 0., par = 0.; Handle(Geom2d_Curve) C2D=FC2D_CurveOnSurface(aEd,aFS,f2,l2,tolpc, Standard_True); @@ -551,7 +551,7 @@ Standard_Boolean TopOpeBRepBuild_Tools::GetTangentToEdgeEdge (const TopoDS_Face& Standard_Boolean TopOpeBRepBuild_Tools::GetTangentToEdge (const TopoDS_Edge& anEdgeObj, gp_Vec& aTangent) { - TopoDS_Edge aEd=anEdgeObj; + const TopoDS_Edge& aEd=anEdgeObj; Standard_Real f = 0., l = 0., par = 0.; @@ -662,8 +662,8 @@ void TopOpeBRepBuild_Tools::UpdateEdgeOnPeriodicalFace(const TopoDS_Edge& aEdgeT Standard_Boolean DiffOriented = Standard_False; BRep_Builder BB; TopoDS_Edge newE = aEdgeToUpdate; //newE.Orientation(TopAbs_FORWARD); - TopoDS_Face fFace = fromFace; //fFace.Orientation(TopAbs_FORWARD); - TopoDS_Face tFace = toFace; //tFace.Orientation(TopAbs_FORWARD); + const TopoDS_Face& fFace = fromFace; //fFace.Orientation(TopAbs_FORWARD); + const TopoDS_Face& tFace = toFace; //tFace.Orientation(TopAbs_FORWARD); Standard_Real fc = 0., lc = 0.; Handle(Geom2d_Curve) cc = BRep_Tool::CurveOnSurface(newE, tFace, fc, lc); diff --git a/src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx b/src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx index 02c3dc6622..12f64e5151 100644 --- a/src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx +++ b/src/TopOpeBRepBuild/TopOpeBRepBuild_makesolids.cxx @@ -79,7 +79,7 @@ void TopOpeBRepBuild_Builder::GSOBUMakeSolids myBuildTool.MakeShell(newShell); nfa = SOBU.InitFace(); for (; SOBU.MoreFace(); SOBU.NextFace()) { - TopoDS_Shape F = SOBU.Face(); + const TopoDS_Shape& F = SOBU.Face(); myBuildTool.AddShellFace(newShell,F); } } diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx b/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx index 9675131b9d..eb015b0908 100644 --- a/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx +++ b/src/TopOpeBRepDS/TopOpeBRepDS_BuildTool.cxx @@ -250,7 +250,7 @@ void TopOpeBRepDS_BuildTool::MakeEdge // Creation d'une arete avec PCurve connectee a la BDS Curve // JYL 22-09-94 - Handle(TopOpeBRepDS_Interference) I = C.GetSCI1(); + const Handle(TopOpeBRepDS_Interference)& I = C.GetSCI1(); Handle(TopOpeBRepDS_SurfaceCurveInterference) SCI; SCI=Handle(TopOpeBRepDS_SurfaceCurveInterference)::DownCast(I); Standard_Integer iS = SCI->Support(); @@ -569,8 +569,8 @@ void TopOpeBRepDS_BuildTool::ApproxCurves //purpose : //======================================================================= Standard_Boolean FUN_getUV -(const Handle(Geom_Surface) surf, - const Handle(Geom_Curve) C3D, +(const Handle(Geom_Surface)& surf, + const Handle(Geom_Curve)& C3D, const Standard_Real par3d, Standard_Real& u0, Standard_Real& v0) @@ -609,7 +609,7 @@ Standard_Boolean FUN_reversePC } Standard_Boolean FUN_makeUisoLineOnSphe (const TopoDS_Face& F, // with geometry the spherical surface - const Handle(Geom_Curve) C3D, + const Handle(Geom_Curve)& C3D, Handle(Geom2d_Curve) PCnew, const Standard_Real tol3d) { @@ -743,13 +743,13 @@ void TopOpeBRepDS_BuildTool::PutPCurves { TopoDS_Face& F1 = *((TopoDS_Face*)(void*)&(TopoDS::Face(newC.Shape1()))); - Handle(Geom2d_Curve) PC1 = newC.Curve1(); + const Handle(Geom2d_Curve)& PC1 = newC.Curve1(); if (!PC1.IsNull() && comppc1) { PCurve(F1,E,PC1); } TopoDS_Face& F2 = *((TopoDS_Face*)(void*)&(TopoDS::Face(newC.Shape2()))); - Handle(Geom2d_Curve) PC2 = newC.Curve2(); + const Handle(Geom2d_Curve)& PC2 = newC.Curve2(); if (!PC2.IsNull() && comppc2) { PCurve(F2,E,PC2); } @@ -1191,7 +1191,7 @@ void TopOpeBRepDS_BuildTool::PCurve(TopoDS_Shape& F, TopoDS_Face FF = TopoDS::Face(F); TopoDS_Edge EE = TopoDS::Edge(E); - Handle(Geom2d_Curve) PCT = PC; + const Handle(Geom2d_Curve)& PCT = PC; Standard_Real CDSmin,CDSmax; Standard_Boolean rangedef = CDS.Range(CDSmin,CDSmax); diff --git a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx b/src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx index 7c76e98149..c4011210c7 100644 --- a/src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx +++ b/src/TopOpeBRepDS/TopOpeBRepDS_ProcessFaceInterferences.cxx @@ -291,7 +291,7 @@ Standard_EXPORT void FUN_resolveFUNKNOWN // to determine transition relatively solid rather then face // if possible (see pb. in CFE002 C2, when SIX==13) Standard_Integer rankFS = BDS.AncestorRank(S1); - TopoDS_Shape aSRef = BDS.Shape(rankFS); + const TopoDS_Shape& aSRef = BDS.Shape(rankFS); TopExp_Explorer ex(aSRef,TopAbs_SOLID); if (ex.More()) { pClass = pClassif; diff --git a/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx b/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx index d87c9d7a85..b21735f179 100644 --- a/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx +++ b/src/TopOpeBRepTool/TopOpeBRepTool_TOOL.cxx @@ -333,7 +333,7 @@ Standard_Integer TopOpeBRepTool_TOOL::OnBoundary(const Standard_Real par, const -static void FUN_tool_sortVonE(TopTools_ListOfShape& lov, const TopoDS_Edge E) +static void FUN_tool_sortVonE(TopTools_ListOfShape& lov, const TopoDS_Edge& E) { TopTools_DataMapOfIntegerShape mapiv;// mapiv.Find(iV) = V TColStd_IndexedMapOfReal mappar; // mappar.FindIndex(parV) = iV diff --git a/src/TopoDS/TopoDS_Iterator.hxx b/src/TopoDS/TopoDS_Iterator.hxx index b1ab7c4929..65aa4faf93 100644 --- a/src/TopoDS/TopoDS_Iterator.hxx +++ b/src/TopoDS/TopoDS_Iterator.hxx @@ -35,7 +35,7 @@ public: DEFINE_STANDARD_ALLOC //! Creates an empty Iterator. - TopoDS_Iterator() {} + TopoDS_Iterator() : myOrientation(TopAbs_FORWARD) {} //! Creates an Iterator on sub-shapes. //! Note: diff --git a/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx b/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx index 673e55459a..e21537d1d1 100644 --- a/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx +++ b/src/TopoDSToStep/TopoDSToStep_WireframeBuilder.cxx @@ -109,8 +109,8 @@ const Handle(TColStd_HSequenceOfTransient)& TopoDSToStep_WireframeBuilder::Value #define Nbpt 23 static Handle(StepGeom_TrimmedCurve) MakeTrimmedCurve (const Handle(StepGeom_Curve) &C, - const Handle(StepGeom_CartesianPoint) P1, - const Handle(StepGeom_CartesianPoint) P2, + const Handle(StepGeom_CartesianPoint)& P1, + const Handle(StepGeom_CartesianPoint)& P2, Standard_Real trim1, Standard_Real trim2, Standard_Boolean sense) @@ -209,7 +209,7 @@ Standard_Boolean TopoDSToStep_WireframeBuilder:: { return Standard_False; } - Handle(StepGeom_Curve) aPMSC = aGTSMC.Value(); + const Handle(StepGeom_Curve)& aPMSC = aGTSMC.Value(); // trim the curve Standard_Real aTrim1 = aCA.FirstParameter(); diff --git a/src/Transfer/Transfer_Finder.cxx b/src/Transfer/Transfer_Finder.cxx index b23b49de1b..1fba56d936 100644 --- a/src/Transfer/Transfer_Finder.cxx +++ b/src/Transfer/Transfer_Finder.cxx @@ -179,9 +179,9 @@ NCollection_DataMap& Transf NCollection_DataMap::Iterator iter(list); for (; iter.More(); iter.Next()) { - TCollection_AsciiString name = iter.Key(); + const TCollection_AsciiString& name = iter.Key(); if (!name.StartsWith(fromname)) continue; - Handle(Standard_Transient) atr = iter.Value(); + const Handle(Standard_Transient)& atr = iter.Value(); Handle(Standard_Transient) newatr = atr; // Copy ? according type diff --git a/src/Transfer/Transfer_TransferInput.cxx b/src/Transfer/Transfer_TransferInput.cxx index 05232fed00..6024faef97 100644 --- a/src/Transfer/Transfer_TransferInput.cxx +++ b/src/Transfer/Transfer_TransferInput.cxx @@ -37,7 +37,7 @@ Transfer_TransferInput::Transfer_TransferInput () { } { Interface_EntityIterator iter; for (list.Start(); list.More(); list.Next()) { - Handle(Transfer_Binder) binder = list.Value(); + const Handle(Transfer_Binder)& binder = list.Value(); if (binder.IsNull()) continue; if (binder->IsKind(STANDARD_TYPE(Transfer_VoidBinder))) continue; diff --git a/src/Transfer/Transfer_TransferOutput.cxx b/src/Transfer/Transfer_TransferOutput.cxx index 1bd7d194c1..f62c60b13a 100644 --- a/src/Transfer/Transfer_TransferOutput.cxx +++ b/src/Transfer/Transfer_TransferOutput.cxx @@ -93,7 +93,7 @@ void Transfer_TransferOutput::TransferRoots (const Handle(Interface_Protocol)& p Interface_EntityIterator list = tool.RootEntities(); Message_ProgressScope aPS(theProgress, NULL, list.NbEntities()); for (list.Start(); list.More() && aPS.More(); list.Next()) { - Handle(Standard_Transient) ent = list.Value(); + const Handle(Standard_Transient)& ent = list.Value(); // Standard_Integer scope = 0; // if (thescope) scope = theproc->NewScope (ent); if (theproc->Transfer (ent, aPS.Next())) theproc->SetRoot(ent); @@ -110,7 +110,7 @@ void Transfer_TransferOutput::TransferRoots (const Interface_Graph& G, Interface_EntityIterator list = tool.RootEntities(); Message_ProgressScope aPS(theProgress, NULL, list.NbEntities()); for (list.Start(); list.More() && aPS.More(); list.Next()) { - Handle(Standard_Transient) ent = list.Value(); + const Handle(Standard_Transient)& ent = list.Value(); // Standard_Integer scope = 0; // if (thescope) scope = theproc->NewScope (ent); if (theproc->Transfer (ent, aPS.Next())) theproc->SetRoot(ent); diff --git a/src/TransferBRep/TransferBRep.cxx b/src/TransferBRep/TransferBRep.cxx index b3830b1182..070a1ed855 100644 --- a/src/TransferBRep/TransferBRep.cxx +++ b/src/TransferBRep/TransferBRep.cxx @@ -109,7 +109,7 @@ static void ShapeAppend (roots ? TP->RootResult() : TP->CompleteResult()); for (list.Start(); list.More(); list.Next()) { - Handle(Transfer_Binder) binder = list.Value(); + const Handle(Transfer_Binder)& binder = list.Value(); ShapeAppend (binder,shapes); } return shapes; @@ -320,7 +320,7 @@ Interface_CheckIterator TransferBRep::BRepCheck nchl.SetModel(model); for (chl.Start(); chl.More(); chl.Next()) { Standard_Integer num = 0; - Handle(Interface_Check) ach = chl.Value(); + const Handle(Interface_Check)& ach = chl.Value(); if (ach->NbFails() + ach->NbWarnings() == 0) continue; DeclareAndCast(Transfer_Finder,starting,ach->Entity()); Handle(Standard_Transient) ent; @@ -339,7 +339,7 @@ Interface_CheckIterator TransferBRep::BRepCheck { Handle(TColStd_HSequenceOfTransient) ls = new TColStd_HSequenceOfTransient(); for (chl.Start(); chl.More(); chl.Next()) { - const Handle(Interface_Check) ach = chl.Value(); + const Handle(Interface_Check)& ach = chl.Value(); if (ach->NbFails() + ach->NbWarnings() == 0) continue; Handle(Standard_Transient) ent = ach->Entity(); if (ent.IsNull()) continue; @@ -358,7 +358,7 @@ Interface_CheckIterator TransferBRep::BRepCheck { Handle(TopTools_HSequenceOfShape) ls = new TopTools_HSequenceOfShape(); for (chl.Start(); chl.More(); chl.Next()) { - const Handle(Interface_Check) ach = chl.Value(); + const Handle(Interface_Check)& ach = chl.Value(); if (ach->NbFails() + ach->NbWarnings() == 0) continue; Handle(Standard_Transient) ent = ach->Entity(); if (ent.IsNull()) continue; @@ -385,13 +385,13 @@ Interface_CheckIterator TransferBRep::BRepCheck Interface_CheckIterator nchl; for (chl.Start(); chl.More(); chl.Next()) { - const Handle(Interface_Check) ach = chl.Value(); + const Handle(Interface_Check)& ach = chl.Value(); if (ach->NbFails() + ach->NbWarnings() == 0) continue; Handle(Standard_Transient) ent = ach->Entity(); if (ent.IsNull()) continue; if (S.IsNull()) { if (ent == obj) { - Handle(Interface_Check) bch(ach); bch->SetEntity(ent); + const Handle(Interface_Check)& bch(ach); bch->SetEntity(ent); nchl.Add (bch,0); } } else { @@ -403,7 +403,7 @@ Interface_CheckIterator TransferBRep::BRepCheck if (!sbs.IsNull()) sh = sbs->Result(); if (!smp.IsNull()) sh = smp->Value(); if (sh == S) { - Handle(Interface_Check) bch(ach); bch->SetEntity(ent); + const Handle(Interface_Check)& bch(ach); bch->SetEntity(ent); nchl.Add (bch,0); } } diff --git a/src/Units/Units_UnitSentence.cxx b/src/Units/Units_UnitSentence.cxx index f8465da8e9..bfcba500c7 100644 --- a/src/Units/Units_UnitSentence.cxx +++ b/src/Units/Units_UnitSentence.cxx @@ -186,10 +186,9 @@ void Units_UnitSentence::SetUnits Handle(Units_Unit) unit; TCollection_AsciiString symbol; - Handle(Units_QuantitiesSequence) quantitiessequence = aquantitiessequence; - - for(index=1; index<=quantitiessequence->Length(); index++) { - quantity = quantitiessequence->Value(index); + for(index=1; index<=aquantitiessequence->Length(); index++) + { + quantity = aquantitiessequence->Value(index); unitssequence=quantity->Sequence(); for(jindex=1; jindex<=unitssequence->Length(); jindex++) { unit = unitssequence->Value(jindex); diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 0d9fe25ead..9fb0cfea5a 100644 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -696,7 +696,7 @@ void ViewerTest::Clear() NCollection_Sequence aListRemoved; for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anObjIter (GetMapOfAIS()); anObjIter.More(); anObjIter.Next()) { - const Handle(AIS_InteractiveObject) anObj = anObjIter.Key1(); + const Handle(AIS_InteractiveObject)& anObj = anObjIter.Key1(); if (anObj->GetContext() != TheAISContext()) { continue; @@ -3363,7 +3363,7 @@ static Standard_Integer VAspects (Draw_Interpretor& theDI, // redisplay all objects in context for (ViewTest_PrsIter aPrsIter (aNames); aPrsIter.More(); aPrsIter.Next()) { - Handle(AIS_InteractiveObject) aPrs = aPrsIter.Current(); + const Handle(AIS_InteractiveObject)& aPrs = aPrsIter.Current(); if (!aPrs.IsNull()) { aCtx->Redisplay (aPrs, Standard_False); @@ -3612,7 +3612,7 @@ static int VDonly2 (Draw_Interpretor& , continue; } - if (Handle(AIS_InteractiveObject) aShape = anIter.Key1()) + if (const Handle(AIS_InteractiveObject)& aShape = anIter.Key1()) { aCtx->Erase (aShape, Standard_False); } @@ -3884,7 +3884,7 @@ int VErase (Draw_Interpretor& theDI, for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS()); anIter.More(); anIter.Next()) { - const Handle(AIS_InteractiveObject) anIO = anIter.Key1(); + const Handle(AIS_InteractiveObject)& anIO = anIter.Key1(); if (!anIO.IsNull() && aCtx->IsSelected (anIO)) { @@ -3907,7 +3907,7 @@ int VErase (Draw_Interpretor& theDI, for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS()); anIter.More(); anIter.Next()) { - Handle(AIS_InteractiveObject) anIO = anIter.Key1(); + const Handle(AIS_InteractiveObject)& anIO = anIter.Key1(); if (!anIO.IsNull()) { if (toEraseInView) @@ -4156,7 +4156,7 @@ int VBounding (Draw_Interpretor& theDI, for (ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName anIter (GetMapOfAIS()); anIter.More(); anIter.Next()) { - Handle(AIS_InteractiveObject) anIO = anIter.Key1(); + const Handle(AIS_InteractiveObject)& anIO = anIter.Key1(); aHighlightedMode = checkMode (aCtx, anIO, aMode); if (aHighlightedMode != -1) { diff --git a/src/ViewerTest/ViewerTest_ObjectCommands.cxx b/src/ViewerTest/ViewerTest_ObjectCommands.cxx index 69481addee..a28963a606 100644 --- a/src/ViewerTest/ViewerTest_ObjectCommands.cxx +++ b/src/ViewerTest/ViewerTest_ObjectCommands.cxx @@ -1310,7 +1310,7 @@ static Standard_Integer VPlaneBuilder (Draw_Interpretor& /*di*/, // Construction of AIS_Plane GC_MakePlane MkPlane (A,B,C); - Handle(Geom_Plane) aGeomPlane = MkPlane.Value(); + const Handle(Geom_Plane)& aGeomPlane = MkPlane.Value(); Handle(AIS_Plane) anAISPlane = new AIS_Plane (aGeomPlane); GetMapOfAIS().Bind (anAISPlane, aName); if (argc == 6) @@ -1494,7 +1494,7 @@ static Standard_Integer VPlaneBuilder (Draw_Interpretor& /*di*/, gp_Pnt aBa = BRep_Tool::Pnt(aVBa); gp_Pnt aBb = BRep_Tool::Pnt(aVBb); GC_MakePlane MkPlane (A, aBa, aBb); - Handle(Geom_Plane) aGeomPlane = MkPlane.Value(); + const Handle(Geom_Plane)& aGeomPlane = MkPlane.Value(); Handle(AIS_Plane) anAISPlane = new AIS_Plane (aGeomPlane); GetMapOfAIS().Bind (anAISPlane, aName); TheAISContext()->Display (anAISPlane, Standard_True); @@ -1521,7 +1521,7 @@ static Standard_Integer VPlaneBuilder (Draw_Interpretor& /*di*/, gp_Pnt B = BRep_Tool::Pnt(TopoDS::Vertex(aShapeB)); gp_Pnt C = BRep_Tool::Pnt(TopoDS::Vertex(aShapeC)); GC_MakePlane MkPlane(A, B, C); - Handle(Geom_Plane) aGeomPlane = MkPlane.Value(); + const Handle(Geom_Plane)& aGeomPlane = MkPlane.Value(); Handle(AIS_Plane) anAISPlane = new AIS_Plane (aGeomPlane); GetMapOfAIS().Bind (anAISPlane, aName); TheAISContext()->Display (anAISPlane, Standard_True); @@ -1565,7 +1565,7 @@ static Standard_Integer VPlaneBuilder (Draw_Interpretor& /*di*/, gp_Pnt Aa = BRep_Tool::Pnt(aVAa); gp_Pnt Ab = BRep_Tool::Pnt(aVAb); GC_MakePlane MkPlane (B,Aa,Ab); - Handle(Geom_Plane) aGeomPlane = MkPlane.Value(); + const Handle(Geom_Plane)& aGeomPlane = MkPlane.Value(); Handle(AIS_Plane) anAISPlane = new AIS_Plane (aGeomPlane); GetMapOfAIS().Bind (anAISPlane ,aName); TheAISContext()->Display (anAISPlane, Standard_True); @@ -3345,7 +3345,7 @@ private: virtual void ComputeSelection (const Handle(SelectMgr_Selection)& theSel, const Standard_Integer theMode) Standard_OVERRIDE; - bool CheckInputCommand (const TCollection_AsciiString theCommand, + bool CheckInputCommand (const TCollection_AsciiString& theCommand, const Handle(TColStd_HArray1OfAsciiString)& theArgsArray, Standard_Integer &theArgIndex, Standard_Integer theArgCount, @@ -3655,7 +3655,7 @@ void MyPArrayObject::ComputeSelection (const Handle(SelectMgr_Selection)& theSel } } -bool MyPArrayObject::CheckInputCommand (const TCollection_AsciiString theCommand, +bool MyPArrayObject::CheckInputCommand (const TCollection_AsciiString& theCommand, const Handle(TColStd_HArray1OfAsciiString)& theArgsArray, Standard_Integer &theArgIndex, Standard_Integer theArgCount, diff --git a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx index 1e4b15f9d0..52fe660b72 100644 --- a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx +++ b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx @@ -747,7 +747,7 @@ static Standard_Integer VListMaterials (Draw_Interpretor& theDI, for (NCollection_Sequence::Iterator aMatIter (aMatList); aMatIter.More(); aMatIter.Next(), ++aMatIndex) { Graphic3d_MaterialAspect aMat (aMatIter.Value()); - const TCollection_AsciiString aMatName = aMat.StringName(); + const TCollection_AsciiString& aMatName = aMat.StringName(); const Graphic3d_Vec3 anAmbient = (Graphic3d_Vec3 )aMat.AmbientColor(); const Graphic3d_Vec3 aDiffuse = (Graphic3d_Vec3 )aMat.DiffuseColor(); const Graphic3d_Vec3 aSpecular = (Graphic3d_Vec3 )aMat.SpecularColor(); diff --git a/src/ViewerTest/ViewerTest_ViewerCommands.cxx b/src/ViewerTest/ViewerTest_ViewerCommands.cxx index 15ad3942b3..79f59ac43f 100644 --- a/src/ViewerTest/ViewerTest_ViewerCommands.cxx +++ b/src/ViewerTest/ViewerTest_ViewerCommands.cxx @@ -1470,7 +1470,7 @@ static TCollection_AsciiString FindViewIdByWindowHandle (Aspect_Drawable theWind void ActivateView (const TCollection_AsciiString& theViewName, Standard_Boolean theToUpdate = Standard_True) { - if (const Handle(V3d_View) aView = ViewerTest_myViews.Find1(theViewName)) + if (const Handle(V3d_View)& aView = ViewerTest_myViews.Find1(theViewName)) { ViewerTest::ActivateView (aView, theToUpdate); } @@ -1483,7 +1483,7 @@ void ActivateView (const TCollection_AsciiString& theViewName, void ViewerTest::ActivateView (const Handle(V3d_View)& theView, Standard_Boolean theToUpdate) { - Handle(V3d_View) aView = theView; + const Handle(V3d_View)& aView = theView; const TCollection_AsciiString* aViewName = ViewerTest_myViews.Seek2 (aView); if (aViewName == nullptr) { @@ -1538,7 +1538,7 @@ void ViewerTest::RemoveView (const Handle(V3d_View)& theView, return; } - const TCollection_AsciiString aViewName = ViewerTest_myViews.Find2 (theView); + const TCollection_AsciiString& aViewName = ViewerTest_myViews.Find2 (theView); RemoveView (aViewName, theToRemoveContext); } @@ -7147,7 +7147,7 @@ static Standard_Integer V2DMode (Draw_Interpretor&, Standard_Integer theArgsNb, && anArgCase == "-name") { ViewerTest_Names aViewNames (theArgVec[++anArgIt]); - TCollection_AsciiString aViewName = aViewNames.GetViewName(); + const TCollection_AsciiString& aViewName = aViewNames.GetViewName(); if (!ViewerTest_myViews.IsBound1 (aViewName)) { Message::SendFail() << "Syntax error: unknown view '" << theArgVec[anArgIt - 1] << "'"; @@ -8842,7 +8842,7 @@ static int VClipPlane (Draw_Interpretor& theDi, Standard_Integer theArgsNb, cons else if (!toOverrideGlobal && ViewerTest_myViews.IsBound1 (anEntityName)) { - Handle(V3d_View) aView = ViewerTest_myViews.Find1 (anEntityName); + const Handle(V3d_View)& aView = ViewerTest_myViews.Find1 (anEntityName); if (toSet) { aView->AddClipPlane (aClipPlane); diff --git a/src/VrmlData/VrmlData_Scene.cxx b/src/VrmlData/VrmlData_Scene.cxx index a263c23bbd..44562e3438 100644 --- a/src/VrmlData/VrmlData_Scene.cxx +++ b/src/VrmlData/VrmlData_Scene.cxx @@ -228,7 +228,7 @@ VrmlData_ErrorStatus VrmlData_Scene::readLine(VrmlData_InBuffer& theBuffer) { return VrmlData_UnrecoverableError; } - theBuffer.Input.seekg(-(aNbChars - anInd - 1), std::ios::cur); + theBuffer.Input.seekg(-static_cast((aNbChars - anInd - 1)), std::ios::cur); } // Check the reading status. diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx index e0a23ed09f..9aa2b20c8b 100644 --- a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.cxx @@ -100,7 +100,7 @@ Standard_Boolean XCAFDoc_ClippingPlaneTool::GetClippingPlane(const TDF_Label& th //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString& theName) const { TDF_Label aLabel; TDF_LabelSequence aClippingPlanes; @@ -149,7 +149,7 @@ TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, co //purpose : //======================================================================= -TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const +TDF_Label XCAFDoc_ClippingPlaneTool::AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString& theName, const Standard_Boolean theCapping) const { TDF_Label aLabel = AddClippingPlane(thePlane, theName); Standard_Integer aCappingVal = (theCapping) ? 1 : 0; @@ -206,7 +206,7 @@ void XCAFDoc_ClippingPlaneTool::GetClippingPlanes(TDF_LabelSequence& theLabels) //======================================================================= void XCAFDoc_ClippingPlaneTool::UpdateClippingPlane(const TDF_Label& theLabel, - const gp_Pln& thePlane, const TCollection_ExtendedString theName) const + const gp_Pln& thePlane, const TCollection_ExtendedString& theName) const { if (theLabel.Father() != Label()) return; diff --git a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx index 980fec6346..f4f37ac850 100644 --- a/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx +++ b/src/XCAFDoc/XCAFDoc_ClippingPlaneTool.hxx @@ -60,7 +60,7 @@ public: //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName, const Standard_Boolean theCapping) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString& theName, const Standard_Boolean theCapping) const; //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane @@ -70,7 +70,7 @@ public: //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane //! is already defined) - Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString theName) const; + Standard_EXPORT TDF_Label AddClippingPlane(const gp_Pln& thePlane, const TCollection_ExtendedString& theName) const; //! Adds a clipping plane definition to a ClippingPlane table and returns //! its label (returns existing label if the same clipping plane @@ -87,7 +87,7 @@ public: //! Sets new value of plane and name to the given clipping plane label //! or do nothing, if the given label is not a clipping plane label - Standard_EXPORT void UpdateClippingPlane(const TDF_Label& theLabelL, const gp_Pln& thePlane, const TCollection_ExtendedString theName) const; + Standard_EXPORT void UpdateClippingPlane(const TDF_Label& theLabelL, const gp_Pln& thePlane, const TCollection_ExtendedString& theName) const; //! Set new value of capping for given clipping plane label Standard_EXPORT void SetCapping(const TDF_Label& theClippingPlaneL, const Standard_Boolean theCapping); diff --git a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx index 67b7691d57..78f66ed244 100644 --- a/src/XCAFDoc/XCAFDoc_ShapeTool.cxx +++ b/src/XCAFDoc/XCAFDoc_ShapeTool.cxx @@ -598,7 +598,7 @@ static Standard_Boolean prepareAssembly (const TopoDS_Shape& theShape, for (; Iterator.More(); Iterator.Next()) aSubShapeSeq.Append(Iterator.Value()); for (Standard_Integer i = 1; i <= aSubShapeSeq.Length(); i++) { - TopoDS_Shape Scomp = aSubShapeSeq.Value(i); + const TopoDS_Shape& Scomp = aSubShapeSeq.Value(i); TopoDS_Shape aNewScomp; B.Remove(theOUTShape, Scomp); prepareAssembly( Scomp, aNewScomp ); @@ -1199,7 +1199,7 @@ Standard_Boolean XCAFDoc_ShapeTool::AddSubShape(const TDF_Label &shapeL, TDF_LabelSequence aShapeLSeq; for (TopoDS_Iterator it(GetShape(shapeL)); it.More() && !isDefined; it.Next()) { - TopoDS_Shape aShape = it.Value(); + const TopoDS_Shape& aShape = it.Value(); if (sub.IsSame(aShape.Located(TopLoc_Location()))) { isDefined = Standard_True; @@ -1463,7 +1463,7 @@ void XCAFDoc_ShapeTool::SetExternRefs(const TDF_Label& L, TDataStd_UAttribute::Set(ShapeLabel,XCAFDoc::ExternRefGUID()); for(Standard_Integer i=1; i<=SHAS.Length(); i++) { TDF_Label tmplbl = ShapeLabel.FindChild(i,Standard_True); - Handle(TCollection_HAsciiString) str = SHAS(i); + const Handle(TCollection_HAsciiString)& str = SHAS(i); TCollection_ExtendedString extstr(str->String()); TDataStd_Name::Set(tmplbl,extstr); } @@ -1483,7 +1483,7 @@ TDF_Label XCAFDoc_ShapeTool::SetExternRefs(const TColStd_SequenceOfHAsciiString& TDataStd_UAttribute::Set(ShapeLabel,XCAFDoc::ExternRefGUID()); for(Standard_Integer i=1; i<=SHAS.Length(); i++) { TDF_Label tmplbl = ShapeLabel.FindChild(i,Standard_True); - Handle(TCollection_HAsciiString) str = SHAS(i); + const Handle(TCollection_HAsciiString)& str = SHAS(i); TCollection_ExtendedString extstr(str->String()); TDataStd_Name::Set(tmplbl,extstr); } @@ -2253,7 +2253,7 @@ void XCAFDoc_ShapeTool::DumpJson (Standard_OStream& theOStream, Standard_Integer for (XCAFDoc_DataMapOfShapeLabel::Iterator aShapeLabelIt (myShapeLabels); aShapeLabelIt.More(); aShapeLabelIt.Next()) { - const TopoDS_Shape aShape = aShapeLabelIt.Key(); + const TopoDS_Shape& aShape = aShapeLabelIt.Key(); OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, &aShape) TCollection_AsciiString aShapeLabel; @@ -2263,7 +2263,7 @@ void XCAFDoc_ShapeTool::DumpJson (Standard_OStream& theOStream, Standard_Integer for (XCAFDoc_DataMapOfShapeLabel::Iterator aSubShapeIt (mySubShapes); aSubShapeIt.More(); aSubShapeIt.Next()) { - const TopoDS_Shape aSubShape = aSubShapeIt.Key(); + const TopoDS_Shape& aSubShape = aSubShapeIt.Key(); OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, &aSubShape) TCollection_AsciiString aSubShapeLabel; @@ -2273,7 +2273,7 @@ void XCAFDoc_ShapeTool::DumpJson (Standard_OStream& theOStream, Standard_Integer for (XCAFDoc_DataMapOfShapeLabel::Iterator aSimpleShapeIt (mySimpleShapes); aSimpleShapeIt.More(); aSimpleShapeIt.Next()) { - const TopoDS_Shape aSimpleShape = aSimpleShapeIt.Key(); + const TopoDS_Shape& aSimpleShape = aSimpleShapeIt.Key(); OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, &aSimpleShape) TCollection_AsciiString aSimpleShapeLabel; diff --git a/src/XDEDRAW/XDEDRAW_Common.cxx b/src/XDEDRAW/XDEDRAW_Common.cxx index 509e2b7793..751cb5ca92 100644 --- a/src/XDEDRAW/XDEDRAW_Common.cxx +++ b/src/XDEDRAW/XDEDRAW_Common.cxx @@ -92,7 +92,7 @@ static Standard_Boolean ClearDicWS() return Standard_True; } -static void AddWS(TCollection_AsciiString filename, +static void AddWS(const TCollection_AsciiString& filename, const Handle(XSControl_WorkSession)& WS) { WS->SetVars(new XSDRAW_Vars); // support of DRAW variables @@ -111,14 +111,14 @@ static Standard_Boolean FillDicWS(NCollection_DataMap::Iterator DicEFIt(dicFile); for (; DicEFIt.More(); DicEFIt.Next()) { - TCollection_AsciiString filename = DicEFIt.Key(); + const TCollection_AsciiString& filename = DicEFIt.Key(); EF = DicEFIt.Value(); AddWS(filename, EF->GetWS()); } return Standard_True; } -static Standard_Boolean SetCurrentWS(TCollection_AsciiString filename) +static Standard_Boolean SetCurrentWS(const TCollection_AsciiString& filename) { if (!thedictws.IsBound(filename)) return Standard_False; Handle(XSControl_WorkSession) CurrentWS = @@ -161,7 +161,7 @@ static Standard_Integer GetDicWSList(Draw_Interpretor& di, Standard_Integer /*ar Standard_Integer num = 0; for (; DicIt.More(); DicIt.Next(), num++) { - TCollection_AsciiString strng(DicIt.Key()); + const TCollection_AsciiString& strng(DicIt.Key()); if (num) di << "\n"; di << "\"" << strng.ToCString() << "\""; } diff --git a/src/XDEDRAW/XDEDRAW_Shapes.cxx b/src/XDEDRAW/XDEDRAW_Shapes.cxx index eeb7a8bb3e..827a6ddcff 100644 --- a/src/XDEDRAW/XDEDRAW_Shapes.cxx +++ b/src/XDEDRAW/XDEDRAW_Shapes.cxx @@ -836,7 +836,7 @@ static Standard_Integer getAllStyledComponents (Draw_Interpretor& di, Standard_I BRep_Builder B; B.MakeCompound(aShape); for (Standard_Integer jj = 1; jj <= aShapes.Length(); jj++) { - TopoDS_Shape aCurShape = aShapes.Value(jj); + const TopoDS_Shape& aCurShape = aShapes.Value(jj); B.Add( aShape, aCurShape ); } DBRep::Set ( argv[2], aShape ); diff --git a/src/XSAlgo/XSAlgo_AlgoContainer.cxx b/src/XSAlgo/XSAlgo_AlgoContainer.cxx index 5b9cd8b79c..332a392be5 100644 --- a/src/XSAlgo/XSAlgo_AlgoContainer.cxx +++ b/src/XSAlgo/XSAlgo_AlgoContainer.cxx @@ -284,7 +284,7 @@ TopoDS_Shape XSAlgo_AlgoContainer::PerformFixShape(const TopoDS_Shape& S, // Purpose : for CheckPCurve // ============================================================================ -static TopoDS_Edge MakeEdgeOnCurve(const TopoDS_Edge edge) +static TopoDS_Edge MakeEdgeOnCurve(const TopoDS_Edge& edge) { TopoDS_Edge result; //BRep_Builder B; // B not used - see below (skl) diff --git a/src/XSControl/XSControl_ConnectedShapes.cxx b/src/XSControl/XSControl_ConnectedShapes.cxx index 1abd723766..233aea0a6c 100644 --- a/src/XSControl/XSControl_ConnectedShapes.cxx +++ b/src/XSControl/XSControl_ConnectedShapes.cxx @@ -78,7 +78,7 @@ XSControl_ConnectedShapes::XSControl_ConnectedShapes () if (sh.IsNull()) continue; if (sh.ShapeType() != type) continue; for (TopExp_Explorer vsh(sh,TopAbs_VERTEX); vsh.More(); vsh.Next()) { - TopoDS_Shape avtx = vsh.Current(); + const TopoDS_Shape& avtx = vsh.Current(); if (vtx.Contains(avtx)) { li->Append (TP->Mapped(i)); break; // break de ce for interieur, entite suivante diff --git a/src/XSControl/XSControl_FuncShape.cxx b/src/XSControl/XSControl_FuncShape.cxx index d161a2c064..f2e84fb20c 100644 --- a/src/XSControl/XSControl_FuncShape.cxx +++ b/src/XSControl/XSControl_FuncShape.cxx @@ -423,7 +423,7 @@ static IFSelect_ReturnStatus XSControl_fromshape sout<EntityFromShapeResult(subsh,submodrec); if (subent.IsNull()) { diff --git a/src/XSControl/XSControl_Reader.cxx b/src/XSControl/XSControl_Reader.cxx index 02107b2176..f93878ae4e 100644 --- a/src/XSControl/XSControl_Reader.cxx +++ b/src/XSControl/XSControl_Reader.cxx @@ -468,8 +468,7 @@ void XSControl_Reader::GetStatsTransfer (const Handle(TColStd_HSequenceOfTransie nbMapped = nbWithFail = nbWithResult = 0; for (itrp.Start(); itrp.More(); itrp.Next()) { - Handle(Transfer_Binder) binder = itrp.Value(); - Handle(Standard_Transient) ent = itrp.Starting(); + const Handle(Transfer_Binder)& binder = itrp.Value(); nbMapped++; if (binder.IsNull()) nbWithFail++; else diff --git a/src/XSControl/XSControl_TransferReader.cxx b/src/XSControl/XSControl_TransferReader.cxx index d1f73102bb..ba6c8761d5 100644 --- a/src/XSControl/XSControl_TransferReader.cxx +++ b/src/XSControl/XSControl_TransferReader.cxx @@ -808,7 +808,7 @@ Standard_Integer XSControl_TransferReader::TransferOne // seule difference entre TransferRoots et TransferOne Standard_Integer res = 0; - Handle(Standard_Transient) obj = ent; + const Handle(Standard_Transient)& obj = ent; TP.Transfer (obj, theProgress); if (theProgress.UserBreak()) return res; @@ -1197,8 +1197,8 @@ void XSControl_TransferReader::PrintStatsOnList(const Handle(Transfer_TransientP for (itrp.Start(); itrp.More(); itrp.Next()) { nbi ++; - Handle(Transfer_Binder) binder = itrp.Value(); - Handle(Standard_Transient) ent = itrp.Starting(); + const Handle(Transfer_Binder)& binder = itrp.Value(); + const Handle(Standard_Transient)& ent = itrp.Starting(); if (binder.IsNull()) { nbnr ++; if (notrec) counter->Add(ent,"(not recorded)"); diff --git a/src/XSControl/XSControl_Utils.cxx b/src/XSControl/XSControl_Utils.cxx index 2df8058d79..304ec8110d 100644 --- a/src/XSControl/XSControl_Utils.cxx +++ b/src/XSControl/XSControl_Utils.cxx @@ -353,7 +353,7 @@ static const Standard_ExtString voidext = { 0 }; if (!compound || res != TopAbs_COMPOUND) return res; res = TopAbs_SHAPE; for (TopoDS_Iterator iter(shape); iter.More(); iter.Next()) { - TopoDS_Shape sh = iter.Value(); + const TopoDS_Shape& sh = iter.Value(); if (sh.IsNull()) continue; TopAbs_ShapeEnum typ = sh.ShapeType(); if (typ == TopAbs_COMPOUND) typ = ShapeType (sh,compound); diff --git a/src/XSDRAWIGES/XSDRAWIGES.cxx b/src/XSDRAWIGES/XSDRAWIGES.cxx index 980be1f738..195159619f 100644 --- a/src/XSDRAWIGES/XSDRAWIGES.cxx +++ b/src/XSDRAWIGES/XSDRAWIGES.cxx @@ -552,7 +552,7 @@ static Standard_Integer XSDRAWIGES_tplosttrim (Draw_Interpretor& di, Standard_In return 0; } for (itrp.Start(); itrp.More(); itrp.Next()) { - Handle(Standard_Transient) ent = itrp.Starting(); + const Handle(Standard_Transient)& ent = itrp.Starting(); Handle(TColStd_HSequenceOfTransient) super = WS->Sharings (ent); if (!super.IsNull()) { Standard_Integer nb = super->Length(); diff --git a/src/math/math_FunctionSetRoot.cxx b/src/math/math_FunctionSetRoot.cxx index 51801a4313..52d127cc1c 100644 --- a/src/math/math_FunctionSetRoot.cxx +++ b/src/math/math_FunctionSetRoot.cxx @@ -211,8 +211,8 @@ static Standard_Boolean MinimizeDirection(const math_Vector& P0, tol1d /= 3; //JR/Hp : - math_Vector PP0 = P0 ; - math_Vector PP1 = P1 ; + const math_Vector& PP0 = P0 ; + const math_Vector& PP1 = P1 ; Delta = PP1 - PP0; // Delta = P1 - P0; invnorme = Delta.Norm();