Difference between revisions of "EventStore"

From GlueXWiki
Jump to: navigation, search
(Dependencies)
Line 20: Line 20:
 
* elementtree/cElementTree
 
* elementtree/cElementTree
  
 +
==How to Build HDDM Python Wrapper==
 +
 +
<pre>
 +
swig -python -c++ hddm.i
 +
g++ -fPIC -I/usr/include/python2.6 -I$HALLD_HOME/include -shared -o _hddm_r.so hddm_wrap.cxx libHDDM.a
 +
</pre>
 
==Legacy Documentation==
 
==Legacy Documentation==
  

Revision as of 17:47, 21 March 2014

Overview

EventStore is a system for storing and accessing data

Dependencies

  • MySQL/SQLite
  • epydoc
  • fpconst (?)
  • pysqlite - need to port to built-in sqlite bindings (sqlite3)
  • MySQL-python (MySQLdb)
  • SOAPpy - subdeps: setuptools, wstools

For Metadata DB:

  • CherryPy
  • SQLAlchemy
  • elementtree/cElementTree

How to Build HDDM Python Wrapper

swig -python -c++ hddm.i
g++ -fPIC -I/usr/include/python2.6 -I$HALLD_HOME/include -shared -o _hddm_r.so hddm_wrap.cxx libHDDM.a

Legacy Documentation