Exemplo n.º 1
0
        public void ConnectLMMMInstruments()
        {
            if (!Instruments.Active.HasLMMM())
            {
                return;
            }
            LMInstrument lmi = (LMInstrument)Instruments.Active.FirstLM();

            if (lmi.id.SRType != InstrType.LMMM)
            {
                return;
            }
            // for the LMs
            // Start listening for instruments.
            StartLMDAQServer((LMConnectionInfo)lmi.id.FullConnInfo);   // NEXT: socket reset should occur here for robust restart and recovery
            collog.TraceInformation("Broadcasting to LMMM instruments. . .");

            // broadcast message to all subnet (configurable, defaulting to 169.254.x.x) addresses. This is the instrument group.
            // look for the number of requested instruments
            DAQControl.LMMMComm.PostLMMMCommand(LMMMLingo.Tokens.broadcast);
            collog.TraceInformation("Sent broadcast. Waiting for LMMM instruments to connect");

            // wait until enough time has elapsed to be sure live instruments can report back
            Thread.Sleep(lmi.id.FullConnInfo.Wait);  // todo: configure this with a unique wait parameter value
            if (!LMMMComm.LMServer.IsRunning)
            {
                collog.TraceEvent(LogLevels.Error, 0x2A29, "No socket server for LMMM support running");
            }
        }
Exemplo n.º 2
0
 public AssayProcessingStateSnapshot(Instrument inst)
 {
     cpss = new CycleProcessingStateSnapshot(inst);
     if (inst == null)
     {
         return;
     }
     assayPending = inst.IsPending();
     if (inst.RDT == null)
     {
         return;
     }
     if (inst is LMInstrument)
     {
         LMInstrument lm = inst as LMInstrument;
         Analysis.LMProcessingState lmrdtstate = (Analysis.LMProcessingState)(inst.RDT.State);
         numProcessedRawDataBuffers = lm.NumProcessedRawDataBuffers;
         maxValuesInBuffer          = lmrdtstate.maxValuesInBuffer;
         lastValue        = lmrdtstate.lastValue;
         wraparoundOffset = lmrdtstate.wraparoundOffset;
         hitsPerChn       = lmrdtstate.hitsPerChn;
     }
     else if (inst is SRInstrument)
     {
     }
     numTotalsEncountered = inst.RDT.State.NumTotalsEncountered;
     numValuesParsed      = inst.RDT.State.NumValuesParsed;
 }
Exemplo n.º 3
0
        /// <summary>
        /// Checks control state for DAQ continuation, then
        /// If at the end of a cycle
        /// 1) finishes cycle processing (wait for analyzer completion, get results, summarize counts, cycle conditioning steps)
        ///   a) starts the next assay cycle, or
        ///   b) notifies controller of DAQ measurement completion
        /// </summary>
        /// <param name="activeInstr">instrument object associated with the current DAQ state</param>
        /// <param name="sb">status block object indicating end of a cycle</param>
        internal static void HandleEndOfCycleProcessing(LMInstrument activeInstr, Analysis.StreamStatusBlock sb)
        {
            activeInstr.RDT.PlaceStatusTextOnCurrentCycle(sb);

            bool done = true; // assume done for all instruments

            activeInstr.DAQState = DAQInstrState.Online;

            // tbd RR: need to lock this
            // for each networked instrument
            // check ALL instrument for done so we can set the assay.state to done or repeat
            // only look at active instrs in the listbox list.
            for (int j = 0; j < Instruments.Active.Count; j++) // NEXT: revisit this for mixing of the LM and SR behaviors
            {
                if (Instruments.Active[j].DAQState != DAQInstrState.Online)
                {
                    done = false;
                    break;
                }
            }

            if (done) // all are done
            {
                CurState.State = DAQInstrState.Online;
                gControl.collog.TraceInformation("Assay cycle " + CurState.Measurement.CurrentRepetition + " complete");
                if ((CurState.Measurement.CurrentRepetition < CurState.Measurement.RequestedRepetitions) ||
                    (CurState.Measurement.RequestedRepetitions == 0) && !CurState.IsQuitRequested)
                {
                    // dev note: this method could be spawned in a task because the end processing can be time consuming, delaying the start of next DAQ iteration
                    bool ok = activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement);
                    if (ok)  // start the next cycle
                    {
                        gControl.FireEvent(EventType.ActionInProgress, gControl);
                        gControl.StartLM_SRAssay();
                    }
                    else
                    {
                        gControl.MajorOperationCompleted(); // the overall pend handle used by cmd line
                    }
                }
                else
                {
                    gControl.collog.TraceInformation("All assay cycles completed");
                    activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement);  // do final processing on the last cycle, then do the last cycle closure processing
                    activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement, last: true);
                    if (CurState.Action != NCC.NCCAction.HVCalibration)
                    {
                        gControl.MajorOperationCompleted();                         // the overall pend handle used by cmd line
                    }
                }
            }
        }
Exemplo n.º 4
0
        public Device.MCADeviceInfo[] ConnectMCAInstruments()
        {
            Device.MCADeviceInfo[] deviceInfos = null;
            if (!Instruments.Active.HasMCA())
            {
                return(deviceInfos);
            }
            LMInstrument lmi = (LMInstrument)Instruments.Active.FirstLM();

            if (lmi.id.SRType != InstrType.MCA527)
            {
                return(deviceInfos);
            }
            collog.TraceInformation("Broadcasting to MCA instruments. . .");
            try
            {
                deviceInfos = Device.MCADevice.QueryDevices();
                if (deviceInfos.Length > 0)
                {
                    Device.MCADeviceInfo thisone = null;
                    // Match based on Electronics Id field
                    foreach (Device.MCADeviceInfo d in deviceInfos)
                    {
                        string id = d.Serial.ToString("D5");
                        string s  = string.Format("MCA-527#{0}  FW# {1}  HW# {2} on {3}", id, d.FirmwareVersion, d.HardwareVersion, d.Address);
                        collog.TraceInformation("Checking " + s);
                        if (string.Equals(id, lmi.id.ElectronicsId, StringComparison.OrdinalIgnoreCase))
                        {
                            collog.TraceInformation("Connecting to " + s);
                            thisone = d;
                            break;
                        }
                    }
                    if (thisone == null)
                    {
                        return(deviceInfos);
                    }
                    ((MCA527Instrument)lmi).DeviceInfo = thisone;
                    lmi.Connect();
                }
            }
            catch (AggregateException ex)
            {
                collog.TraceException(ex.InnerException);
            }
            catch (Exception e)
            {
                collog.TraceException(e);
            }
            return(deviceInfos);
        }
Exemplo n.º 5
0
        public void ApplyInstrumentSettings()
        {
            foreach (Instrument instrument in Instruments.Active)
            {
                try
                {
                    instrument.ApplySettings();
                }
                catch (Exception ex)
                {
                    collog.TraceException(ex);
                }
            }

            // for now, this is for the LMs only
            if (!Instruments.Active.HasConnectedLM())
            {
                return;
            }

            LMInstrument     lm  = (LMInstrument)Instruments.Active.AConnectedLM();
            LMConnectionInfo lmc = (LMConnectionInfo)lm.id.FullConnInfo;

            if (lm.id.SRType == InstrType.LMMM)             // it's an LMMM
            {
                // look for any flags requiring conditioning of the instrument prior to assay or HV
                // e.g. input=0, the arg to each is already parsed in the command line processing state
                //if (NC.App.Config.LMMM.isSet(LMFlags.input))
                {
                    DAQControl.LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.input, lmc.DeviceConfig.Input);
                }
                //if (NC.App.Config.LMMM.isSet(LMFlags.debug))
                {
                    DAQControl.LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.debug, lmc.DeviceConfig.Debug);
                }
                //if (NC.App.Config.LMMM.isSet(LMFlags.leds))
                {
                    DAQControl.LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.leds, lmc.DeviceConfig.LEDs);
                }
                //if (NC.App.Config.LMMM.isSet(LMFlags.hv))
                {
                    DAQControl.LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.hvset, lmc.DeviceConfig.HV);
                }
            }
            else if (lm.id.SRType == InstrType.PTR32)               // its a PTR-32
            {
            }
            else if (lm.id.SRType == InstrType.MCA527)
            {
            }
        }
Exemplo n.º 6
0
 //
 // "Send" wrapper hiding socket and the looping over list of LMMMs
 //
 private void SendToLMMM(string cmd, Int32 specificLMIndex = -1)
 {
     if (!Instruments.Active.HasLMMM())
     {
         commlog.TraceEvent(LogLevels.Warning, 325, "No LMMM instruments available to receive '" + cmd + "'");
         return;
     }
     try
     {
         if (CurrentLM == -1 && specificLMIndex == -1)  // all of them
         {
             commlog.TraceInformation("Send " + LMLoggers.LognLM.FlattenChars(cmd) + LMMMLingo.eolprintrep + " to all the LMMM instruments on the subnet");
             IEnumerator iter = Instruments.Active.GetLMEnumerator();
             while (iter.MoveNext())
             {
                 LMInstrument lmi = (LMInstrument)iter.Current;
                 commlog.TraceEvent(LogLevels.Verbose, 360, "Send '" + LMLoggers.LognLM.FlattenChars(cmd) + LMMMLingo.eolprintrep + "' to " + Instruments.Active.RankPositionInList(lmi) + " " + lmi.port + ", ");
                 LMServer.SendData(cmd + LMMMLingo.eol, lmi.instrSocketEvent);
             }
         }
         else
         {
             int index = specificLMIndex > -1 ? specificLMIndex : CurrentLM;  // index override from live call in main code, not from command line
             // make sure the element is actually there
             commlog.TraceInformation("Send '" + LMLoggers.LognLM.FlattenChars(cmd) + LMMMLingo.eolprintrep + "' to LMMM instrument {0} on the subnet", index);
             LMInstrument lmi = Instruments.Active.FindByIndexer(index);
             if (lmi == null) // index must always be less than Count, the list is 0 based
             {
                 commlog.TraceEvent(LogLevels.Warning, 325, "No LMMM instrument {0} available", index);
             }
             else
             {
                 LMServer.SendData(cmd + LMMMLingo.eol, lmi.instrSocketEvent);
             }
         }
     }
     catch (ObjectDisposedException ex)
     {
         commlog.TraceEvent(LogLevels.Error, 354, "LOST an instrument: " + ex.Message);
     }
     catch (SocketException se)
     {
         commlog.TraceEvent(LogLevels.Error, 355, "TCP/IP send socket error: " + se.Message);
     }
     catch (Exception e)
     {
         commlog.TraceEvent(LogLevels.Error, 356, "TCP/IP send failed: " + e.Message);
     }
 }
Exemplo n.º 7
0
        /// <summary>
        /// Checks control state for DAQ continuation, then
        /// If at the end of a cycle
        /// 1) finishes cycle processing (wait for analyzer completion, get results, summarize counts, cycle conditioning steps)
        ///   a) starts the next assay cycle, or
        ///   b) notifies controller of DAQ measurement completion 
        /// </summary>
        /// <param name="activeInstr">instrument object associated with the current DAQ state</param>
        /// <param name="sb">status block object indicating end of a cycle</param>
        internal static void HandleEndOfCycleProcessing(LMInstrument activeInstr, Analysis.StreamStatusBlock sb)
        {
            activeInstr.RDT.PlaceStatusTextOnCurrentCycle(sb);

            bool done = true; // assume done for all instruments

            activeInstr.DAQState = DAQInstrState.Online;

            // tbd RR: need to lock this
            // for each networked instrument
            // check ALL instrument for done so we can set the assay.state to done or repeat
            // only look at active instrs in the listbox list.
            for (int j = 0; j < Instruments.Active.Count; j++) // NEXT: revisit this for mixing of the LM and SR behaviors
            {
                if (Instruments.Active[j].DAQState != DAQInstrState.Online)
                {
                    done = false;
                    break;
                }
            }

            if (done) // all are done
            {
                CurState.State = DAQInstrState.Online;
                gControl.collog.TraceInformation("Assay cycle " + CurState.Measurement.CurrentRepetition + " complete");
                if ((CurState.Measurement.CurrentRepetition < CurState.Measurement.RequestedRepetitions) ||
                    (CurState.Measurement.RequestedRepetitions == 0) && !CurState.IsQuitRequested)
                {
                    // dev note: this method could be spawned in a task because the end processing can be time consuming, delaying the start of next DAQ iteration
                    bool ok = activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement);
                    if (ok)  // start the next cycle
                    {
                        gControl.FireEvent(EventType.ActionInProgress, gControl);
                        gControl.StartLM_SRAssay();
                    }
                    else
                        gControl.MajorOperationCompleted(); // the overall pend handle used by cmd line
                }
                else
                {
                    gControl.collog.TraceInformation("All assay cycles completed");
                    activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement);  // do final processing on the last cycle, then do the last cycle closure processing
                    activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement,  last:true);
                    if (CurState.Action != NCC.NCCAction.HVCalibration)
                        gControl.MajorOperationCompleted(); // the overall pend handle used by cmd line
                }
            }
        }
Exemplo n.º 8
0
 public CombinedInstrumentProcessingStateSnapshot(Instrument inst)
 {
     iss = new LMProcessor.InstrumentStateSnapshot(inst);
     if (!iss.ins.IsSuspect)
     {
         if (inst is LMInstrument)
         {
             LMInstrument lm = inst as LMInstrument;
             cs = new LMProcessor.CountersStatus(lm.RDT.ReadCountingProcessorStatus());
         }
         else if (inst is SRInstrument)
         {
             cs = new LMProcessor.CountersStatus(null);
         }
     }
 }
Exemplo n.º 9
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        static void SL_ClientConnected(object sender, SocketAsyncEventArgs e)
        {
            connections = Interlocked.Increment(ref connections);
            Socket s = e.UserToken as Socket;

            System.Net.IPEndPoint ep = (System.Net.IPEndPoint)s.RemoteEndPoint;

            gControl.collog.TraceInformation("New Connection : " + s.RemoteEndPoint.ToString());

            LMInstrument lmi = new LMInstrument(e, ep.Port);

            Instruments.All.Add(lmi);
            // dev note: need a parallel entry in the counting parameters map on the enclosing Measurement for each instrument and it's SR params class instance

            // get the status of the instrument
            LMMMComm.FormatAndSendLMMMCommand(LMComm.LMMMLingo.Tokens.cstatus, 0, Instruments.Active.RankPositionInList(lmi));
        }
Exemplo n.º 10
0
        /// <summary>
        /// Prepare a detector for live assay/HV by adding it to the active list.
        /// </summary>
        /// <param name="det"></param>
        public static void ActivateDetector(Detector det)
        {
            if (det.Id.SRType.IsSocketBasedLM())
            {
                if (det.Id.SRType == InstrType.LMMM)
                {
                    LMInstrument lm = new LMInstrument(det);
                    lm.DAQState = DAQInstrState.Offline;
                    lm.selected = false;                      //must broadcast first to get it selected
                    if (!Instruments.All.Contains(lm))
                    {
                        Instruments.All.Add(lm);                         // add to global runtime list
                    }
                }
                else if (det.Id.SRType == InstrType.MCA527)
                {
                    MCA527Instrument mca = new MCA527Instrument(NC.App.Opstate.Measurement.Detector);
                    mca.DAQState = DAQInstrState.Offline;
                    mca.selected = true;
                    if (!Instruments.Active.Contains(mca))
                    {
                        Instruments.Active.Add(mca);
                    }
                }
                else
                {
                    // LMMM and MCA-527 are the only socket-based devices supported
                }
            }
            else if (det.Id.SRType.IsUSBBasedLM())
            {
                Ptr32Instrument ptr = new Ptr32Instrument(det);
                ptr.RDT.ResetRawDataBuffer();                  // poor design recovery patch
                ptr.RDT.SetLMStateFlags(((LMConnectionInfo)(ptr.id.FullConnInfo)).NetComm);

                ptr.DAQState = DAQInstrState.Offline; // USB-based devices are manually initiated as opposed to auto-pickup
                if (!Instruments.All.Contains(ptr))
                {
                    Instruments.All.Add(ptr); // add to global runtime list
                }
            }
        }
Exemplo n.º 11
0
        static void PacketLogSLOW(LMInstrument activeInstr, SocketAsyncEventArgs e)
        {
            // my little hack by Joe Longo, where I learn by doing
            byte[] bstr1 = new byte[e.BytesTransferred];
            Array.Copy(e.Buffer, e.Offset, bstr1, 0, e.BytesTransferred);
            string tesmp = bytestoASCIIchars(bstr1, e.BytesTransferred, 132);
            string eos   = ((e.BytesTransferred % 2) == 0 ? "EVEN " : "ODD ");
            ulong  buffo = 0;

            if (activeInstr != null)
            {
                if (activeInstr.RDT != null)
                {
                    buffo = activeInstr.NumProcessedRawDataBuffers;
                }
                eos += activeInstr.DAQState.ToString();
            }
            gControl.collog.TraceEvent(LogLevels.Verbose, 696, "{0}:{1} {2} bytes, state {3}", buffo, packets, e.BytesTransferred, eos);
            gControl.collog.TraceEvent(LogLevels.Verbose, 697, ">>>" + tesmp);
        }
Exemplo n.º 12
0
 void DisconnectFromLMMMInstruments()
 {
     if (Instruments.Active.HasLMMM())
     {
         if (_SL == null)
         {
             return;
         }
         // Stop incoming accepts
         _SL.Stop();
         IEnumerator iter = Instruments.Active.GetLMEnumerator();
         // Close all connected instruments
         while (iter.MoveNext())
         {
             LMInstrument lmi = (LMInstrument)iter.Current;
             if (lmi.id.SRType == InstrType.LMMM && (lmi.DAQState != DAQInstrState.Offline) && (lmi.instrSocketEvent != null)) // if LMMM and connected
             {
                 _SL.StopClient(lmi.instrSocketEvent);
             }
         }
     }
 }
Exemplo n.º 13
0
 /// <summary>
 /// Prepare a detector for live assay/HV by adding it to the active list.
 /// </summary>
 /// <param name="det"></param>
 public static void ActivateDetector(Detector det)
 {
     if (det.Id.SRType.IsSocketBasedLM())
     {
         if (det.Id.SRType == InstrType.LMMM)
         {
             LMInstrument lm = new LMInstrument(det);
             lm.DAQState = DAQInstrState.Offline;
             lm.selected = false;                      //must broadcast first to get it selected
             if (!Instruments.All.Contains(lm))
             {
                 Instruments.All.Add(lm);                         // add to global runtime list
             }
         }
         else if (det.Id.SRType == InstrType.MCA527)
         {
             MCA527Instrument mca = new MCA527Instrument(NC.App.Opstate.Measurement.Detector);
             mca.DAQState = DAQInstrState.Offline;
             mca.selected = true;
             if (!Instruments.Active.Contains(mca))
             {
                 Instruments.Active.Add(mca);
             }
         }
         else
         {
             // LMMM and MCA-527 are the only socket-based devices supported
         }
     }
     else if (det.Id.SRType.IsUSBBasedLM())
     {
         Ptr32Instrument ptr = new Ptr32Instrument(det);
         ptr.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
         if (!Instruments.All.Contains(ptr))
         {
             Instruments.All.Add(ptr); // add to global runtime list
         }
     }
 }
Exemplo n.º 14
0
        // still need to test if this works
        //         typing 'stop' at prompt stops the current cycle, but not the overall processing state, this method should now stop the entire process
        // devnote: Could just use a timer-based check of the token, same as for progress polling into the analyzer
        /// <summary>
        /// send the cancel command to each LMMM, set the instrument state Online to prevent data processing of any additional packets
        /// </summary>
        /// <param name="removeCurLMDataFile">delete the current LM data files created for the current interval</param>
        private void StopLMCAssay(bool removeCurLMDataFile)
        {
            collog.TraceEvent(LogLevels.Info, 0, "Stopping assay...");
            CurState.State = DAQInstrState.Online;

            // stop each instrument in the active list
            foreach (Instrument active in Instruments.Active)
            {
                //This new from USB version incc6, commenting out has no effect on doubles/triples errors hn 9/22/2014
                active.StopAssay(); // for PTR-32 and MCA527

                // send cancel command to the LMMM instruments
                if (active is LMInstrument && (active.id.SRType == InstrType.LMMM))
                {
                    LMInstrument lmi = active as LMInstrument;
                    LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.cancel, 0, Instruments.Active.RankPositionInList(lmi)); // send to all active, 1 by 1
                    if (collectingFileData && lmi.file != null)
                    {
                        lmi.file.CloseWriter();
                        if (removeCurLMDataFile)
                        {
                            lmi.file.Delete();
                        }
                    }
                    active.DAQState = DAQInstrState.Online;
                }
                else if (active is SRInstrument)
                {
                    // tell the SR thread handler to cancel it
                    ctrllog.TraceInformation("Stop SR {0}", active.id.Identifier());
                    SRWrangler.StopThread(active as SRInstrument, true);
                    active.DAQState = DAQInstrState.Offline;
                }
            }

            ctrllog.TraceInformation("Assay cancelled");
            NC.App.Loggers.Flush();
        }
Exemplo n.º 15
0
 static void PacketLogSLOW(LMInstrument activeInstr, SocketAsyncEventArgs e)
 {
     // my little hack by Joe Longo, where I learn by doing
     byte[] bstr1 = new byte[e.BytesTransferred];
     Array.Copy(e.Buffer, e.Offset, bstr1, 0, e.BytesTransferred);
     string tesmp = bytestoASCIIchars(bstr1, e.BytesTransferred, 132);
     string eos = ((e.BytesTransferred % 2) == 0 ? "EVEN " : "ODD ");
     ulong buffo = 0;
     if (activeInstr != null)
     {
         if (activeInstr.RDT != null)
             buffo = activeInstr.NumProcessedRawDataBuffers;
         eos += activeInstr.DAQState.ToString();
     }
     gControl.collog.TraceEvent(LogLevels.Verbose, 696, "{0}:{1} {2} bytes, state {3}", buffo, packets, e.BytesTransferred, eos);
     gControl.collog.TraceEvent(LogLevels.Verbose, 697, ">>>" + tesmp);
 }
Exemplo n.º 16
0
        ///////////////////
        //  MOUSER MENU  //
        ///////////////////

        private void AnalysisWizardClick(object sender, RoutedEventArgs e)
        {
            AcquireParameters acq = null;
            Detector          det = null;

            Integ.GetCurrentAcquireDetectorPair(ref acq, ref det);
            if (!det.ListMode)
            {
                MessageBox.Show("'" + det.ToString() + "' is not a List Mode detector,\r\ncreate or select a List Mode detector\r\n with Setup > Facility/Inspection...", "List Mode Acquire");
                return;
            }
            NewUI.AnalysisWizard f = new NewUI.AnalysisWizard(NewUI.AnalysisWizard.AWSteps.Step1, acq, det);
            System.Windows.Forms.DialogResult dr = f.ShowDialog();
            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                if (acq.modified || acq.lm.modified)
                {
                    INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                    acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                    NC.App.DB.AcquireParametersMap().Add(sel, acq);  // it's a new one, not the existing one modified
                    NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
                }

                switch (NC.App.Opstate.Measurement.AcquireState.data_src)  // global access to latest acq here, same as acq set in wizard
                {
                case ConstructedSource.Live:
                    UIIntegration.Controller.file = false;   // make sure to use the DAQ controller, not the file controller
                    NC.App.AppContext.FileInput   = null;    // reset the cmd line file input flag
                    if (NC.App.Opstate.Measurement.Detectors[0].ListMode)
                    {
                        //  NC.App.DB.UpdateAcquireParams(ap, det.ListMode); //update it again
                        //   NC.App.DB.UpdateDetector(det);
                        // if ok, the analyzers are set up, so can kick it off now.
                        if (NC.App.Opstate.Measurement.Detectors[0].Id.SRType == InstrType.PTR32)
                        {
                            Ptr32Instrument instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detectors[0]);
                            instrument.DAQState = DAQInstrState.Offline;
                            instrument.selected = true;
                            instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));

                            if (!Instruments.Active.Contains(instrument))
                            {
                                Instruments.Active.Add(instrument);
                            }
                        }
                        else
                        {
                            LMInstrument lm = new LMInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                            lm.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                            lm.selected = false;                 //must broadcast first to get it selected
                            if (!Instruments.All.Contains(lm))
                            {
                                Instruments.All.Add(lm);     // add to global runtime list
                            }
                        }
                    }
                    else
                    {
                        SRInstrument sri = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                        sri.selected = true;
                        sri.Init(NC.App.Loggers.Logger(LMLoggers.AppSection.Data), NC.App.Loggers.Logger(LMLoggers.AppSection.Analysis));
                        if (!Instruments.All.Contains(sri))
                        {
                            Instruments.All.Add(sri);     // add to global runtime list
                        }
                    }
                    break;

                case ConstructedSource.DB:
                    UIIntegration.Controller.file = true;
                    return;

                //break;
                case ConstructedSource.Manual:
                    UIIntegration.Controller.file = true;
                    return;

                //break;
                case ConstructedSource.CycleFile:
                case ConstructedSource.ReviewFile:
                    UIIntegration.Controller.file = true;
                    string xs = UIIntegration.GetUsersFolder("Select Input Folder", NC.App.AppContext.FileInput);
                    if (!String.IsNullOrEmpty(xs))
                    {
                        NC.App.AppContext.FileInput     = xs;
                        NC.App.AppContext.FileInputList = null;      // no explicit file list
                    }
                    SRInstrument sri2 = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                    sri2.selected = true;
                    sri2.Init(NC.App.Loggers.Logger(LMLoggers.AppSection.Data), NC.App.Loggers.Logger(LMLoggers.AppSection.Analysis));
                    if (!Instruments.All.Contains(sri2))
                    {
                        Instruments.All.Add(sri2);     // add to global runtime list
                    }
                    break;

                case ConstructedSource.NCDFile:
                    NC.App.AppContext.NCDFileAssay = true;     // suntoucher, this is right here how we're flowing now
                    UIIntegration.Controller.file  = true;
                    break;

                case ConstructedSource.SortedPulseTextFile:
                    NC.App.AppContext.PulseFileAssay = true;
                    UIIntegration.Controller.file    = true;
                    break;

                case ConstructedSource.PTRFile:
                    NC.App.AppContext.PTRFileAssay = true;
                    UIIntegration.Controller.file  = true;
                    break;

                default:
                    break;
                }
                NC.App.Opstate.Measurement.Detectors[0].Id.source = NC.App.Opstate.Measurement.AcquireState.data_src; // set the detector overall data source value here
                UIIntegration.Controller.SetAssay();                                                                  // tell the controller to do an assay operation using the current measurement state
                UIIntegration.Controller.Perform();                                                                   // start the measurement file or DAQ thread
            }
        }
Exemplo n.º 17
0
        private void OKBtn_Click(object sender, EventArgs e)
        {
            if (hvp.modified)
            {
                DialogResult = System.Windows.Forms.DialogResult.OK;
                HVCalibrationParameters c = NC.App.DB.HVParameters.Get(det.Id.DetectorName);
                if (c != null)
                    c.Copy(hvp);  // copy changes back to original on user affirmation
                else
                {
                    c = hvp;
                    NC.App.DB.HVParameters.GetMap().Add(det, c);
                }
                NC.App.DB.HVParameters.Set(det,c);
                // dev note: LM HV vals on LM Acquire record, but SR uses separate DB table so move HV vals so unify the scheme                 

            }
            else
                DialogResult = System.Windows.Forms.DialogResult.Ignore;

            // The acquire is set to occur, build up the measurement state 
            Integ.BuildMeasurement(acq, det, AssaySelector.MeasurementOption.unspecified);
            
            if (acq.modified)
            {
                INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                NC.App.DB.AcquireParametersMap().Add(sel, acq);  // it's a new one, not the existing one modified
                NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
            }

            UIIntegration.Controller.file = false;  // make sure to use the DAQ controller, not the file controller
            NC.App.AppContext.FileInput = null;  // reset the cmd line file input flag
            if (NC.App.Opstate.Measurement.Detectors[0].ListMode)
            {
                if (NC.App.Opstate.Measurement.Detectors[0].Id.SRType == InstrType.PTR32) {
                    Ptr32Instrument instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detectors[0]);
                    instrument.DAQState = DAQInstrState.Offline;
                    instrument.selected = true;
                    instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));

                    if (!Instruments.Active.Contains(instrument)) {
                        Instruments.Active.Add(instrument);
                    }
                }
                else {
                    // if ok, the analyzers are set up, so can kick it off now.
                    LMInstrument lm = new LMInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                    lm.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                    lm.selected = false;  //must broadcast first to get it selected
                    if (!Instruments.All.Contains(lm))
                        Instruments.All.Add(lm); // add to global runtime list
                }
            }
            else
            {
                SRInstrument sri = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                sri.selected = true;
                sri.Init(null, null);
                if (!Instruments.All.Contains(sri))
                    Instruments.All.Add(sri); // add to global runtime list 
            }

            UIIntegration.Controller.SetHVCalib();  // tell the controller to do an HV operation using the current measurement state
            UIIntegration.Controller.Perform();  // start the HV DAQ thread
            
            
            this.Close();        
        }
Exemplo n.º 18
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        static void SL_ClientConnected(object sender, SocketAsyncEventArgs e)
        {
            connections = Interlocked.Increment(ref connections);
            Socket s = e.UserToken as Socket;
            System.Net.IPEndPoint ep = (System.Net.IPEndPoint)s.RemoteEndPoint;

            gControl.netlog.TraceInformation("New Connection : " + s.RemoteEndPoint.ToString());

            LMInstrument lmi = new LMInstrument(e, ep.Port);
            Instruments.All.Add(lmi);
            // dev note: need a parallel entry in the counting parameters map on the enclosing Measurement for each instrument and it;s SR params class instance

            // get the status of the instrument
            DAQControl.ReadInstrStatus(lmi);
        }
Exemplo n.º 19
0
        ///////////////////
        //  MOUSER MENU  //
        ///////////////////

        private void AnalysisWizardClick(object sender, RoutedEventArgs e)
        {
            AcquireParameters acq = null;
            Detector det = null;
            Integ.GetCurrentAcquireDetectorPair(ref acq, ref det);
            if (!det.ListMode)
            {
                MessageBox.Show("'" + det.ToString() + "' is not a List Mode detector,\r\ncreate or select a List Mode detector\r\n with Setup > Facility/Inspection...", "List Mode Acquire");
                return;
            }
            NewUI.AnalysisWizard f = new NewUI.AnalysisWizard(NewUI.AnalysisWizard.AWSteps.Step1, acq, det);
            System.Windows.Forms.DialogResult dr = f.ShowDialog();
            if (dr == System.Windows.Forms.DialogResult.OK)
            {
                if (acq.modified || acq.lm.modified)
                {
                    INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                    acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                    NC.App.DB.AcquireParametersMap().Add(sel, acq);  // it's a new one, not the existing one modified
                    NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
                }

                switch (NC.App.Opstate.Measurement.AcquireState.data_src)  // global access to latest acq here, same as acq set in wizard
                {
                    case ConstructedSource.Live:
                        UIIntegration.Controller.file = false;  // make sure to use the DAQ controller, not the file controller
                        NC.App.AppContext.FileInput = null;  // reset the cmd line file input flag
                        if (NC.App.Opstate.Measurement.Detectors[0].ListMode)
                        {
                            //  NC.App.DB.UpdateAcquireParams(ap, det.ListMode); //update it again
                            //   NC.App.DB.UpdateDetector(det);
                            // if ok, the analyzers are set up, so can kick it off now.
                            if (NC.App.Opstate.Measurement.Detectors[0].Id.SRType == InstrType.PTR32)
                            {
                                Ptr32Instrument instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detectors[0]);
                                instrument.DAQState = DAQInstrState.Offline;
                                instrument.selected = true;
                                instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));

                                if (!Instruments.Active.Contains(instrument))
                                {
                                    Instruments.Active.Add(instrument);
                                }
                            }
                            else
                            {
                                LMInstrument lm = new LMInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                                lm.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                                lm.selected = false;  //must broadcast first to get it selected
                                if (!Instruments.All.Contains(lm))
                                    Instruments.All.Add(lm); // add to global runtime list
                            }
                        }
                        else
                        {
                            SRInstrument sri = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                            sri.selected = true;
                            sri.Init(NC.App.Loggers.Logger(LMLoggers.AppSection.Data), NC.App.Loggers.Logger(LMLoggers.AppSection.Analysis));
                            if (!Instruments.All.Contains(sri))
                                Instruments.All.Add(sri); // add to global runtime list 
                        }
                        break;
                    case ConstructedSource.DB:
                        UIIntegration.Controller.file = true;
                        return;
                        //break;
                    case ConstructedSource.Manual:
                        UIIntegration.Controller.file = true;
                        return;
                        //break;
                    case ConstructedSource.CycleFile:
                    case ConstructedSource.ReviewFile:
                        UIIntegration.Controller.file = true;
                        string xs = UIIntegration.GetUsersFolder("Select Input Folder", NC.App.AppContext.FileInput);
                        if (!String.IsNullOrEmpty(xs))
                        {
                            NC.App.AppContext.FileInput = xs;
                            NC.App.AppContext.FileInputList = null;  // no explicit file list
                        }
                        SRInstrument sri2 = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                        sri2.selected = true;
                        sri2.Init(NC.App.Loggers.Logger(LMLoggers.AppSection.Data), NC.App.Loggers.Logger(LMLoggers.AppSection.Analysis));
                        if (!Instruments.All.Contains(sri2))
                            Instruments.All.Add(sri2); // add to global runtime list 
                        break;

                    case ConstructedSource.NCDFile:
                        NC.App.AppContext.NCDFileAssay = true; // suntoucher, this is right here how we're flowing now
                        UIIntegration.Controller.file = true;
                        break;
                    case ConstructedSource.SortedPulseTextFile:
                        NC.App.AppContext.PulseFileAssay = true;
                        UIIntegration.Controller.file = true;
                        break;
                    case ConstructedSource.PTRFile:
                        NC.App.AppContext.PTRFileAssay = true;
                        UIIntegration.Controller.file = true;
                        break;
                    default:
                        break;
                }
                NC.App.Opstate.Measurement.Detectors[0].Id.source = NC.App.Opstate.Measurement.AcquireState.data_src;  // set the detector overall data source value here
                UIIntegration.Controller.SetAssay();  // tell the controller to do an assay operation using the current measurement state
                UIIntegration.Controller.Perform();  // start the measurement file or DAQ thread
            }
        }
Exemplo n.º 20
0
 static public void ReadInstrStatus(LMInstrument lmi)
 {
     DAQControl.LMMMComm.FormatAndSendLMMMCommand(LMMMLingo.Tokens.cstatus, 0, Instruments.Active.RankPositionInList(lmi));
 }
Exemplo n.º 21
0
        private void OKBtn_Click(object sender, EventArgs e)
        {
            if (hvp.modified)
            {
                DialogResult = DialogResult.OK;
                HVCalibrationParameters c = NC.App.DB.HVParameters.Get(det.Id.DetectorName);
                if (c != null)
                    c.Copy(hvp);  // copy changes back to original on user affirmation
                else
                {
                    c = hvp;
                    NC.App.DB.HVParameters.GetMap().Add(det, c);
                }
                NC.App.DB.HVParameters.Set(det,c);
                // dev note: LM HV vals on LM Acquire record, but SR uses separate DB table so move HV vals so unify the scheme

            }
            else
                DialogResult = DialogResult.Ignore;

            acq.data_src = ConstructedSource.Live;
            if (OpenInExcel.Checked != acq.lm.HVX)
            {
                acq.lm.HVX = OpenInExcel.Checked;
                NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
            }

            // The acquire is set to occur, build up the measurement state
            Integ.BuildMeasurement(acq, det, AssaySelector.MeasurementOption.unspecified);
            NC.App.Opstate.Measurement.Detector.Id.source =   ConstructedSource.Live;
            if (acq.modified)
            {
                INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                NC.App.DB.AddAcquireParams(sel, acq);  // it's a new one, not the existing one modified
            }

            UIIntegration.Controller.file = false;  // make sure to use the DAQ controller, not the file controller
            NC.App.AppContext.FileInput = null;  // reset the cmd line file input flag
            Instrument instrument = null;
            if (NC.App.Opstate.Measurement.Detector.ListMode)
            {
                if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.PTR32)
                {
                    instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detector);
                }
                else if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.MCA527)
                {
                    instrument = new MCA527Instrument(NC.App.Opstate.Measurement.Detector);
                    ((Analysis.MCA527ProcessingState)instrument.RDT.State).writingFile = false;  // force this
                }
                else if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.LMMM)
                {
                    instrument = new LMInstrument(NC.App.Opstate.Measurement.Detector);
                }
                instrument.DAQState = DAQInstrState.Offline;
                instrument.selected = true;
                instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));
                if (!Instruments.Active.Exists(i => instrument.id.Equals(i.id)))
                    Instruments.Active.Add(instrument);
            }
            else
            {
                instrument = new SRInstrument(NC.App.Opstate.Measurement.Detector);
                instrument.selected = true;
                instrument.Init(null, null);
                if (!Instruments.Active.Exists(i => instrument.id.Equals(i)))
                    Instruments.All.Add(instrument); // add to global runtime list
            }

            UIIntegration.Controller.SetHVCalib();  // tell the controller to do an HV operation using the current measurement state
            UIIntegration.Controller.Perform();  // start the HV DAQ thread

            Close();
        }
Exemplo n.º 22
0
        /// <summary>
        /// Handle data from the client sockets
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        static void SL_DataReceived(object sender, SocketAsyncEventArgs e)
        {
            Socket s = e.UserToken as Socket;

            System.Net.IPEndPoint ep = (System.Net.IPEndPoint)s.RemoteEndPoint;

            packets = Interlocked.Increment(ref packets);
            // call the specific instrument handler here using the ID.
            // This routine is needed if there are more than one type of instrument.
            // match with port it came from, each connection will have a different port.
            LMInstrument activeInstr = Instruments.Active.MatchByPort(ep.Port);  // dev note: this might be slow, could speed up this by switching to a map rather than a list
            bool         verbose     = gControl.collog.ShouldTrace(LogLevels.Verbose);

            if (verbose)
            {
                PacketLogSLOW(activeInstr, e);
            }
            if (activeInstr.DAQState == DAQInstrState.ReceivingData)
            {
                activeInstr.NumProcessedRawDataBuffers++;

                if (verbose) /* diag buffer tracing */
                {
                    string temp = string.Format("{0}: bytes {1}, total bytes {2}, LM {3}",
                                                activeInstr.NumProcessedRawDataBuffers, e.BytesTransferred, numTotalBytes, Instruments.Active.IndexOf(activeInstr));
                    gControl.collog.TraceEvent(LogLevels.Verbose, 686, temp);
                }

                try
                {
                    if (CurState.IsQuitRequested)
                    {
                        throw new AnalysisDefs.CancellationRequestedException();
                    }
                    else if ((e.BytesTransferred % 2) == 0) // EVEN messages are data.
                    {
                        // dev note: file writing is controlled via LiveFileWrite
                        (activeInstr.file as NCCFile.NCDFile).Write(e.Buffer, e.Offset, e.BytesTransferred);

                        try
                        {
                            // this method copies the buffer and sends it on to neutron counting
                            var res = activeInstr.RDT.PassBufferToTheCounters(e.Buffer, e.Offset, e.BytesTransferred);
                            if (res != null) //Handle this error condition as if it is a regular ODD-count packet with the end marker
                            {
                                HandleEndOfCycleProcessing(activeInstr, res);
                            }
                        }
                        catch (Exception ex)
                        {
                            HandleFatalGeneralError(activeInstr, ex);
                        }
                    }
                    else //    ODD - last data is the status message.
                    {
                        try
                        {
                            LMComm.LMMMLingo.Tokens response = LMMMComm.DataPacketResponseMatch(e.Buffer, e.Offset, e.BytesTransferred);
                            // command parsing here should be as fast as possible because data collection is active and may be hampered by even short delays in this section
                            // it is a status message, the last message of an assay
                            if (response == LMComm.LMMMLingo.Tokens.statusdata) // dev note: must be odd length and end with '......' or '......' (old style) or else start with 'Status\r\n' (new style Nov. 2010)
                            {
                                try                                             // // write the last message to the file.This might be a partial data + last message
                                {
                                    (activeInstr.file as NCCFile.NCDFile).Write(e.Buffer, e.Offset, e.BytesTransferred);
                                    (activeInstr.file as NCCFile.NCDFile).CloseWriter();
                                }
                                catch (Exception fex)
                                {
                                    if ((activeInstr.file as NCCFile.NCDFile).stream != null)
                                    {
                                        gControl.collog.TraceEvent(LogLevels.Error, 642, "{0}: error on close {1}", (activeInstr.file as NCCFile.NCDFile).stream.Name, fex.Message);
                                    }
                                }

                                var res = activeInstr.RDT.PassBufferToTheCounters(e.Buffer, e.Offset, e.BytesTransferred);
                                HandleEndOfCycleProcessing(activeInstr, res);
                            }
                            else if (response == LMComm.LMMMLingo.Tokens.tosenddatasize)                                 // this says how many bytes are going to be sent
                            {
                                numTotalBytes = LMMMComm.ResponseToSendDataSize(e.Buffer, e.Offset, e.BytesTransferred); // t
                                gControl.collog.TraceEvent(LogLevels.Verbose, 654, "Expecting " + Convert.ToString(numTotalBytes) + " (to sen)");
                            }
                            else if (response == LMComm.LMMMLingo.Tokens.unrecognizeddata) // unrecognized command
                            {
                                string temp = LMMMComm.ResponseUnrecoSample(e.Buffer, e.Offset, e.BytesTransferred);
                                gControl.collog.TraceInformation(temp);
                            }
                            else // it might be an odd message with some data tacked on the beginning
                            {
                                if (gControl.collectingFileData)
                                {
                                    (activeInstr.file as NCCFile.NCDFile).Write(e.Buffer, e.Offset, e.BytesTransferred);
                                    (activeInstr.file as NCCFile.NCDFile).CloseWriter();
                                }
                                if (response == LMComm.LMMMLingo.Tokens.rates) // somehow got a rates block
                                {
                                    RatesStatus p        = new RatesStatus();
                                    String      received = LMMMComm.NonDataResponse(e.Buffer, e.Offset, e.BytesTransferred);
                                    LMMMComm.SplitRatesReadResponse(received, ref p);
                                    gControl.collog.TraceInformation("ReceivingData rates {0} on LM {1}:{2}", p.ToString(), Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId);
                                }
                                CurState.State = DAQInstrState.Online;
                                gControl.collog.TraceInformation("Cycle " + CurState.Measurement.CurrentRepetition + " complete");
                                if ((CurState.Measurement.CurrentRepetition < CurState.Measurement.RequestedRepetitions) || (CurState.Measurement.RequestedRepetitions == 0))
                                {
                                    bool ok = activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement);
                                    if (ok)
                                    {
                                        gControl.FireEvent(EventType.ActionInProgress, gControl);
                                        gControl.StartLM_SRAssay();
                                    }
                                    else
                                    {
                                        gControl.MajorOperationCompleted(); // the overall pend handle used by cmd line
                                    }
                                }
                                else
                                {
                                    gControl.collog.TraceInformation("All assay cycles completed, but with data in an odd-sized packet");
                                    bool ok = activeInstr.RDT.EndOfCycleProcessing(CurState.Measurement, last: true);
                                    gControl.MajorOperationCompleted(); // the overall pend handle used by cmd line
                                }
                            }
                        }
                        catch (AnalysisDefs.FatalNeutronCountingException fae)  // propagated up from the AnalysisHandler
                        {
                            HandleFatalGeneralError(activeInstr, fae);
                        }
                        catch (AnalysisDefs.CancellationRequestedException)  // thrown from this method
                        {
                            StopActiveAssayImmediately();
                        }
                        catch (Exception oddex)
                        {
                            gControl.collog.TraceEvent(LogLevels.Error, 643, "Internal error, stopping active processing, {0}: Odd data length handler: {1}",
                                                       activeInstr.NumProcessedRawDataBuffers, oddex.Message);
                            HandleFatalGeneralError(activeInstr, oddex);
                        }
                    }
                }
                catch (AnalysisDefs.CancellationRequestedException)  // thrown from this method
                {
                    StopActiveAssayImmediately();
                }
                if (verbose)
                {
                    gControl.collog.Flush();
                }
            }
            else if (activeInstr.DAQState == DAQInstrState.Online || activeInstr.DAQState == DAQInstrState.HVCalib) // we are not taking data.
            {
                String received = LMMMComm.NonDataResponse(e.Buffer, e.Offset, e.BytesTransferred);

                if (activeInstr.IsNew())
                {
                    string iname = String.Empty;
                    string type  = InstrType.LMMM.ToString();
                    LMMMComm.SplitBroadcastResponse(received, ref type, ref iname, ref activeInstr.id.version);
                    activeInstr.id.DetectorId = iname;
                    activeInstr.id.SetSRType(type);
                    gControl.collog.TraceInformation("The new instrument is " + LMLoggers.LognLM.FlattenChars(received));
                    gControl.collog.TraceInformation(Instruments.All.Count + " instrument(s) online");
                    activeInstr.selected = true;  // this should only be set if there is no UI
                    CurState.State       = DAQInstrState.Online;
                    gControl.FireEvent(EventType.ActionPrep, gControl);
                }
                else
                {
                    // slow parsing in this section is fine because data collection is not occurring
                    LMComm.LMMMLingo.Tokens response = LMMMComm.ResponseMatchPrefix(received);
                    if (response == LMComm.LMMMLingo.Tokens.cstatus) //  it is a status readback
                    {
                        LMMMComm.SplitCStatusResponse(received, ref activeInstr.lmstatus);
                        gControl.collog.TraceInformation(
                            "cStatus for LM {0}:{1} is dbg:{2}, leds:{3}, input:{4}, HVset:{5}, HV:{6}, LLD Max:{7}, LLD:{8}, (u1:{9})",
                            Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId, activeInstr.lmstatus.debug, activeInstr.lmstatus.leds, activeInstr.lmstatus.inputPath, activeInstr.lmstatus.setpoint, activeInstr.lmstatus.hv,
                            activeInstr.lmstatus.MaxLLD, activeInstr.lmstatus.LLD, activeInstr.lmstatus.u1);
                    }
                    else if (response == LMComm.LMMMLingo.Tokens.hvread) // it is a hv readback
                    {
                        int hv = 0;
                        LMMMComm.SplitHVReadResponse(received, ref hv);
                        gControl.collog.TraceInformation("HVread {0} volts for LM {1}:{2}", hv,
                                                         Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId);
                    }
                    else if (response == LMComm.LMMMLingo.Tokens.hvcalib) // it is a hv calibration point
                    {
                        HVControl.HVStatus hvst = new HVControl.HVStatus();
                        LMMMComm.SplitHVCalibResponse(received, ref hvst);
                        gControl.AppendHVCalibration(hvst);
                        gControl.collog.TraceInformation("HVcalib for LM {0}:{1} is [setpt:{2}, read:{3},  . . .]",
                                                         Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId, hvst.HVsetpt, hvst.HVread);
                        gControl.StepHVCalibration();
                    }
                    else if (response == LMComm.LMMMLingo.Tokens.rates) // it is a rates response
                    {
                        RatesStatus p = new RatesStatus();
                        LMMMComm.SplitRatesReadResponse(received, ref p);
                        gControl.collog.TraceInformation("Rates {0} on LM {1}:{2}", p.ToString(),
                                                         Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId);
                    }
                    else if (response == LMComm.LMMMLingo.Tokens.power) // it is a power status
                    {
                        PowerStatus p = new PowerStatus();
                        LMMMComm.SplitPowerReadResponse(received, ref p);
                        gControl.collog.TraceInformation("Power AC {0}, Batt {1}, Batt Level {2} on LM {3}:{4}", p.ACPresent, p.batteryPresent, p.batterylevelPct,
                                                         Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId);
                    }
                    else if (response == LMComm.LMMMLingo.Tokens.lld) // LLD status
                    {
                        int lld = 0;
                        LMMMComm.SplitLLDReadResponse(received, ref lld);
                        gControl.collog.TraceInformation("LLD {0} on LM {1}:{2}", lld,
                                                         Instruments.Active.IndexOf(activeInstr), activeInstr.id.DetectorId);
                    }
                    else // RR: this could be binary data if you cancel an assay and linux is sending a buffer.
                    // RR: this is a large amount of data and we don't want it displayed.
                    // tbd RR: figure out how to turn this back on when data is finished dumping.
                    {
                        if (verbose)
                        {
                            PacketLogSLOW(activeInstr, e);
                        }
                    }
                }
                if (verbose)
                {
                    gControl.collog.Flush();
                }
            }
        }
Exemplo n.º 23
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        static void SL_ClientConnected(object sender, SocketAsyncEventArgs e)
        {
            connections = Interlocked.Increment(ref connections);
            Socket s = e.UserToken as Socket;
            System.Net.IPEndPoint ep = (System.Net.IPEndPoint)s.RemoteEndPoint;

            gControl.collog.TraceInformation("New Connection : " + s.RemoteEndPoint.ToString());

            LMInstrument lmi = new LMInstrument(e, ep.Port);
            Instruments.All.Add(lmi);
            // dev note: need a parallel entry in the counting parameters map on the enclosing Measurement for each instrument and it's SR params class instance

            // get the status of the instrument
            LMMMComm.FormatAndSendLMMMCommand(LMComm.LMMMLingo.Tokens.cstatus, 0, Instruments.Active.RankPositionInList(lmi));
        }
Exemplo n.º 24
0
        private void OKBtn_Click(object sender, EventArgs e)
        {
            if (hvp.modified)
            {
                DialogResult = DialogResult.OK;
                HVCalibrationParameters c = NC.App.DB.HVParameters.Get(det.Id.DetectorName);
                if (c != null)
                {
                    c.Copy(hvp);  // copy changes back to original on user affirmation
                }
                else
                {
                    c = hvp;
                    NC.App.DB.HVParameters.GetMap().Add(det, c);
                }
                NC.App.DB.HVParameters.Set(det, c);
                // dev note: LM HV vals on LM Acquire record, but SR uses separate DB table so move HV vals so unify the scheme
            }
            else
            {
                DialogResult = DialogResult.Ignore;
            }

            acq.data_src = ConstructedSource.Live;
            if (OpenInExcel.Checked != acq.lm.HVX)
            {
                acq.lm.HVX = OpenInExcel.Checked;
                NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
            }

            // The acquire is set to occur, build up the measurement state
            Integ.BuildMeasurement(acq, det, AssaySelector.MeasurementOption.unspecified);
            NC.App.Opstate.Measurement.Detector.Id.source = ConstructedSource.Live;
            if (acq.modified)
            {
                INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                NC.App.DB.AddAcquireParams(sel, acq);  // it's a new one, not the existing one modified
            }

            UIIntegration.Controller.file = false; // make sure to use the DAQ controller, not the file controller
            NC.App.AppContext.FileInput   = null;  // reset the cmd line file input flag
            Instrument instrument = null;

            if (NC.App.Opstate.Measurement.Detector.ListMode)
            {
                if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.PTR32)
                {
                    instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detector);
                }
                else if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.MCA527)
                {
                    instrument = new MCA527Instrument(NC.App.Opstate.Measurement.Detector);
                    ((Analysis.MCA527ProcessingState)instrument.RDT.State).writingFile = false;                      // force this
                }
                else if (NC.App.Opstate.Measurement.Detector.Id.SRType == InstrType.LMMM)
                {
                    instrument = new LMInstrument(NC.App.Opstate.Measurement.Detector);
                }
                instrument.DAQState = DAQInstrState.Offline;
                instrument.selected = true;
                instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));
                if (!Instruments.Active.Exists(i => instrument.id.Equals(i.id)))
                {
                    Instruments.Active.Add(instrument);
                }
            }
            else
            {
                instrument          = new SRInstrument(NC.App.Opstate.Measurement.Detector);
                instrument.selected = true;
                instrument.Init(null, null);
                if (!Instruments.Active.Exists(i => instrument.id.Equals(i)))
                {
                    Instruments.All.Add(instrument);                     // add to global runtime list
                }
            }

            UIIntegration.Controller.SetHVCalib(); // tell the controller to do an HV operation using the current measurement state
            UIIntegration.Controller.Perform();    // start the HV DAQ thread


            Close();
        }
Exemplo n.º 25
0
        /// <summary>
        /// Prepare a detector for live assay/HV by adding it to the active list.
        /// </summary>
        /// <param name="det"></param>
        public static void ActivateDetector(Detector det)
        {
            if (det.Id.SRType.IsSocketBasedLM())
            {
                if (det.Id.SRType == InstrType.LMMM)
                {
                    LMInstrument lm = new LMInstrument(det);
                    lm.DAQState = DAQInstrState.Offline;
                    lm.selected = false;  //must broadcast first to get it selected
                    if (!Instruments.All.Contains(lm))
                        Instruments.All.Add(lm); // add to global runtime list
                }
                else if (det.Id.SRType == InstrType.MCA527)
                {
                    MCA527Instrument mca = new MCA527Instrument(NC.App.Opstate.Measurement.Detector);
                    mca.DAQState = DAQInstrState.Offline;
                    mca.selected = true;
                    if (!Instruments.Active.Contains(mca))
                        Instruments.Active.Add(mca);
                }
                else
                {
                    // LMMM and MCA-527 are the only socket-based devices supported
                }
            }
            else if (det.Id.SRType.IsUSBBasedLM())
            {
                Ptr32Instrument ptr = new Ptr32Instrument(det);
                ptr.RDT.ResetRawDataBuffer();  // poor design recovery patch
                ptr.RDT.SetLMStateFlags(((LMConnectionInfo)(ptr.id.FullConnInfo)).NetComm);

                ptr.DAQState = DAQInstrState.Offline; // USB-based devices are manually initiated as opposed to auto-pickup
                if (!Instruments.All.Contains(ptr))
                    Instruments.All.Add(ptr); // add to global runtime list
            }
        }
Exemplo n.º 26
0
        private void OKBtn_Click(object sender, EventArgs e)
        {
            if (hvp.modified)
            {
                DialogResult = System.Windows.Forms.DialogResult.OK;
                HVCalibrationParameters c = NC.App.DB.HVParameters.Get(det.Id.DetectorName);
                if (c != null)
                {
                    c.Copy(hvp);  // copy changes back to original on user affirmation
                }
                else
                {
                    c = hvp;
                    NC.App.DB.HVParameters.GetMap().Add(det, c);
                }
                NC.App.DB.HVParameters.Set(det, c);
                // dev note: LM HV vals on LM Acquire record, but SR uses separate DB table so move HV vals so unify the scheme
            }
            else
            {
                DialogResult = System.Windows.Forms.DialogResult.Ignore;
            }

            // The acquire is set to occur, build up the measurement state
            Integ.BuildMeasurement(acq, det, AssaySelector.MeasurementOption.unspecified);

            if (acq.modified)
            {
                INCCDB.AcquireSelector sel = new INCCDB.AcquireSelector(det, acq.item_type, DateTime.Now);
                acq.MeasDateTime = sel.TimeStamp; acq.lm.TimeStamp = sel.TimeStamp;
                NC.App.DB.AcquireParametersMap().Add(sel, acq);  // it's a new one, not the existing one modified
                NC.App.DB.UpdateAcquireParams(acq, det.ListMode);
            }

            UIIntegration.Controller.file = false; // make sure to use the DAQ controller, not the file controller
            NC.App.AppContext.FileInput   = null;  // reset the cmd line file input flag
            if (NC.App.Opstate.Measurement.Detectors[0].ListMode)
            {
                if (NC.App.Opstate.Measurement.Detectors[0].Id.SRType == InstrType.PTR32)
                {
                    Ptr32Instrument instrument = new Ptr32Instrument(NC.App.Opstate.Measurement.Detectors[0]);
                    instrument.DAQState = DAQInstrState.Offline;
                    instrument.selected = true;
                    instrument.Init(NC.App.Logger(LMLoggers.AppSection.Data), NC.App.Logger(LMLoggers.AppSection.Analysis));

                    if (!Instruments.Active.Contains(instrument))
                    {
                        Instruments.Active.Add(instrument);
                    }
                }
                else
                {
                    // if ok, the analyzers are set up, so can kick it off now.
                    LMInstrument lm = new LMInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                    lm.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                    lm.selected = false;                 //must broadcast first to get it selected
                    if (!Instruments.All.Contains(lm))
                    {
                        Instruments.All.Add(lm); // add to global runtime list
                    }
                }
            }
            else
            {
                SRInstrument sri = new SRInstrument(NC.App.Opstate.Measurement.Detectors[0]);
                sri.selected = true;
                sri.Init(null, null);
                if (!Instruments.All.Contains(sri))
                {
                    Instruments.All.Add(sri); // add to global runtime list
                }
            }

            UIIntegration.Controller.SetHVCalib(); // tell the controller to do an HV operation using the current measurement state
            UIIntegration.Controller.Perform();    // start the HV DAQ thread


            this.Close();
        }
Exemplo n.º 27
0
		/// <summary>
        /// Prepare a detector for live assay/HV by adding it to the active list.
        /// </summary>
        /// <param name="det"></param>
        public static void ActivateDetector(Detector det)
        {
            if (det.Id.SRType.IsSocketBasedLM())
            {
                LMInstrument lm = new LMInstrument(det);
                lm.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                lm.selected = false;  //must broadcast first to get it selected
                if (!Instruments.All.Contains(lm))
                    Instruments.All.Add(lm); // add to global runtime list
            }
            else if (det.Id.SRType.IsUSBBasedLM())
            {
                Ptr32Instrument ptr = new Ptr32Instrument(det);
                ptr.DAQState = DAQInstrState.Offline; // these are manually initiated as opposed to auto-pickup
                if (!Instruments.All.Contains(ptr))
                    Instruments.All.Add(ptr); // add to global runtime list
            }
        }