protected override void Create(){
     m_massindex1 = new MassIndex(this);
     m_massx = new VariableSeries<Double>(this);
     m_setupstatus = new VariableObject<Boolean>(this);
     Plot1 =
         AddPlot(new PlotAttributes("MassX", 0, Color.Yellow,
                                    Color.Empty, 0, 0, true));
     Plot2 =
         AddPlot(new PlotAttributes("Setup", 0, Color.Cyan,
                                    Color.Empty, 0, 0, true));
     Plot3 =
         AddPlot(new PlotAttributes("Trigger", 0, Color.Lime,
                                    Color.Empty, 0, 0, true));
 }
Example #2
0
 protected override void Create()
 {
     m_massindex1  = new MassIndex(this);
     m_massx       = new VariableSeries <Double>(this);
     m_setupstatus = new VariableObject <Boolean>(this);
     Plot1         =
         AddPlot(new PlotAttributes("MassX", 0, Color.Yellow,
                                    Color.Empty, 0, 0, true));
     Plot2 =
         AddPlot(new PlotAttributes("Setup", 0, Color.Cyan,
                                    Color.Empty, 0, 0, true));
     Plot3 =
         AddPlot(new PlotAttributes("Trigger", 0, Color.Lime,
                                    Color.Empty, 0, 0, true));
 }
Example #3
0
 public override int GetHashCode()
 {
     return(MassIndex.GetHashCode() * LocationIndex.GetHashCode() * FlankingResidueIndex.GetHashCode() * Charge.GetHashCode());
 }