public override void LoadParametersV2(XElement xElement)
        {
            ProcessMS1 = GetBoolVal(xElement, "Process_MS", ProcessMS1);
            ProcessMS2 = GetBoolVal(xElement, "ProcessMSMS", ProcessMS2);

            ExportFileType        = (Globals.ExporterType)GetEnum(xElement, "ExportFileType", ExportFileType.GetType(), ExportFileType);
            ScanBasedWorkflowName = GetStringValue(xElement, "ScanBasedWorkflowType", ScanBasedWorkflowName);
            DeconvolutionType     = (Globals.DeconvolutionType)GetEnum(xElement, "DeconvolutionType", DeconvolutionType.GetType(), DeconvolutionType);

            UseRAPIDDeconvolution = GetBoolVal(xElement, "UseRAPIDDeconvolution", UseRAPIDDeconvolution);

            IsRefittingPerformed = GetBoolVal(xElement, "ReplaceRAPIDScoreWithHornFitScore", IsRefittingPerformed);

            ExportPeakData = GetBoolVal(xElement, "WritePeaksToTextFile", ExportPeakData);
        }