Building EPICS Environment on Windows and Example Usage of CA.DLL

Total Page:16

File Type:pdf, Size:1020Kb

Building EPICS Environment on Windows and Example Usage of CA.DLL Building EPICS Environment on Windows and Example Usage of CA.DLL Takashi OBINA Takashi NOGAMI Photon Factory, KEK Outline ● Time Table ● 30min : Talk ● 30min : Hands-on ● bulid example Application on Windows ● 30min : Demo with Visual Basic ● Table of Contents ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic TOC ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic CA Client/Server on Windows ● CA Client ● Advantage ● Rapid application development tool ● Debugger ● Disadvantage ● Cost? ● Stability? ● CA Server ● How to control from remote host? ● Stability? ● Windows update? ● Security? CA Client/Server on Windows (cont.) ● This is my opinion: ● LabView? ● I don't want to relay upon 1 Product / 1 Company ● VC?, Version, security, long term stability of PC ● If you use 1 PC for control, LabView is a good soluti on, however ....... If you want to compare the data to another parameters, such as beam charge, beam p osition, vacuum pressure, etc... ● If you are a good programmer and can do everythin g by youself, and no need to communicate with othe r person/groups, there are less reason to adopt EPI CS TOC ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic What is your favorite environment? ● cygwin ● Unix like environment, GNU tools ● Easy-to-use installation tool is available ● X-window emulator included ● http://www.cygwin.com/ ● Microsoft ● Visual C++6.0, Visual C .NET, Visual Studio 2005 ● MinGW ● Minimalist GNU for Win32 ● Free GNU C compiler + ● http://www.mingw.org/ ● Borland C++ ● http://www.borland.com/ Microsoft Visual C++ selection ● 3 versions ● Visual C++ 6.0 : VC6 ● Visual C++ .NET : VC7 ● Visual Studio .NET : VC8 ● Default compiler for EPICS : VC7 ● VC6 / VC8 also works. ● VC8 not tested well, however ● Today's talk ● Visual Studio .NET "Express Edition" ● Download / Install from Microsoft Web site ● FREE ● In your PC, "VC6" is already installed Environment Setup -- Prebuild(1) ● Install "Visual Studio 2005 Express Edition" ● Visual C++ 2005 Express Edition ● Visual Basic 2005 Express Edition ● Windows Platform SDK ● GNU make ● GNU http://www.gnu.org/ ● cygwin gmake ● perl ● CPAN ● Active Perl (http://www.activestate.com/) ● cygwin perl It is possible to use cygwin, however, I tried to build EPI CS without cygwin environenet today. (Because if you alread y installed cygwin, you can build EPICS inside cygwin envir onment. It is relatively easier than VC6.) Today, I build CA.DLL and CA.LIB using MSVC. Setup – Prebuild (2) ● Check PATH ● perl, make must be included in your PATH. C:\obina>perl -v This is perl, v5.8.8 built for MSWin32-x86-multi-thread (with 25 registered patches, see perl -V for more detail) ... C:\obina>make -v GNU Make 3.80 Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Setup -- Prebuild (3) : Optional ● Directory Structure Example ● EPICS --> C:\VECC\base3.14.8.2 ● Create .BAT file for VC and EPICS (only for co nvenience) ● %SystemRoot%\system32\cmd.exe /K "C:\vecc\epic s\DevEnv.bat" set EPICS_HOST_ARCH=win32-x86 set EPICS_BASE=C:\VECC\base-3.14.8.2 set EPICS_BIN=%EPICS_BASE%\bin\%EPICS_HOST_ARCH% set EPICS_CA_ADDR_LIST=172.xxx.yyy.255 set EPICS_CA_AUTO_ADDR_LIST=NO set PATH=%EPICS_BIN%;%PATH% "%VS80COMNTOOLS%vsvars32.bat" After the successful build of EPICS: You should set the environment variable (EPICS_CA..., etc) with Control Panel -> System -> Detail -> Environment Variables TOC ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic Building EPICS base (1) ● Download from http://www.aps.anl.gov/epics/ ● At first, please read documentation carefully. ● Using the "Latest" version is important !!! ● Many number of bug fixes are exist in Windows port. ● I personally felt that....Linux port was relatively stable and easy...but now, things are getting better. ● Expand to some directory ● For example C:\VEEC\base-3.14.8 ● Edit : CONFIG_SITE.win32-x86.win32-x86 ● in %EPICS_BASE%\configure\os ● Edit : CONFIG_SITE, CONFIG_SITE_ENV ● in %EPICS_BASE%\configure\ make! for VC6 ● you must modify some files ● I will explain the detail procedure in the last pa rt of this file... ● please forget for a while. ● EPICS base are already build and installed in your PC. EPICS base Build (2) ● Check ● Binary file, Environment Variables ● EPICS_BASE = C:\pf\epics\base-3.14.8.2cvs ● %EPICS_BASE%\bin\win32-x86 ● %EPICS_BASE%\lib\win32-x86 ● %PATH% include "bin" directory? ● Execute "excas" in bin directory ● example record : jane, fred, freddy, etc ● caget ● camonitor ● If you've got an error: ● security setting (Firewall of Windows, Norton, etc) ● You MUST be connected to network ● check environment variable ● EPICS_CA_ADDR_LIST ● EPICS_CA_AUTO_ADDR_LIST Useful command-line Tool (General) ● Show network port statistics ● netstat -a ● netstat -o : Windows XP ● netstat -b : WinXP SP2 ● tasklist , taskkill : Win XP Pro ● Use "grep" on Linux, "findstr" on Windows ● Linux: netstat -a | grep 5064 ● Win: netstat -a | findstr 5064 set | findstr EPICS findstr /i <---- ignore case findstr /s <---- search subdir ● Find a file in sub-directory ● example: dir /s makeBase* ● Command line suppliment ● Cursor, <F8>, <F7> TOC ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic EPICS Application ● Create EPICS Application ● makeBaseApp.pl makeBaseApp.pl -h :show help makeBaseApp.pl -l : list application types Example 1 makeBaseApp.pl -t example example makeBaseApp.pl -i -t example example make cd iocBoot\iocexample ..\..\bin\win32-x86\example st.cmd Example 2 makeBaseApp.pl -t caClient caex make EPICS Application (2) ● Execute "example.exe st.cmd" (prev. page) ● Open a new cmd window ● test caget/caput ● caget fooHost:aiExample ● camonitor fooHost:aiExample ● caput fooHost:xxxExample ● In order to create command-line program, use "makeBaseApp.pl" and check the source code is easy way. ● To create GUI, IDE of Visual C is possible ● Visual Basic / Delphi / C++ Builder is also OK Hands-on 1 ● Open a command window ● Check environment C:\> cd \ C:\> set | more C:\> set | findstr /i epics C:\> make -v C:\> perl -v C:\> cl Hands-on 2 ● Create an Example Application C:\> cd \ C:\> mkdir group1 <--- replace by your groupname C:\> cd group1 C:\group1> makeBaseApp.pl -t example myexample C:\group1> makeBaseApp.pl -i -t example myexample C:\group1> make ..... wait for a while ..... C:\group1> cd iocBoot\iocmyexample C:\group1\iocBoot\iocmyexample> notepad st.cmd ..... edit "st.cmd" ..... dbLoadRecords("db/dbExample1.db","user=lenovoHost") replace dbLoadRecords("db/dbExample1.db","user=group1") C:\group1\**\> ..\..\bin\win32-x86\example.exe st.cmd ..... open another cmd window, try caget, camonitor TOC ● CA Client/Server on Windows? ● Requirement, Prebuild setup ● Getting EPICS source code ● Build EPICS base ● How to create EPICS application on Windows ● How to use CA.DLL from Visual Basic How to use CA.DLL ● Dynamic-Link Library (DLL) ● Microsoft's implementation of the shared library conc ept in the Microsoft Windows operating systems ● In Linux or other UNIX-like operating systems, .so o r .sl file extensions are used ● Demo: caClient by Visual Basic ● Procedure ● create an interface file ● design form (place Button, Label, Timer, etc) ● assign event ● execute ● add some functionalities ? Interface file for CA.DLL / Com.DLL ● EXCUSE: not full-functional..... ● Convenient Tool : "dependency walker" ● Interface file "modCA.vb" Example ( written in 1 line in the program ) Public Declare Function ca_array_get : Declare "ca_array_get" Lib "ca.dll" : in "CA.DLLt" Alias "_ca_array_get@16" : exported as _ca_array.... (ByVal chtype As Integer, ByVal count As Integer, ByVal chanId As Integer, : To check file type, args, ByRef pValue As Any) As Integer : please read "cadef.h" "As Any" is NOT allowed in Visual Studio 2005 CA client example : Visual Basic 2005 ● Example : caget ● This example is not good! Only an example. ● Please use CA monitor for REAL application.... CA client in C ● caExample.c (simplified) ● Please refer to "How to write CA client" doc. ● makeBaseApp.pl -t caClient clientex #include "cadef.h" int main(int argc,char **argv) { double data; chid mychid; ca_context_create(ca_disable_preemptive_callback); ca_create_channel("recname",NULL,NULL,10,&mychid); ca_pend_io(5.0); ca_get(DBR_DOUBLE,mychid,(void *)&data); ca_pend_io(5.0); printf("%s %f\n",argv[1],data); return(0); } CA client example : Visual Basic 2005 ● Execute IDE ● Create New Project -> Windows Application ● Create New Form ● Place Button, Labe, Timer ● Add "modCA.vb" in the project ● Assign Event ● Form1_Load status = ca_context_create (ca_preemptive_callback_select.ca_disable_preemptive_callback) status = ca_create_channel("recn", 0, 0, CA_PRIORITY_DEFAULT, pCh) status = ca_pend_io(5.0) ● Timer1_Tick status = ca_array_get(DBR_DOUBLE, 1, pCh,
Recommended publications
  • Development of the Software Tools Using Python for Epics-Based Control System T
    TPPA16 Proceedings of ICALEPCS07, Knoxville, Tennessee, USA DEVELOPMENT OF THE SOFTWARE TOOLS USING PYTHON FOR EPICS-BASED CONTROL SYSTEM T. T. Nakamura, K. Furukawa, J-I. Odagiri, N. Yamamoto, KEK, Tsukuba, Ibaraki, Japan Abstract Basic functions of CA are get, put, and monitor In the commissioning phase of accelerators, many operations. List 1 shows an example of get operation of application programs are built and modified frequently by Python-CA. Module name of Python-CA is “ca”, which nonexpert programmers. Scripting language such as appears in import statement. Python is suitable for such quick development. Since List 1: Example of Python-CA (get operation) EPICS Channel Access interface library in Python was import ca developed in KEKB accelerator control system, many programs has been written in Python. We have been chan = ca.channel("channel_name") developing, providing some tools and libraries for Python chan.wait_conn() programming. Some of the recent developments in KEK chan.get() are reported, and possible applications are also discussed. ca.pend_event(1.0) value = chan.val INTRODUCTION KEKB is an asymmetric electron-positron collider at 8 Simple-CA library × 3.5 GeV/c, which is dedicated to B-meson physics. Its While Python-CA provides powerful functions of CA operation was started in December 1998. The KEKB client library, most people still feels complexity for CA accelerators control system has been constructed based on programming. List 1 show that even for single get EPICS (Experimental Physics and Industrial Control operation it needs 4 function (or method) calls. System) tool kit [1]. EPICS provides core mechanism for We have also developed Simple-CA library, which is a the distributed control system.
    [Show full text]
  • Pure Labview Implementation of EPICS Communication Protocol
    Pure LabVIEW Implementation of EPICS Communication Protocol Alexander Zhukov Spallation Neutron Source, ORNL NIWeek 2012 Managed by UT-Battelle for the Department of Energy What is EPICS Experimental Physics and Industrial Control System (EPICS) is a set of Open Source software tools, libraries and applications developed collaboratively and used worldwide to create distributed soft real-time control systems for scientific instruments such as a particle accelerators, telescopes and other large scientific experiments. Major collaborators – ANL – LANL – ORNL (SNS) – SLAC (SSRL, LCLS) – JLAB (CEBAF) – DESY – BESSY – PSI (SLS) – KEK Runs on variety of hardware/OS (Linux, VxWorks, Windows, Mac, RTEMS…) 2 Managed by UT-Battelle for the Department of Energy How EPICS works A network based fully distributed client/server model Client and server use Channel Access (CA) protocol to communicate Everything spins around process variables (PV) – an entity similar to LabVIEW network shared variable – A server (Input Output Controller – IOC) publishes data by updating PVs – PV corresponds to some value (measurement, setting, status etc) – Every PV has unique name – Client has ways to read PVs and update them over network – Client can subscribe to particular PV and monitor its value or state without polling it Standard EPICS server also has records processing mechanism – Control logic is programmed in records definition file – Allows perform routine tasks without explicitly programming in C – In addition to value every record has also status (OK,
    [Show full text]
  • EPICS Application Developer's Guide
    1 EPICS Application Developer’s Guide EPICS Base Release 3.15.0.2 17 October 2014 Andrew N. Johnson, Janet B. Anderson, Martin R. Kraimer (Argonne National Laboratory) W. Eric Norum (Lawrence Berkeley National Laboratory) Jeffrey O. Hill (Los Alamos National Laboratory) Ralph Lange, Benjamin Franksen (Helmholtz-Zentrum Berlin) Peter Denison (Diamond Light Source) 2 Contents EPICS Applications Developer’s Guide1 Table of Contents 7 1 Introduction 9 1.1 Overview.................................................9 1.2 Acknowledgments............................................ 11 2 Getting Started 13 2.1 Introduction................................................ 13 2.2 Example IOC Application........................................ 13 2.3 Channel Access Host Example...................................... 15 2.4 iocsh.................................................... 16 2.5 Building IOC components........................................ 16 2.6 makeBaseApp.pl............................................. 19 2.7 vxWorks boot parameters......................................... 22 2.8 RTEMS boot procedure.......................................... 23 3 EPICS Overview 25 3.1 What is EPICS?.............................................. 25 3.2 Basic Attributes.............................................. 26 3.3 IOC Software Components........................................ 26 3.4 Channel Access.............................................. 28 3.5 OPI Tools................................................. 30 3.6 EPICS Core Software..........................................
    [Show full text]
  • EPICS at Fermilab: Not Just D0 Anymore - Cavities, Cavities, Cavities
    EPICS at Fermilab: Not just D0 anymore - Cavities, Cavities, Cavities Geoff Savage for the Dzero and ILCTA controls groups Wed June 14, 2006 EPICS Collaboration Meeting Current EPICS Projects Run II Experiments D0 Controls. ILC Test Accelerator (ILCTA) @ FNAL Cavity testing in three facilities, maybe a fourth Horizontal Test Facility/Coupler conditioning (MDB) Run tests in August 2006 Vertical Test Facility (IB1) Getting started Beam test (NML) using photoinjector currently at A0 Preparing facility - cryo installed at the end of 2007 Other Proton Driver – EPICS only control system Nova – Seriously evaluating EPICS as control system for DAQ. Maybe also for controls itself? 6/14/2006 EPICS Collaboration Mtg 2 D0 Detector Increased luminosity in Run IIb Just finished detector upgrade Silicon layer 0 Enhanced triggering systems Goals for controls Support new field busses Remove 68k processors from system Move to EPICS 3.14.8.2 Controls - all EPICS all the time DAQ controls are independent 6/14/2006 EPICS Collaboration Mtg 3 D0 Controls Two new field buses CANbus driver wrapped in ASYN TPMC816 - dual channel PMC CANbus module Implements limited CANbus feature set Raw ethernet driver in ASYN Linux IOC connected via fiber to remote crate Trying to get to 3.14.8.2 Tested but not deployed Currently using 3.14.6 and 3.13.4 MVME5500 processors Remove remaining 68k processors ~ 25 Some problems - similar experiences? 6/14/2006 EPICS Collaboration Mtg 4 ILCTA Controls Systems ACNET (FNAL) Accelerator Division Drivers/interfaces for FNAL devices already written and in use at Fermilab in ILCTA (HRM) EPICS (ANL) Cryogenics interface for MDB and NML.
    [Show full text]
  • REALIZATION of LINUX PLATFORM in DISTRIBUTED CONTROL SYSTEM by EPICS at BEPCII Zhuo Zhao, C.H.Wang, Ge Lei, J.J.Zhao, K.J.Yue, Jia Liu, IHEP, Beijing, China
    Proceedings of ICALEPCS2003, Gyeongju, Korea REALIZATION OF LINUX PLATFORM IN DISTRIBUTED CONTROL SYSTEM BY EPICS AT BEPCII Zhuo Zhao, C.H.Wang, Ge Lei, J.J.Zhao, K.J.Yue, Jia Liu, IHEP, Beijing, China Abstract also has friendly operating interface and it supports IHEP will begin the BEPCII project that has been software transplanting. funded by the Chinese Government in order to further At present, Red Hat Linux has developed release 9. So I upgrade the BEPC (Beijing Electron Positron Collider) select the latest release-Red Hat Linux 9 as the operating which has operated since 1989 [1]. As a part of this system that is installed on PC [4]. updating project, control system is decided to use EPICS The installing of ftp server and downloading of [2]. EPICS IOCs can run on many kinds of operating systems [3], for example VxWorks, Unix, Linux, VxWorks kernel Windows, RTEMS and so on. Based on the idea of After the Red Hat Linux 9 has been installed on one creating EPICS OPI on Linux and downloading real-time PC, ftp server should be also installed and started. The ftp database to VME IOC target board, this article is mainly server that I select is vsftpd whose “.rpm” instalation file about how to setup EPICS base and EPICS extension on is included in the Red Hat Linux 9’s installation Linux operating system and furthermore how to finish CDROM. communication between server and Linux control The VxWorks boot file should be in the special platform. In order to come into being a friendly directory in order to download VxWorks kernel.
    [Show full text]
  • Building EPICS Software
    Building EPICS Software Andrew Johnson and Tim Mooney AES/SSG Outline ■ Build Base 3.14.12.5 ● Architectures: Linux, VxWorks ● Test by creating the makeBaseApp example ■ Build Extensions ● Build msi, MEDM, StripTool ■ Build Support Modules ● Sequencer, Asyn ■ Build synapps 5.8 ■ Build xxx as separate top 03/16/15 Base 3.14.12.5 ■ Actually Base 3.14.12.5-rc1 since the final release is not yet out ■ Website: http://www.aps.anl.gov/epics/base/R3-14/12.php ■ Download: http://www.aps.anl.gov/epics/download/base/baseR3.14.12.5-rc1.tar.gz ■ Prerequisites: GNU Make, Perl, C and C++ compilers (GCC) ● Many Linux distributions install these by default or as a single ● Optional: GNU readline developer package, recommended □ RPM: readline-devel DEB: libreadline-dev 03/16/15 Extensions ■ Extensions Configure files (R3.14) ● Website: http://www.aps.anl.gov/epics/extensions/configure/index.php ● Download: http://www.aps.anl.gov/epics/download/extensions/extensionsTop_20120904.tar.gz ● Prerequisites: EPICS Base ■ MSI – Macro Substitution and Include ● Website: http://www.aps.anl.gov/epics/extensions/msi/index.php ● Download: http://www.aps.anl.gov/epics/download/extensions/msi1-6.tar.gz ● Prerequisites: Extensions Configure 03/16/15 Extensions: Motif Clients ■ MEDM ● Website: http://www.aps.anl.gov/epics/extensions/medm/index.php ● Download: http://www.aps.anl.gov/epics/download/extensions/medm3_1_9.tar.gz ● Prerequisites: Developer packages for OpenMotif, libXmu, libXp, libXpm, libXext, libX11 □ DEB: libmotif-dev, x11proto-print-dev, libxmu-dev, libxp-dev,
    [Show full text]
  • Matlab Objects for Epics Channel Access
    Proceedings of ICALEPCS2013, San Francisco, CA, USA MOPPC146 MATLAB OBJECTS FOR EPICS CHANNEL ACCESS J. Chrin, Paul Scherrer Institut, 5232 Villigen PSI, Switzerland Abstract • Improved CA reconnection management to ensure With the substantial dependence on MATLAB for appli- stability and robustness in every eventuality. cation development at the SwissFEL Injector Test Facility • Compilation on 64-bit Linux architectures. (SITF), the requirement for a robust and more extensive EPICS (Experimental Physics and Industrial Controls Sys- In the meantime and per contra, a new C++ CA inter- tem) Channel Access (CA) interface became increasingly face library, CAFE [9], has recently been developed in- imperative. To this effect, a new MATLAB Executable house that provided the required underlying functionality. (MEX) file has been developed around an in-house C++ Since CAFE further sought to act as a CA host library to CA interface library (CAFE), which serves to expose com- scripting and domain-specific languages, the development prehensive control system functionality to within the MAT- of bindings to MATLAB presented itself as a natural exten- LAB framework. Immediate benefits include support for sion. To achieve this necessitated gaining knowledge and all MATLAB data types, a richer set of synchronous and experience in the use of the MATLAB C Application Pro- asynchronous methods, a further physics oriented abstrac- gramming Interface (API). A dynamically loadable MAT- tion layer that uses CA synchronous groups, and compila- LAB Executable (MEX) file could then be constructed that tion on 64-bit architectures. An account of the MOCHA would allow CAFE routines to be called from within the (MATLAB Objects for CHannel Access) interface is pre- MATLAB framework, in the same manner as MATLAB sented.
    [Show full text]
  • Argonne Slides
    Using APS iocappsTools Andrew Johnson, AES-SSG Outline ■ What are the iocappsTools ■ APS Accelerator IOC standards ● asdstd Support Module ● IRMIS and AOIs ■ Tools covered in this lecture ● iocHelp ● iocConsole ● capr and pvExist ● iocBoot, iocBootChange ● iocBsp, iocModules, iocFindSupport ● pvUsage ● iocNetwork ● iocErrorLog ● aoiExist and aoiMedm APS EPICS Training — 2015-03-27 — Using APS iocappsTools 2 The iocappsTools ■ EPICS Extension ■ Provides scripts for querying, configuring and interacting with IOCs ■ Most were designed for the APS Accelerator IOCs ● IOCs must use the asdStd module to provide data for the scripts to use ● Scripts rely on the /usr/local/iocapps file-system layout, IRMIS database etc. □ The file-system path can often be changed by setting an environment variable ● In most cases operations can cover multiple IOCs APS EPICS Training — 2015-03-27 — Using APS iocappsTools 3 iocHelp ■ Alias for iocappsHelp ■ Prints a summary list of the other scripts and what they do tux% iocHelp iocapps tools: aoiExist Print AOI names containing a specified string or AOI names of an EPICS record containing a specified string aoiMedm Execute and/or list top medm displays for a specified AOI or for the AOI of a specified EPICS record capr A channel access version of "dbpr" caclients Displays information about local CA clients ctllog Information on the e-mail list-server used as the Controls Group "Knowledge Base" iocappsHelp List all iocapps tools iocBoot Print bootparams and bootlog messages iocBootChange Change vxWorks bootstrap
    [Show full text]
  • 1 Programming EPICS with PERL
    Outline • History Programming EPICS with • Quick Overview of Perl PERL • EPICS Overview • Channel Access (EZCA) Mohan Ramanathan • Perl interface to EZCA October 12, 2004 • Perl Applications • Current and Future Part of the EPICS “Getting Started” Lecture Series • Conclusions • Acknowledgments Argonne National Laboratory A U.S. Department of Energy 2 Office of Science Laboratory Office of Science Pioneering Office of Science U.S. Department of Energy Operated by The University of Chicago Science and U.S. Department Technology of Energy History History • Why Perl? • Perl is an easy language for WEB programming (CGI) Back in 1995/96 was looking for a language to use for various Needed an easy to program , yet powerful language to write applications code to interface to CA, SDDS and for writing CGI interface C was too cumbersome Needed a quick and easy to use, yet a powerful language • Object oriented Tcl/Tk was used at APS but was not properly suited for the • Easy to interface to other languages like C, C++, java etc.. applications I was interested in (mainly WEB interface) Easy to learn !! Perl has simple constructs and looks similar to C • Preexisting objects modules are available in abundance Numerous modules available in CPAN for graphics and GUI http://www.cpan.org pTK was already available for Perl in 1996 Interpreter based language means no compilation • Perl is free! Full programs can be generated easily with Perl • Great support and free! • Perl EZCA module was born in 1996 3 4 Pioneering Office of Science Pioneering Office of Science Science and U.S. Department Science and U.S.
    [Show full text]
  • Design and Development of EPICS Based RF Conditioning System for the High Power RF Components of Charged Particle Accelerators
    University of Tennessee, Knoxville TRACE: Tennessee Research and Creative Exchange Masters Theses Graduate School 8-2005 Design and Development of EPICS Based RF Conditioning System for the High Power RF Components of Charged Particle Accelerators S.M. Shajedul Hasan University of Tennessee - Knoxville Follow this and additional works at: https://trace.tennessee.edu/utk_gradthes Part of the Electrical and Computer Engineering Commons Recommended Citation Hasan, S.M. Shajedul, "Design and Development of EPICS Based RF Conditioning System for the High Power RF Components of Charged Particle Accelerators. " Master's Thesis, University of Tennessee, 2005. https://trace.tennessee.edu/utk_gradthes/1994 This Thesis is brought to you for free and open access by the Graduate School at TRACE: Tennessee Research and Creative Exchange. It has been accepted for inclusion in Masters Theses by an authorized administrator of TRACE: Tennessee Research and Creative Exchange. For more information, please contact [email protected]. To the Graduate Council: I am submitting herewith a thesis written by S.M. Shajedul Hasan entitled "Design and Development of EPICS Based RF Conditioning System for the High Power RF Components of Charged Particle Accelerators." I have examined the final electronic copy of this thesis for form and content and recommend that it be accepted in partial fulfillment of the equirr ements for the degree of Master of Science, with a major in Electrical Engineering. Mostofa K. Howlader, Major Professor We have read this thesis and recommend its acceptance: Yoon W. Kang, Michael J. Roberts, Paul B. Crilly Accepted for the Council: Carolyn R. Hodges Vice Provost and Dean of the Graduate School (Original signatures are on file with official studentecor r ds.) To the Graduate Council: I am submitting herewith a thesis written by S.M.
    [Show full text]
  • CA Client Programming in Perl and C
    CA Client Programming in Perl and C Andrew Johnson — AES/SSG, Argonne Includes material from: Ken Evans, Argonne Kay Kasemir, ORNL Task: Write a Channel Access client ■ Many possible approaches and choices of language ■ Assuming that you need more than you can do with ● MEDM/EDM/CaQtDm/EpicsQt display manager ● CSS/Boy with its rules and scripts ■ These are commonly used options ● Shell or Perl script that calls the caget/caput/camonitor programs ● Python program with PyEpics or EPICS Cothread bindings ● Matlab/Octave/Scilab with MCA or LabCA bindings ● State Notation Language (SNL) program with the Sequencer ● Perl program with CA bindings ● C++ program with EPICS Qt bindings ● Java program calling CAJ (pure Java) or JCA (JNI) ● C/C++ program calling CA library APS EPICS Training • Andrew Johnson • 2014-10-16 • CA Client Programming in Perl and C 2 SNL programs speak CA natively ■ This piece of SNL handles all the connection management and data type handling: ● double value; assign value to "fred"; monitor value; ■ Extend into a basic 'camonitor': ● evflag changed; sync value changed; ss monitor_pv { state check { when (efTestAndClear(changed)) { printf("Value is now %g\n", value); } state check } } APS EPICS Training • Andrew Johnson • 2014-10-16 • CA Client Programming in Perl and C 3 Quick Hacks, Simple Scripts ■ In many cases, scripts writen in bash/perl/python/php can just invoke the command-line ‘caget’ and ‘caput’ programs ■ Useful for reading/writing one or two PV values, not for subscribing to value updates ■ Quiz: Why would
    [Show full text]
  • Development of Epics Channel Access Embedded Activex Components for Gui Development
    WEPD25 Proceedings of PCaPAC2012, Kolkata, India DEVELOPMENT OF EPICS CHANNEL ACCESS EMBEDDED ACTIVEX COMPONENTS FOR GUI DEVELOPMENT A. Roy#, R. B. Bhole, S. Pal, VECC, Kolkata, India Abstract meet those custom requirements. Hence a methodology The paper describes the integration of Experimental was required to be devised to meet specific requirements Physics & Industrial Control System (EPICS) Channel of this heterogeneous system. Developing OPIs for Access (CA) protocol and Microsoft ActiveX technology Windows platform integrated with standard Windows towards developing a generalize operator interface (OPI) facilities, meeting user requirements, was the best option. building facility for Windows platform. EPICS is used as The development of OPIs for Windows platform involved the development architecture of the control system in selection of developmental tools among the popular ones Superconducting Cyclotron (SCC). Considering the e.g. Microsoft Visual C or Visual Basic or National operators’ familiarity and compatibility with third party Instrument’s LabVIEW, and Borland’s Delphi and C++ software, it was decided to use MS-Windows platform at Builder etc. The CA functionalities were to be operator interface level in SCC during commission. incorporated for data access by integrating the CA library Microsoft Visual Basic (VB) is used on trial basis as OPI with developmental tool. This method, however, required building platform to incorporate user specific features e.g. us to understand each development tool’s requirements file system access for data storage and analysis, user for accessing C language function calls and maintaining authentication at OPI level etc. A set of EPICS Channel this extra layer of code [2]. This results into longer Access embedded ActiveX components is developed to developmental time and larger coding with associated ease the programming complexity and reduce complexity, efforts for testing and debugging for developmental time of the OPI for Windows platform.
    [Show full text]