示例#1
0
        public MyScanControl(MyScanContainer myScanContainer)
        {
            PossibleParameters[0] = new MyParameterDescription("CollisionEnergy", "string (0;200)", "", "The normalized collision " +
                                                               "energy (NCE) It is expressed as a string of values, with each value sepearted by a ';' delimiter. A maximum of 10 values can be defined.");
            PossibleParameters[1] = new MyParameterDescription("ScanRate", "Normal,Enchanced,Zoom,Rapid,Turbo", "Normal", "The scan rate of the ion trap");
            PossibleParameters[2] = new MyParameterDescription("FirstMass", "string (50;2000)", "150", "The first mass of the scan range. It is expressed as " +
                                                               "a string of values, with each value sepearted by a ';' delimiter. A maximum of 10 values can be defined.");

            this.myScanContainer = myScanContainer;
        }
示例#2
0
 public MyFusionAccess(IEnumerable <SimpleSpectrum> spectra)
 {
     this.myScanContainer = new MyScanContainer(spectra);
 }
示例#3
0
 public MyInstrumentControl(MyScanContainer myScanContainer)
 {
     this.myScanContainer = myScanContainer;
 }