  | CVVUClipToDetectLimit Method  | 
 Apply detection limit clipping of data.
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void ClipToDetectLimit(
	CGXNETCore gxNetShared,
	CVV vv,
	double det_limit,
	int conv
)
public static void ClipToDetectLimit(
	CGXNETCore gxNetShared,
	CVV vv,
	double det_limit,
	int conv
)
Public Shared Sub ClipToDetectLimit ( 
	gxNetShared As CGXNETCore,
	vv As CVV,
	det_limit As Double,
	conv As Integer
)
Public Shared Sub ClipToDetectLimit ( 
	gxNetShared As CGXNETCore,
	vv As CVV,
	det_limit As Double,
	conv As Integer
)
public:
static void ClipToDetectLimit(
	CGXNETCore^ gxNetShared, 
	CVV^ vv, 
	double det_limit, 
	int conv
)
public:
static void ClipToDetectLimit(
	CGXNETCore^ gxNetShared, 
	CVV^ vv, 
	double det_limit, 
	int conv
)
static member ClipToDetectLimit : 
        gxNetShared : CGXNETCore * 
        vv : CVV * 
        det_limit : float * 
        conv : int -> unit 
static member ClipToDetectLimit : 
        gxNetShared : CGXNETCore * 
        vv : CVV * 
        det_limit : float * 
        conv : int -> unit 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - vv
 - Type: GeoEngine.Core.GXNetXCVV
Input data vv (altered). - det_limit
 - Type: SystemDouble
Detection limit - conv
 - Type: SystemInt32
Auto-convert negatives? 
Remarks
Flow:
1. If auto-converting negatives, then all negative values
   are replaced by -0.5*value, and detection limit is ignored.
2. If not auto-converting negatives, and the detection limit is not
  <define>rDUMMY</define>, then values less than the detection limit are converted to
  one-half the detection limit.
This function is identical to ClipToDetectLimit_CHIMERA.
See Also