Beispiel #1
0
 public q_score_bin_vector(q_score_bin_vector other) : this(c_csharp_metricsPINVOKE.new_q_score_bin_vector__SWIG_1(q_score_bin_vector.getCPtr(other)), true)
 {
     if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
     {
         throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Beispiel #2
0
 public q_collapsed_header(q_score_bin_vector bins) : this(c_csharp_metricsPINVOKE.new_q_collapsed_header__SWIG_1(q_score_bin_vector.getCPtr(bins)), true)
 {
     if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
     {
         throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Beispiel #3
0
 public q_score_bin_vectorEnumerator(q_score_bin_vector collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Beispiel #4
0
 public void SetRange(int index, q_score_bin_vector values)
 {
     c_csharp_metricsPINVOKE.q_score_bin_vector_SetRange(swigCPtr, index, q_score_bin_vector.getCPtr(values));
     if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
     {
         throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Beispiel #5
0
        public uint median(q_score_bin_vector bins)
        {
            uint ret = c_csharp_metricsPINVOKE.q_metric_median__SWIG_0(swigCPtr, q_score_bin_vector.getCPtr(bins));

            if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
            {
                throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Beispiel #6
0
        public float percent_over_qscore_cumulative(uint qscore, q_score_bin_vector bins)
        {
            float ret = c_csharp_metricsPINVOKE.q_metric_percent_over_qscore_cumulative__SWIG_1(swigCPtr, qscore, q_score_bin_vector.getCPtr(bins));

            if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
            {
                throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Beispiel #7
0
        public uint total_over_qscore(uint qscore, q_score_bin_vector bins)
        {
            uint ret = c_csharp_metricsPINVOKE.q_metric_total_over_qscore__SWIG_0(swigCPtr, qscore, q_score_bin_vector.getCPtr(bins));

            if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
            {
                throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Beispiel #8
0
        public static q_score_bin_vector Repeat(q_score_bin value, int count)
        {
            global::System.IntPtr cPtr = c_csharp_metricsPINVOKE.q_score_bin_vector_Repeat(q_score_bin.getCPtr(value), count);
            q_score_bin_vector    ret  = (cPtr == global::System.IntPtr.Zero) ? null : new q_score_bin_vector(cPtr, true);

            if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
            {
                throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Beispiel #9
0
        public q_score_bin_vector GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = c_csharp_metricsPINVOKE.q_score_bin_vector_GetRange(swigCPtr, index, count);
            q_score_bin_vector    ret  = (cPtr == global::System.IntPtr.Zero) ? null : new q_score_bin_vector(cPtr, true);

            if (c_csharp_metricsPINVOKE.SWIGPendingException.Pending)
            {
                throw c_csharp_metricsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
Beispiel #10
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(q_score_bin_vector obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }
Beispiel #11
0
        public q_score_bin_vector bins()
        {
            q_score_bin_vector ret = new q_score_bin_vector(c_csharp_metricsPINVOKE.q_score_header_bins(swigCPtr), false);

            return(ret);
        }