{ "info": { "author": "Caleb Fangmeier", "author_email": "caleb@fangmeier.tech", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: MIT License", "Operating System :: Unix", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.6" ], "description": "# lhe2sqlite\nSimple utility to convert LesHouchesEvents files to a sqlite database\n\n## Setup\n\nTo run, simply install the package\n\n```sh\npip install lhe2sqlite [--user]\n```\n\nThen run with:\n\n```sh\nconvertlhe2sqlite input.lhe output.sqlite3\n```\n\nThen you can examine the content with either stright SQL or your analysis tool of choice (eg pandas).\n\n## Schema\n\nThe resulting database has just 2 tables, `event`, and `particle` with a one-to-many relationship between them.\n\n```sql\nCREATE TABLE event (\n event_number INTEGER PRIMARY KEY,\n procId INTEGER,\n weight FLOAT,\n scale FLOAT,\n aqed FLOAT,\n aqcd FLOAT\n);\nCREATE TABLE particle (\n event_number INTEGER REFERENCES event(event_number),\n pdgId INTEGER,\n status INTEGER,\n mother1 INTEGER,\n mother2 INTEGER,\n color1 INTEGER,\n color2 INTEGER,\n px FLOAT,\n py FLOAT,\n pz FLOAT,\n e FLOAT,\n m FLOAT,\n lifetime FLOAT,\n spin FLOAT\n);\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/cfangmeier/lhe2sqlite", "keywords": "lhe sqlite", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "lhe2sqlite", "package_url": "https://pypi.org/project/lhe2sqlite/", "platform": "", "project_url": "https://pypi.org/project/lhe2sqlite/", "project_urls": { "Homepage": "https://github.com/cfangmeier/lhe2sqlite" }, "release_url": "https://pypi.org/project/lhe2sqlite/0.1.1/", "requires_dist": null, "requires_python": "", "summary": "Simple utility to convert LesHouchesEvents files to a sqlite database", "version": "0.1.1" }, "last_serial": 4479914, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "414c10d7ab5aabdd5db0b16c7c555029", "sha256": "8cf683956c26cd5417c2b9a60f7c302ac4438c11449c1831a03be5717a898295" }, "downloads": -1, "filename": "lhe2sqlite-0.1.0.tar.gz", "has_sig": false, "md5_digest": "414c10d7ab5aabdd5db0b16c7c555029", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2333, "upload_time": "2018-11-13T01:01:04", "url": "https://files.pythonhosted.org/packages/7c/e7/4fe4187d5a607457a645dcd0e7acaef538b88200fd03725ac051797afcc3/lhe2sqlite-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "9298606cacef1ede4138495100da0b71", "sha256": "ebb77df5b6b2e4b2db9378dd7539000d25d13d4831fe6e949179644dad587d56" }, "downloads": -1, "filename": "lhe2sqlite-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9298606cacef1ede4138495100da0b71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2614, "upload_time": "2018-11-13T01:06:34", "url": "https://files.pythonhosted.org/packages/be/b8/5e5194d1b47129186a52e121d50bf54d6793f42eac8d924a673019ef409e/lhe2sqlite-0.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "9298606cacef1ede4138495100da0b71", "sha256": "ebb77df5b6b2e4b2db9378dd7539000d25d13d4831fe6e949179644dad587d56" }, "downloads": -1, "filename": "lhe2sqlite-0.1.1.tar.gz", "has_sig": false, "md5_digest": "9298606cacef1ede4138495100da0b71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2614, "upload_time": "2018-11-13T01:06:34", "url": "https://files.pythonhosted.org/packages/be/b8/5e5194d1b47129186a52e121d50bf54d6793f42eac8d924a673019ef409e/lhe2sqlite-0.1.1.tar.gz" } ] }