Compare commits
6 Commits
1.1-SNAPSH
...
marchtest
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d3da0087a | ||
|
|
f8e37ea18f | ||
|
|
b857c8f69c | ||
|
|
b3cfd12487 | ||
|
|
04dc3a18ba | ||
|
|
1702f2aceb |
@@ -5,3 +5,5 @@ doc
|
|||||||
include
|
include
|
||||||
documentation/html
|
documentation/html
|
||||||
./O.*
|
./O.*
|
||||||
|
configure/RELEASE.local
|
||||||
|
configure/CONFIG_SITE.local
|
||||||
|
|||||||
1
.hgtags
1
.hgtags
@@ -1,2 +1,3 @@
|
|||||||
459f10877e5628241704f31437b4cbd342df0798 test1
|
459f10877e5628241704f31437b4cbd342df0798 test1
|
||||||
6e8a22d01e824702088195c08bf50bfb6f293de5 1.0-BETA
|
6e8a22d01e824702088195c08bf50bfb6f293de5 1.0-BETA
|
||||||
|
d29d84f4c3f389f2accd497185b106c8541f95c9 1.1-SNAPSHOT
|
||||||
|
|||||||
@@ -17,17 +17,10 @@
|
|||||||
# RELEASE.$(EPICS_HOST_ARCH).$(T_A)
|
# RELEASE.$(EPICS_HOST_ARCH).$(T_A)
|
||||||
|
|
||||||
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top
|
TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top
|
||||||
|
|
||||||
#If using the sequencer, point SNCSEQ at its top directory:
|
|
||||||
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq
|
|
||||||
|
|
||||||
# EPICS_BASE usually appears last so other apps can override stuff:
|
|
||||||
#EPICS_BASE=/opt/epics/base
|
|
||||||
|
|
||||||
EPICS_BASE=/home/install/epics/base
|
EPICS_BASE=/home/install/epics/base
|
||||||
|
|
||||||
#Capfast users may need the following definitions
|
# Create a file RELEASE.local containing the
|
||||||
#CAPFAST_TEMPLATES=
|
# location of your EPICS_BASE, e.g.
|
||||||
#SCH2EDIF_PATH=
|
# EPICS_BASE=/home/install/epics/base
|
||||||
|
|
||||||
-include $(TOP)/configure/RELEASE.local
|
-include $(TOP)/configure/RELEASE.local
|
||||||
|
|||||||
@@ -25,14 +25,14 @@
|
|||||||
<!-- Maturity: Working Draft or Request for Comments, or Recommendation, and date. -->
|
<!-- Maturity: Working Draft or Request for Comments, or Recommendation, and date. -->
|
||||||
|
|
||||||
<h2 class="nocount" id="L50">EPICS v4 Working Group, Working Draft,
|
<h2 class="nocount" id="L50">EPICS v4 Working Group, Working Draft,
|
||||||
19-Dec-2011</h2>
|
20-Dec-2011</h2>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>This version:</dt>
|
<dt>This version:</dt>
|
||||||
<dd><a
|
<dd><a
|
||||||
href="http://epics-pvdata.sourceforge.net/pvDataCPP_20111219.html">pvDataCPP_20111219.html</a></dd>
|
href="http://epics-pvdata.sourceforge.net/pvDataCPP_20111220.html">pvDataCPP_20111220.html</a></dd>
|
||||||
<dt>Latest version:</dt>
|
<dt>Latest version:</dt>
|
||||||
<dd><a
|
<dd><a
|
||||||
href="http://epics-pvdata.sourceforge.net/pvDataCPP.html">pvDataCPP.html</a></dd>
|
href="http://epics-pvdata.sourceforge.net/pvDataCPP_20111220.html">pvDataCPP_20111220.html</a></dd>
|
||||||
<dt>Editors:</dt>
|
<dt>Editors:</dt>
|
||||||
<dd>Marty Kraimer, BNL</dd>
|
<dd>Marty Kraimer, BNL</dd>
|
||||||
</dl>
|
</dl>
|
||||||
@@ -40,19 +40,39 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h2 class="nocount" id="L72">Abstract</h2>
|
<h2 class="nocount" id="L72">Abstract</h2>
|
||||||
|
<p>pvDataCPP is the Java implementation of pvData, which is one of a related
|
||||||
|
set of products:</p>
|
||||||
|
<dl>
|
||||||
|
<dt><a
|
||||||
|
href="http://epics-pvdata.hg.sourceforge.net/hgweb/epics-pvdata/pvDataCPP/raw-file/tip/documentation/pvDataCPP.html">pvData</a></dt>
|
||||||
|
<dd>pvData (Process Variable Daata) defines and implements an efficent way
|
||||||
|
to store, access, and transmit memory resident structured data</dd>
|
||||||
|
<dt><a
|
||||||
|
href="http://epics-pvdata.hg.sourceforge.net/hgweb/epics-pvdata/pvAccessCPP/raw-file/tip/documentation/pvAccessCPP.html">pvAccess</a></dt>
|
||||||
|
<dd>pvAccess is network support for transmitting pvData.</dd>
|
||||||
|
<dt><a
|
||||||
|
href="http://epics-pvdata.hg.sourceforge.net/hgweb/epics-pvdata/pvIOCCPP/raw-file/tip/documentation/pvIOCCPP.html">pvIOC</a></dt>
|
||||||
|
<dd>A pvIOC is a network accessable smart real time database. The database
|
||||||
|
consists of memory resident records. Each record has a name that is
|
||||||
|
uniquie within the local area network and contains a top level pvData
|
||||||
|
structure. Each field of a record can optionally have support code
|
||||||
|
attached to it. The support is called when a request is made to process
|
||||||
|
the record. The support code is what makes the record "smart". A pvAccess
|
||||||
|
server is provided so that the records can be accesed via the network.
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
|
||||||
<p>pvData (Process Variable Data) defines and implements an efficent way to
|
<p>Each of the products has a Java and a C++ implementation.</p>
|
||||||
store, access, and transmit memory resident structured data.</p>
|
|
||||||
|
|
||||||
<p>This document describes the C++ implementation of EPICS v4 pvData.</p>
|
<p>The products are all part of the <a
|
||||||
|
href="http://epics-pvdata.sourceforge.net/">V4</a> implementation of <a
|
||||||
<p>For more information about the EPICS, please refer to the home page of the
|
href="http://www.aps.anl.gov/epics/">Experimental Physics and Industrial
|
||||||
<a href="http://www.aps.anl.gov/epics/">Experimental Physics and Industrial
|
|
||||||
Control System.</a></p>
|
Control System.</a></p>
|
||||||
|
|
||||||
|
|
||||||
<h2 class="nocount" id="L80">Status of this Document</h2>
|
<h2 class="nocount" id="L80">Status of this Document</h2>
|
||||||
|
|
||||||
<p>This is the 19-Dec-2011 version of the C++ implementation of pvData. It is a
|
<p>This is the 20-Dec-2011 version of the C++ implementation of pvData. It is a
|
||||||
complete implementation of pvData as currently defined. </p>
|
complete implementation of pvData as currently defined. </p>
|
||||||
|
|
||||||
<p>TODO</p>
|
<p>TODO</p>
|
||||||
@@ -67,7 +87,7 @@ complete implementation of pvData as currently defined. </p>
|
|||||||
|
|
||||||
<div class="toc">
|
<div class="toc">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#L50">EPICS v4 Working Group, Working Draft, 19-Dec-2011</a></li>
|
<li><a href="#L50">EPICS v4 Working Group, Working Draft, 20-Dec-2011</a></li>
|
||||||
<li><a href="#L72">Abstract</a></li>
|
<li><a href="#L72">Abstract</a></li>
|
||||||
<li><a href="#L80">Status of this Document</a></li>
|
<li><a href="#L80">Status of this Document</a></li>
|
||||||
<li><a href="#L100">Preface</a>
|
<li><a href="#L100">Preface</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user