diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C index 3162fc3da6fa3d958f8a6c03c866c8ef05bb9df6..cc03fdb722444900cc3a53c8924a5091ee5203a1 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C @@ -961,9 +961,14 @@ void Foam::AMIInterpolation<SourcePatch, TargetPatch>::calcAddressing { WarningIn ( - "AMIInterpolation::calcAddressing" - "(const primitivePatch&, const primitivePatch&, " - " label, label)" + "void Foam::AMIInterpolation<SourcePatch, TargetPatch>::" + "calcAddressing" + "(" + "const primitivePatch&, " + "const primitivePatch&, " + "label, " + "label" + ")" ) << "Have " << srcPatch.size() << " source faces but no target faces." << endl; @@ -1614,7 +1619,7 @@ Foam::AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation "AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation" "(" " const AMIInterpolation<SourcePatch, TargetPatch>&, " - " const label, " + " const labelList&, " " const labelList&" ")" ) << "Size mismatch." << nl diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H index 52d5b0787ff02b22eab734b73818f38994d2dca5..7f0237dac4ee98f9676d72a2a73c2dfdfd5274b4 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.H @@ -310,6 +310,7 @@ class AMIInterpolation const bool output ); + // Constructor helper static void agglomerate @@ -328,6 +329,7 @@ class AMIInterpolation autoPtr<mapDistribute>& tgtMap ); + public: // Constructors @@ -385,9 +387,8 @@ public: //- Return const access to source patch weights inline const scalarListList& srcWeights() const; - //- Source map pointer - valid only if singlePatchProc=-1. - // This gets - // source data into a form to be consumed by + //- Source map pointer - valid only if singlePatchProc = -1 + // This gets source data into a form to be consumed by // tgtAddress, tgtWeights inline const mapDistribute& srcMap() const; @@ -403,9 +404,8 @@ public: //- Return const access to target patch weights inline const scalarListList& tgtWeights() const; - //- Target map pointer - valid only if singlePatchProc=-1. - // This gets - // target data into a form to be consumed by + //- Target map pointer - valid only if singlePatchProc = -1 + // This gets target data into a form to be consumed by // srcAddress, srcWeights inline const mapDistribute& tgtMap() const;