From f4537e017c9c1b769aed98dd5223368ef3a99f4d Mon Sep 17 00:00:00 2001 From: Damien Dupuis Date: Fri, 11 Jun 2010 14:49:21 +0000 Subject: [PATCH] CHANGES * agds : - all agds object now belong to AGDS namespace - 'Gds' has been removed from all filenames * cif - all cif objects now belong to CIF namespace - 'Cif' has been removed from all filenames * dtr - minor modifications in CMakeLists.txt since Boost Python is now used by other driver & parser ADDS * agds : - new python module * cif - new python module * doc - brand new doxygen documentation with global presentation cif format (driver) agds format (driver) links & contacts * examples - examples files in C++ and Python for cif & agds drivers (others will follow) --- vlsisapd/CMakeLists.txt | 15 + vlsisapd/doc/CMakeLists.txt | 4 + vlsisapd/doc/Contact.dox | 11 + vlsisapd/doc/agds/Element.dox | 8 + vlsisapd/doc/agds/Library.dox | 40 + vlsisapd/doc/agds/Rectangle.dox | 18 + vlsisapd/doc/agds/Structure.dox | 24 + vlsisapd/doc/agds/agds.dox | 50 + vlsisapd/doc/cif/Circuit.dox | 30 + vlsisapd/doc/cif/Polygon.dox | 22 + vlsisapd/doc/cif/cif.dox | 37 + vlsisapd/doc/doxyfile | 1518 +++++++++++++++++ vlsisapd/doc/footer.html | 16 + vlsisapd/doc/header.html | 21 + vlsisapd/doc/img/pngToPdf.sh | 3 + vlsisapd/doc/img/transistorCif.pdf | Bin 0 -> 47756 bytes vlsisapd/doc/img/transistorCif.png | Bin 0 -> 11231 bytes vlsisapd/doc/mainPage.dox | 37 + vlsisapd/doc/stylesheet.css | 485 ++++++ vlsisapd/examples/CMakeLists.txt | 2 + vlsisapd/examples/agds/CMakeLists.txt | 1 + .../examples/agds/cplusplus/CMakeLists.txt | 4 + vlsisapd/examples/agds/cplusplus/mainAgds.cpp | 28 + vlsisapd/examples/agds/python/testAgds.py | 14 + vlsisapd/examples/agds/transistor.agds | 38 + vlsisapd/examples/cif/CMakeLists.txt | 1 + .../examples/cif/cplusplus/CMakeLists.txt | 4 + vlsisapd/examples/cif/cplusplus/mainCif.cpp | 30 + vlsisapd/examples/cif/python/testCif.py | 17 + vlsisapd/examples/cif/transistor.cif | 9 + vlsisapd/src/agds/src/CMakeLists.txt | 32 +- .../agds/src/{GdsLibrary.cpp => Library.cpp} | 13 +- vlsisapd/src/agds/src/PyAgds.cpp | 35 + .../src/{GdsRectangle.cpp => Rectangle.cpp} | 16 +- .../src/{GdsStructure.cpp => Structure.cpp} | 15 +- vlsisapd/src/agds/src/vlsisapd/agds/Element.h | 20 + .../src/agds/src/vlsisapd/agds/GdsElement.h | 20 - .../src/agds/src/vlsisapd/agds/GdsLibrary.h | 31 - .../src/agds/src/vlsisapd/agds/GdsRectangle.h | 22 - .../src/agds/src/vlsisapd/agds/GdsStructure.h | 29 - vlsisapd/src/agds/src/vlsisapd/agds/Library.h | 30 + .../src/agds/src/vlsisapd/agds/Rectangle.h | 22 + .../src/agds/src/vlsisapd/agds/Structure.h | 28 + vlsisapd/src/cif/src/CMakeLists.txt | 26 +- .../cif/src/{CifCircuit.cpp => Circuit.cpp} | 15 +- .../cif/src/{CifPolygon.cpp => Polygon.cpp} | 11 +- vlsisapd/src/cif/src/PyCif.cpp | 22 + .../src/cif/src/vlsisapd/cif/CifCircuit.h | 23 - vlsisapd/src/cif/src/vlsisapd/cif/Circuit.h | 23 + .../vlsisapd/cif/{CifPolygon.h => Polygon.h} | 6 +- vlsisapd/src/dtr/src/CMakeLists.txt | 9 - 51 files changed, 2748 insertions(+), 187 deletions(-) create mode 100644 vlsisapd/doc/CMakeLists.txt create mode 100644 vlsisapd/doc/Contact.dox create mode 100644 vlsisapd/doc/agds/Element.dox create mode 100644 vlsisapd/doc/agds/Library.dox create mode 100644 vlsisapd/doc/agds/Rectangle.dox create mode 100644 vlsisapd/doc/agds/Structure.dox create mode 100644 vlsisapd/doc/agds/agds.dox create mode 100644 vlsisapd/doc/cif/Circuit.dox create mode 100644 vlsisapd/doc/cif/Polygon.dox create mode 100644 vlsisapd/doc/cif/cif.dox create mode 100644 vlsisapd/doc/doxyfile create mode 100644 vlsisapd/doc/footer.html create mode 100644 vlsisapd/doc/header.html create mode 100755 vlsisapd/doc/img/pngToPdf.sh create mode 100644 vlsisapd/doc/img/transistorCif.pdf create mode 100644 vlsisapd/doc/img/transistorCif.png create mode 100644 vlsisapd/doc/mainPage.dox create mode 100644 vlsisapd/doc/stylesheet.css create mode 100644 vlsisapd/examples/CMakeLists.txt create mode 100644 vlsisapd/examples/agds/CMakeLists.txt create mode 100644 vlsisapd/examples/agds/cplusplus/CMakeLists.txt create mode 100644 vlsisapd/examples/agds/cplusplus/mainAgds.cpp create mode 100644 vlsisapd/examples/agds/python/testAgds.py create mode 100644 vlsisapd/examples/agds/transistor.agds create mode 100644 vlsisapd/examples/cif/CMakeLists.txt create mode 100644 vlsisapd/examples/cif/cplusplus/CMakeLists.txt create mode 100644 vlsisapd/examples/cif/cplusplus/mainCif.cpp create mode 100644 vlsisapd/examples/cif/python/testCif.py create mode 100644 vlsisapd/examples/cif/transistor.cif rename vlsisapd/src/agds/src/{GdsLibrary.cpp => Library.cpp} (80%) create mode 100644 vlsisapd/src/agds/src/PyAgds.cpp rename vlsisapd/src/agds/src/{GdsRectangle.cpp => Rectangle.cpp} (70%) rename vlsisapd/src/agds/src/{GdsStructure.cpp => Structure.cpp} (69%) create mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/Element.h delete mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/GdsElement.h delete mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/GdsLibrary.h delete mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/GdsRectangle.h delete mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/GdsStructure.h create mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/Library.h create mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/Rectangle.h create mode 100644 vlsisapd/src/agds/src/vlsisapd/agds/Structure.h rename vlsisapd/src/cif/src/{CifCircuit.cpp => Circuit.cpp} (73%) rename vlsisapd/src/cif/src/{CifPolygon.cpp => Polygon.cpp} (67%) create mode 100644 vlsisapd/src/cif/src/PyCif.cpp delete mode 100644 vlsisapd/src/cif/src/vlsisapd/cif/CifCircuit.h create mode 100644 vlsisapd/src/cif/src/vlsisapd/cif/Circuit.h rename vlsisapd/src/cif/src/vlsisapd/cif/{CifPolygon.h => Polygon.h} (81%) diff --git a/vlsisapd/CMakeLists.txt b/vlsisapd/CMakeLists.txt index 22d687a9..7481b2f1 100644 --- a/vlsisapd/CMakeLists.txt +++ b/vlsisapd/CMakeLists.txt @@ -7,5 +7,20 @@ LIST(INSERT CMAKE_MODULE_PATH 0 "${VLSISAPD_SOURCE_DIR}/cmake_modules") FIND_PACKAGE(LibXml2 REQUIRED) FIND_PACKAGE(PythonSitePackages REQUIRED) +FIND_PACKAGE(Boost 1.32.0 COMPONENTS python) +IF (Boost_FOUND) + MESSAGE(STATUS "Found Boost.Python libraries in ${Boost_INCLUDE_DIR} as ${Boost_LIBRARIES}") + FIND_PACKAGE(PythonLibs REQUIRED) +ELSE (Boost_FOUND) + MESSAGE(STATUS "Boost.Python libraries were not found") +ENDIF (Boost_FOUND) + +FIND_PACKAGE(Doxygen) + ADD_SUBDIRECTORY(src) ADD_SUBDIRECTORY(cmake_modules) + +IF(BUILD_DOC AND DOXYGEN_FOUND) + ADD_SUBDIRECTORY(doc) + ADD_SUBDIRECTORY(examples) +ENDIF(BUILD_DOC AND DOXYGEN_FOUND) diff --git a/vlsisapd/doc/CMakeLists.txt b/vlsisapd/doc/CMakeLists.txt new file mode 100644 index 00000000..ea250339 --- /dev/null +++ b/vlsisapd/doc/CMakeLists.txt @@ -0,0 +1,4 @@ +ADD_CUSTOM_TARGET ( doc ALL cd ${VLSISAPD_SOURCE_DIR}/doc && ${DOXYGEN_EXECUTABLE} doxyfile ) + +INSTALL ( DIRECTORY html/ DESTINATION share/doc/coriolis2/en/html/vlsisapd ) +INSTALL ( DIRECTORY latex/ DESTINATION share/doc/coriolis2/en/html/vlsisapd ) diff --git a/vlsisapd/doc/Contact.dox b/vlsisapd/doc/Contact.dox new file mode 100644 index 00000000..a5fd589d --- /dev/null +++ b/vlsisapd/doc/Contact.dox @@ -0,0 +1,11 @@ +/*! \page Contact Links & Contacts + VLSI SAPD prject is developped at the Pierre & Marie Curie University in Paris, France (http://www.upmc.fr).\n\n + + It is used by: + - Coriolis 2 Project: http://www-soc.lip6.fr/recherche/cian/coriolis-2/ + - Chams Project: http://www-soc.lip6.fr/recherche/cian/chams/\n\n + + For any information you can contact the author of a parser / driver (if available on corresponding page) or Damien Dupuis: damien.dupuis(at)lip6(.)fr founder of the project. + + + */ diff --git a/vlsisapd/doc/agds/Element.dox b/vlsisapd/doc/agds/Element.dox new file mode 100644 index 00000000..c5fd4dfd --- /dev/null +++ b/vlsisapd/doc/agds/Element.dox @@ -0,0 +1,8 @@ +// -*- C++ -*- + +namespace AGDS { +/*! \class Element + * + * This is an abstract class which is a base for any GDS II shape. It only defines a layer. + */ +} diff --git a/vlsisapd/doc/agds/Library.dox b/vlsisapd/doc/agds/Library.dox new file mode 100644 index 00000000..7130f88d --- /dev/null +++ b/vlsisapd/doc/agds/Library.dox @@ -0,0 +1,40 @@ +// -*- C++ -*- + +namespace AGDS { +/*! \class Library + * + * This class contains all AGDS library informations such as the name, the unit used (user and physical) and the list of all Structures. + */ + +/*! \fn Library::Library(std::string name) + * \brief creates a new Library + * + * \param name the name of the library. + */ + +/*! \fn inline void Library::setUserUnits(double userUnits) + * \brief sets the user units. + * + * \param userUnits the value of the user units. + */ + +/*! \fn inline void Library::setPhysUnits(double physUnits) + * \brief sets the physical units. + * + * \param physUnits the value of the physical units. + */ + +/*! \fn bool Library::addStructure(Structure* str) + * \brief adds a Structure to the Library. + * + * \param str the Structure object to add. + */ + +/*! \fn bool Library::writeToFile(std::string filename) + * \brief writes the database to file. + * + * \param filename the destination file name. + * + * \note When driving file, current date and time are used to define date in generated CIF file. + */ +} diff --git a/vlsisapd/doc/agds/Rectangle.dox b/vlsisapd/doc/agds/Rectangle.dox new file mode 100644 index 00000000..09ee9f49 --- /dev/null +++ b/vlsisapd/doc/agds/Rectangle.dox @@ -0,0 +1,18 @@ +// -*- C++ -*- + +namespace AGDS { +/*! \class Rectangle + * + * This class describes a rectangle element and inherits from AGDS::Element. + */ + +/*! \fn Rectangle::Rectangle(int layer, double xmin, double ymin, double xmax ,double ymax) + * \brief creates a new Rectangle + * + * \param layer the layer number into which the rectangle shape is drawned. + * \param xmin the x coordinate of the bottom-left corner of the rectangle. + * \param ymin the y coordinate of the bottom-left corner of the rectangle. + * \param xmax the x coordinate of the top-right corner of the rectangle. + * \param ymax the y coordinate of the top-right corner of the rectangle. + */ +} diff --git a/vlsisapd/doc/agds/Structure.dox b/vlsisapd/doc/agds/Structure.dox new file mode 100644 index 00000000..20604f43 --- /dev/null +++ b/vlsisapd/doc/agds/Structure.dox @@ -0,0 +1,24 @@ +// -*- C++ -*- + +namespace AGDS { +/*! \class Structure + * + * This class describes a GDS Structure with a name and a list of Elements. + */ + +/*! \fn Structure::Structure(std::string name) + * \brief creates a new Structure + * + * \param name the name of the structure. + */ + +/*! \fn bool Structure::addElement(Element* element) + * \brief adds an Element to the Structure. + * + * \param element the Element object to add. + */ + +/*! \fn inline std::string Structure::getName() + * \brief returns the name of the Structure. + */ +} diff --git a/vlsisapd/doc/agds/agds.dox b/vlsisapd/doc/agds/agds.dox new file mode 100644 index 00000000..d7e3e27b --- /dev/null +++ b/vlsisapd/doc/agds/agds.dox @@ -0,0 +1,50 @@ +/*! \page AGDS AGDS Format + + \section agdsPres Presentation + The Ascii Graphic Database System (AGDS) format is an ascii (text) version of the wellknown and industry standard GDS II binary format. This format hierarchicaly represents geometric shapes, labels and other layout informations (see http://en.wikipedia.org/wiki/GDSII for more informations). \n + The ascii format has several advantages versus binary format: + - human readable, + - easy to edit manually or with dedicated tools, + - easy to search or grep into, + - easy to compare and understand differences between two files, + - easy to convert. + + The conversion from Ascii GDS to binary GDS and vice versa can be done with OwlVision GDSII Viewer available at http://owlvision.org\n + Since it has been developped in java, it can be run on all platforms. + + \subsection agdsAutrhos Author + Damien Dupuis: damien.dupuis(at)lip6(.)fr + + \subsection agdsLimits Limitations + Currently the only supported shape in this driver is the rectangle. + + \section agdsDB Stand alone database structure + The database conists in for simple objects : + - AGDS::Library contains all AGDS library informations such as the name, the units used (user and physical) and the list of all Structures. + - AGDS::Structure describes a GDS Structure with a name and a list of Elements. + - AGDS::Element is an abstract class from which derived the AGDS::Rectangle. + - AGDS::Rectangle describes a rectangle element of a structure. + + \subsection agdsDriver Using the driver + To drive an AGDS file, user has to create one AGDS::Library and add AGDS::Structure objects to it with the AGDS::Library::addStructure() method. Each AGDS::Structure contains at least one AGDS::Element added with AGDS::Structure::addElement() method.\n + All objects can be independently created as far as they are correctly added to their parent. \n + Once the library is completely specified, simply call the AGDS::Library::writeToFile() method to drive the database to file. + + \section agdsExamples Examples + As said is the global presentation, VLSI SAPD project provides C++ libraries and Python modules for each supported format. In this section we present two simple code examples to drive a AGDS file using C++ or Python. These two examples drive the same file \c transistor.agds: + \include transistor.agds + + \image html transistorCif.png AGDS example layout + \image latex transistorCif.pdf AGDS example layout width=.25\linewidth + + \subsection agdsC C++ + Here is the C++ code (\c mainAgds.cpp) used to generate the transistor.agds file. (Source is available in examples directory). + \include mainAgds.cpp + + \subsection agdsPython Python + Here is the Python code (\c testAgds.py) used to generate the transistor.agds file. (Source is available in examples directory). + \include testAgds.py + + \note In order to run the \c testAgds.py script, user must ensure that $PYTHONPATH variable points to the directory containing pyAGDS.so module. +*/ + diff --git a/vlsisapd/doc/cif/Circuit.dox b/vlsisapd/doc/cif/Circuit.dox new file mode 100644 index 00000000..ba9caa66 --- /dev/null +++ b/vlsisapd/doc/cif/Circuit.dox @@ -0,0 +1,30 @@ +// -*- C++ -*- + +namespace CIF { +/*! \class Circuit + * + * This class contains all CIF circuit informations such as the name, the unit used, the scale and the list of all Polygons. + */ + +/*! \fn Circuit::Circuit(std::string name, std::string unit, double scale) + * \brief creates a new Circuit + * + * \param name the name of the circuit. + * \param unit the unit used for all distances & coordinates. + * \param scale the scale used to convert DB unit to real unit (specified by the unit). + */ + +/*! \fn bool Circuit::addPolygon(Polygon* polygon) + * \brief adds a Polygon to the Circuit. + * + * \param polygon the Polygon object to add. + */ + +/*! \fn bool Circuit::writeToFile(std::string filename) + * \brief writes the database to file. + * + * \param filename the destination file name. + * + * \note When driving file, current date and time are used to define date in generated CIF file. + */ +} diff --git a/vlsisapd/doc/cif/Polygon.dox b/vlsisapd/doc/cif/Polygon.dox new file mode 100644 index 00000000..eb299388 --- /dev/null +++ b/vlsisapd/doc/cif/Polygon.dox @@ -0,0 +1,22 @@ +// -*- C++ -*- + +namespace CIF { +/*! \class Polygon + * + * This class describes a polygon shape, which consists in a set of points (ie (x,y) pair). + */ + +/*! \fn Polygon::Polygon(long layer) + * \brief creates a new Polygon. + * + * \param layer the layer on which the polygon is created. + */ + +/*! \fn Polygon::addPoint(long x, long y) + * \brief adds a point to the polygon. + * + * \param x the x coordinate of the point. + * \param y the y coordinate of the point. + */ +} + diff --git a/vlsisapd/doc/cif/cif.dox b/vlsisapd/doc/cif/cif.dox new file mode 100644 index 00000000..562ceed7 --- /dev/null +++ b/vlsisapd/doc/cif/cif.dox @@ -0,0 +1,37 @@ +/*! \page CIF CIF Format + + \section cifPres Presentation + The Caltech Intermediate Format (CIF) consists in a limited set of graphic primitives used to describe the shapes on each layer of an integrated circuit (see http://en.wikipedia.org/wiki/Caltech_Intermediate_Form for more informations). \n + + \subsection cifAutrhos Author + Damien Dupuis: damien.dupuis(at)lip6(.)fr + + \subsection cifLimits Limitations + Although the CIF format allows hierarchical description and supports several shapes, in this driver, we do not use hierarchy and only use Polygons. + + \section cifDB Stand alone database structure + The database consists in two simple objects : + - CIF::Circuit contains all CIF circuit informations such as the name, the unit used, the scale and the list of all Polygons. + - CIF::Polygon describes a Polygon (a set of points). + + \subsection cifDriver Using the driver + To drive a CIF file, user has to create one CIF::Circuit and as many CIF::Polygon as the number of shapes of the layout. The CIF::Polygon objects can be created independently from for the CIF::Circuit but must be finally added to the CIF::Circuit using CIF::Circuit::addPolygon().\n + Once the CIF::Circuit is complete, simply call the CIF::Circuit::writeToFile() method to drive the database to file. + + \section cifExamples Examples + As said is the global presentation, VLSI SAPD project provides C++ libraries and Python modules for each supported format. In this section we present two simple code examples to drive a CIF file using C++ or Python. These two examples drive the same file \c transistor.cif: + \include transistor.cif + + \image html transistorCif.png CIF example layout + \image latex transistorCif.pdf CIF example layout width=.25\linewidth + + \subsection cifC C++ + Here is the C++ code (\c mainCif.cpp) used to generate the transistor.cif file. (Source is available in examples directory). + \include mainCif.cpp + + \subsection cifPython Python + Here is the Python code (\c testCif.py) used to generate the transistor.cif file. (Source is available in examples directory). + \include testCif.py + + \note In order to run the \c testCif.py script, user must ensure that $PYTHONPATH variable points to the directory containing pyCIF.so module. +*/ diff --git a/vlsisapd/doc/doxyfile b/vlsisapd/doc/doxyfile new file mode 100644 index 00000000..e3cf3f40 --- /dev/null +++ b/vlsisapd/doc/doxyfile @@ -0,0 +1,1518 @@ +# Doxyfile 1.6.1 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = "VLSI SAPD" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = "arguments=\b Arguments:\n"\ + "returns=\b Returns:\n" \ + "note=\b Note:\n" \ + "checks=\b Checks:\n" \ + "example=\b Example:\n" + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = YES + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = YES + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = NO + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = NO + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = NO + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = "." "../src/cif" "../src/agds" + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = *.dox *.cpp *.h + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = ../examples + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = YES + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = ./img + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = header.html + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = footer.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = stylesheet.css + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = YES + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enable doxygen will generate a search box for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) +# there is already a search function so this one should typically +# be disabled. + +SEARCHENGINE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = YES + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/vlsisapd/doc/footer.html b/vlsisapd/doc/footer.html new file mode 100644 index 00000000..a3ae8555 --- /dev/null +++ b/vlsisapd/doc/footer.html @@ -0,0 +1,16 @@ +
+
+ + + + + +
Generated by doxygen $doxygenversion on $dateReturn to top of page
+ + + + + +
VLSI SAPD DocumentationCopyright © 2010 UPMC All rights reserved
+ + diff --git a/vlsisapd/doc/header.html b/vlsisapd/doc/header.html new file mode 100644 index 00000000..30a1accb --- /dev/null +++ b/vlsisapd/doc/header.html @@ -0,0 +1,21 @@ + + + + + VLSI SAPD Documentation + + +

VLSI SAPD Documentation

+
+ + + + + + + +
PresentationCIFAGDSLinks & Contact
+
+
+
+ diff --git a/vlsisapd/doc/img/pngToPdf.sh b/vlsisapd/doc/img/pngToPdf.sh new file mode 100755 index 00000000..db9aee4f --- /dev/null +++ b/vlsisapd/doc/img/pngToPdf.sh @@ -0,0 +1,3 @@ +for file in `ls *.png`; do + convert $file -pointsize 72 -colorspace RGB -compress JPEG `basename $file .png`.pdf; +done diff --git a/vlsisapd/doc/img/transistorCif.pdf b/vlsisapd/doc/img/transistorCif.pdf new file mode 100644 index 0000000000000000000000000000000000000000..827eca728a9739af370272d6e6575d1e2c4d6de4 GIT binary patch literal 47756 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 A&j0`b literal 0 HcmV?d00001 diff --git a/vlsisapd/doc/mainPage.dox b/vlsisapd/doc/mainPage.dox new file mode 100644 index 00000000..58aff35a --- /dev/null +++ b/vlsisapd/doc/mainPage.dox @@ -0,0 +1,37 @@ +/*! \mainpage Presentation + + This is the documentation of VLSI SAPD project. This project aims at providing a set of open-source \b Stand Alone Parser & Drivers for VLSI. APIs for these parser & drivers are provided as C++ libraries and Python modules. + + The list of supported parser & drivers is shown in next table : +

+ + + + + + + + + + + + + + + + + + + + + + +
Format
Parser
Driver
CIF
x
AGDS
x
DTR
x
OPENCHAMS
x
x
+
+ + + To quickly access to documentation of a format, one can use the following links : + - \subpage CIF CIF Format + - \subpage AGDS AGDS Format + +*/ diff --git a/vlsisapd/doc/stylesheet.css b/vlsisapd/doc/stylesheet.css new file mode 100644 index 00000000..e7faf646 --- /dev/null +++ b/vlsisapd/doc/stylesheet.css @@ -0,0 +1,485 @@ + + +/* + * x-----------------------------------------------------------------x + * | HTML Standart Tags | + * x-----------------------------------------------------------------x + */ + + html, body, th, td, tr, p, li, h1, h2, h3, h4, h5, h6 { + font-size: 96%; + font-family: verdana, sans-serif; + } + + body { + color: black; + background: white; + background-color: white; + background-position: top left; + background-attachment: fixed; + background-repeat: no-repeat; + margin-top: 2em; + margin-right: 8%; + margin-left: 8%; + } + + hr { + height: 1px; + border: 0; + color: #304A67; + background-color: #304A67; + } + + + h1, h2, h3, h4, h5, h6 { + font-family: verdana, sans-serif; + } + + h1 { text-align: center; } + h2, h3, h4, h5, h6 { text-align: left; + padding-top: 2em; + } + h1, h2, h3 { font-family: "Trebuchet MS", sans-serif; + color: #375275; + } + h1 { font-weight: bold; font-size: 170%; } + h2 { font-weight: bold; font-size: 140%; } + h3 { font-weight: bold; font-size: 118%; } + h4 { font-weight: bold; font-size: 100%; } + h5 { font-style: italic; font-size: 100%; } + h6 { font-variant: small-caps; font-size: 100%; } + + h2.classHierarchy { + /*border: 1px none #30629C;*/ + border: 1px none #000000; + border-top-width: 2px; + border-top-style: solid; + padding-top: 1em; + } + + + .hide { + display: none; + color: white; + } + + + p { + margin-top: 0.6em; + margin-bottom: 0.6em; + margin-left: 0.0em; + margin-right: 0.0em; + } + + + address { + text-align: right; + font-weight: bold; + font-style: italic; + font-size: 80%; + } + + + caption { font-weight: bold } + + + blockquote { + margin-left: 4em; + margin-right: 4em; + margin-top: 0.8em; + margin-bottom: 0.8em; + font-style: italic; + color: #304359; + } + + blockquote p { + margin-bottom: 0; + } + + blockquote address { + margin: 0; + } + + + table { + border-collapse: collapse; + } + + dt, dd { margin-top: 0; margin-bottom: 0; } + dt { font-weight: bold; } + + + pre, tt, code { + font-family: "andale mono", monospace; + font-size: 100%; + white-space: pre; + } + + pre { + font-size: 80%; + border: dashed; + border-width: thin; + border-color: #304359; + /* + background-color: #EEEEEE; + */ + background-color: #FCFCE1; + padding: 0.5em; + margin-left: 2em; + margin-right: 2em + } + + tt { color: #3090FF; } + em { font-style: italic; + font-weight: bold; } + strong { font-weight: bold; } + + span.textit { font-style: italic; } + span.textbf { font-weight: bold; } + + .small { font-size: 90%; } + .white { color: #FFFFFF; } + + + ul.toc { + list-style: disc; + list-style: none; + } + + + a:link img, a:visited img { border-style: none; } + a img { color: white; } + + a:link, a:active, a:visited { + color: #375275; + text-decoration: none; + } + + a:hover, a:focus { + color: #FF9900; + text-decoration: underline; + } + + + + +/* + * x-----------------------------------------------------------------x + * | Doxygen Specific Classes | + * x-----------------------------------------------------------------x + */ + + +/* ------------------------------------------------------------------- + * Header & Footer Classes (customized top page navigation bar). + */ + + h1.header { + font-size: 200%; + font-family: times, verdana, sans-serif; + } + + center.header { + background-color: #D4E1EB; + } + + table.header { + /*width: 100%;*/ + /*background-color: #EEEEEE;*/ + background-color: #D4E1EB; + } + + table.header td { + padding: 2px 14px; + text-align: center; + font-weight: bold; + font-family: verdana, sans-serif; + font-size: 110%; + } + + table.footer1, table.footer2 { width: 100%; } + td.LFooter { text-align: left; } + td.RFooter { text-align: right; } + td.CFooter { text-align: center;} + table.footer2 td.RFooter { font-weight: bold; width: 35% } + table.footer2 td.CFooter { width: 30% } + table.footer2 td.LFooter { font-weight: bold; width: 35%; font-family: time; } + + table.classHierarchy { + border-collapse: separate; + border-spacing: 5px; + font-size: 110%; + } + + table.classHierarchy tr { + border: 1px solid blue; + } + + table.classHierarchy td.normal { + border: 1px solid #D4E1EB; + width: 140pt; + text-align: center; + font-weight: bold; + background-color: #D4E1EB; + } + + table.classHierarchy td.virtual { + border: 1px solid black; + width: 140pt; + text-align: center; + font-weight: bold; + } + + table.classHierarchy td.wnormal { + border: 1px solid #D4E1EB; + width: 240pt; + text-align: center; + font-weight: bold; + background-color: #D4E1EB; + } + + table.classHierarchy td.wvirtual { + border: 1px solid black; + width: 240pt; + text-align: center; + font-weight: bold; + } + + div.ah { + font-family: time; + font-size: 250%; + } + + +/* ------------------------------------------------------------------- + * Quick Index Class (top page navigation bar). + */ + + div.qindex, div.nav { + width: 100%-4px; + /*background-color: #DADAEF;*/ + /*background-color: #eeeeff;*/ + /*background-color: #EEEEEE;*/ + background-color: #D4E1EB; + border: 0px solid #304359; + text-align: center; + margin: 0px; + padding: 2px; + line-height: 140%; + } + + a.qindex, a.qindex:visited, a.qindex:hover, a.qindexHL, a.el, a.elRef { + text-decoration: none; + font-weight: bold; + } + + a.qindex, a.qindex:visited { + color: #375275; + } + + a.qindex:hover { + background-color: #ddddff; + } + + a.qindexHL, a.qindexHL:hover, a.qindexHL:visited { + background-color: #3A6291; + color: #ffffff; + border: 1px double #9295C2; + } + + a.code:link, a.code:visited, a.codeRef:link, a.codeRef:visited { + text-decoration: none; + font-weight: normal; + color: #0000ff; + } + + .indexkey { + background-color: #eeeeff; + border: 1px solid #b0b0b0; + padding: 2px 15px; + } + + .indexkey, .indexvalue { + background-color: #eeeeff; + border: 1px solid #b0b0b0; + padding: 2px 15px; + } + + .indexkey { + width: 40%; + } + + .indexvalue { + width: 80%; + } + + h3 a[name="index__"], + h3 a[name="index_a"], + h3 a[name="index_b"], + h3 a[name="index_c"], + h3 a[name="index_d"], + h3 a[name="index_e"], + h3 a[name="index_f"], + h3 a[name="index_g"], + h3 a[name="index_h"], + h3 a[name="index_i"], + h3 a[name="index_j"], + h3 a[name="index_k"], + h3 a[name="index_l"], + h3 a[name="index_m"], + h3 a[name="index_n"], + h3 a[name="index_o"], + h3 a[name="index_p"], + h3 a[name="index_q"], + h3 a[name="index_r"], + h3 a[name="index_s"], + h3 a[name="index_t"], + h3 a[name="index_u"], + h3 a[name="index_v"], + h3 a[name="index_w"], + h3 a[name="index_x"], + h3 a[name="index_y"], + h3 a[name="index_z"], + h3 a[name="index_0"], + h3 a[name="index_1"], + h3 a[name="index_2"], + h3 a[name="index_3"], + h3 a[name="index_4"], + h3 a[name="index_5"], + h3 a[name="index_6"], + h3 a[name="index_7"], + h3 a[name="index_8"], + h3 a[name="index_9"] + { + font-family: time; + font-size: 250%; + } + + +/* ------------------------------------------------------------------- + * Verbatim Source Code / Examples. + */ + + /* pre.fragment { background-color: #EEEEEE; } */ + + span.keyword { color: #008000 } + span.keywordtype { color: #604020 } + span.keywordflow { color: #e08000 } + span.comment { color: #800000 } + span.preprocessor { color: #806020 } + span.stringliteral { color: #002080 } + span.charliteral { color: #008080 } + + +/* ------------------------------------------------------------------- + * Attributes Listing. + */ + + .mdTable { + /*border: 1px solid #868686;*/ + /*background-color: #DADAEF;*/ + /*background-color: #F4F4FB;*/ + border: 1px none #30629C; + border-left-width: 1px; + border-left-style: solid; + /*background-color: #B8E6B8;*/ + /*background-color: #D4E1EB;*/ + margin-top: 25px; + font-size: 105%; + } + + .mdRow { + padding: 5px 10px; + } + + /* This Mozilla/Firefox bug has been corrected from v1.5. + * .mdname1 { + * padding: 3px 0px 0px 0px; + * } + */ + + .mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + font-size: 11px; + font-style: italic; + /*background-color: #FAFAFA;*/ + border-top: 1px none #E0E0E0; + border-right: 1px none #E0E0E0; + border-bottom: 1px none #E0E0E0; + border-left: 1px none #E0E0E0; + margin: 0px; + } + + .memitem { + margin-bottom: 30px; + border: 1px none #30629C; + } + + .memproto { + background-color: #D4E1EB; + border-left-width: 4px; + border-left-style: solid; + border-color: #30629C; + } + + .memname { + white-space: nowrap; + padding-left: 5px; + font-size: 105%; + } + + + .memdoc{ + padding-left: 5px; + /*margin-top: -8px;*/ + border-left-width: 1px; + border-left-style: solid; + border-color: #30629C; + } + + .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight { + padding: 1px 0px 0px 8px; + margin: 4px; + border-top-width: 1px; + border-right-width: 1px; + border-bottom-width: 1px; + border-left-width: 1px; + border-top-color: #0c0c0c; + border-right-color: #0c0c0c; + border-bottom-color: #0c0c0c; + border-left-color: #0c0c0c; + border-top-style: solid; + border-right-style: none; + border-bottom-style: none; + border-left-style: none; + /*background-color: #DADAEF;*/ + /*background-color: #eeeeff;*/ + /*background-color: #EEEEEE;*/ + background-color: #D4E1EB; + } + + .memTemplItemLeft, .memTemplItemRight { + border-bottom-width: 2px; + border-bottom-style: solid; + font-weight: bold; + } + + .memItemLeft { font-size: 11px; } + .memItemRight { font-size: 12px; } + .memTemplItemLeft { font-size: 11px; } + .memTemplItemRight { font-size: 12px; } + + .memTemplParams { + color: #FFFFFF; + background-color: #000000; + font-size: 11px; + font-weight: bold; + } + + .groupText, .groupHeader { + color: #375275; + margin-top: 15px; + font-size: 130%; + font-weight: bold; + } + diff --git a/vlsisapd/examples/CMakeLists.txt b/vlsisapd/examples/CMakeLists.txt new file mode 100644 index 00000000..2246d576 --- /dev/null +++ b/vlsisapd/examples/CMakeLists.txt @@ -0,0 +1,2 @@ +ADD_SUBDIRECTORY(cif) +ADD_SUBDIRECTORY(agds) diff --git a/vlsisapd/examples/agds/CMakeLists.txt b/vlsisapd/examples/agds/CMakeLists.txt new file mode 100644 index 00000000..cafa0fdf --- /dev/null +++ b/vlsisapd/examples/agds/CMakeLists.txt @@ -0,0 +1 @@ +ADD_SUBDIRECTORY(cplusplus) diff --git a/vlsisapd/examples/agds/cplusplus/CMakeLists.txt b/vlsisapd/examples/agds/cplusplus/CMakeLists.txt new file mode 100644 index 00000000..9f1b315f --- /dev/null +++ b/vlsisapd/examples/agds/cplusplus/CMakeLists.txt @@ -0,0 +1,4 @@ +INCLUDE_DIRECTORIES ( ${VLSISAPD_SOURCE_DIR}/src/agds/src ) +ADD_EXECUTABLE ( testAgds mainAgds.cpp ) +TARGET_LINK_LIBRARIES ( testAgds agds ) # 'testAgds' is the name of the executable and 'agds' the name of the target library in agds/src/CMakeLists.txt +INSTALL ( TARGETS testAgds DESTINATION bin ) diff --git a/vlsisapd/examples/agds/cplusplus/mainAgds.cpp b/vlsisapd/examples/agds/cplusplus/mainAgds.cpp new file mode 100644 index 00000000..8a640ac9 --- /dev/null +++ b/vlsisapd/examples/agds/cplusplus/mainAgds.cpp @@ -0,0 +1,28 @@ +#include +using namespace std; + +#include "vlsisapd/agds/Library.h" +#include "vlsisapd/agds/Structure.h" +#include "vlsisapd/agds/Rectangle.h" + +int main(int argc, char * argv[]) { + AGDS::Library* lib = new AGDS::Library(string("myTestLib")); + + lib->setUserUnits(0.001); + lib->setPhysUnits(1.0E-9); + + AGDS::Rectangle* poly = new AGDS::Rectangle( 17, 305, 150, 365, 830 ); + AGDS::Rectangle* active = new AGDS::Rectangle( 6, 130, 290, 540, 690 ); + + AGDS::Structure* str = new AGDS::Structure("Transistor"); + + str->addElement(poly); + str->addElement(active); + + lib->addStructure(str); + + lib->writeToFile("./transistor.agds"); + + return 0; +} + diff --git a/vlsisapd/examples/agds/python/testAgds.py b/vlsisapd/examples/agds/python/testAgds.py new file mode 100644 index 00000000..b547af43 --- /dev/null +++ b/vlsisapd/examples/agds/python/testAgds.py @@ -0,0 +1,14 @@ +import pyAGDS +lib = pyAGDS.Library("myTestLib") +lib.setUserUnits(0.001) +lib.setPhysUnits(1.0e-9) + +active = pyAGDS.Rectangle( 6, 120, 290, 540, 690) # layer 6 corresponds to active +poly = pyAGDS.Rectangle(17, 305, 150, 365, 830) # layer 17 corresponds to polysilicium + +str = pyAGDS.Structure("Transistor") +str.addElement(active) +str.addElement(poly) + +lib.addStructure(str) +lib.writeToFile("./transistor.agds") diff --git a/vlsisapd/examples/agds/transistor.agds b/vlsisapd/examples/agds/transistor.agds new file mode 100644 index 00000000..df8d3616 --- /dev/null +++ b/vlsisapd/examples/agds/transistor.agds @@ -0,0 +1,38 @@ +HEADER 5; +BGNLIB; + LASTMOD {10-06-11 14:02:15}; + LASTACC {10-06-11 14:02:15}; +LIBNAME myTestLib.DB; +UNITS; + USERUNITS 0.001; + PHYSUNITS 1.000000e-09; + +BGNSTR; + CREATION {10-06-11 14:02:15}; + LASTMOD {10-06-11 14:02:15}; +STRNAME Transistor; + +BOUNDARY; +LAYER 17; +DATATYPE 0; +XY 5; + X: 305; Y: 150; + X: 305; Y: 830; + X: 365; Y: 830; + X: 365; Y: 150; + X: 305; Y: 150; +ENDEL; + +BOUNDARY; +LAYER 6; +DATATYPE 0; +XY 5; + X: 130; Y: 290; + X: 130; Y: 690; + X: 540; Y: 690; + X: 540; Y: 290; + X: 130; Y: 290; +ENDEL; + +ENDSTR; +ENDLIB; diff --git a/vlsisapd/examples/cif/CMakeLists.txt b/vlsisapd/examples/cif/CMakeLists.txt new file mode 100644 index 00000000..cafa0fdf --- /dev/null +++ b/vlsisapd/examples/cif/CMakeLists.txt @@ -0,0 +1 @@ +ADD_SUBDIRECTORY(cplusplus) diff --git a/vlsisapd/examples/cif/cplusplus/CMakeLists.txt b/vlsisapd/examples/cif/cplusplus/CMakeLists.txt new file mode 100644 index 00000000..c81abaf9 --- /dev/null +++ b/vlsisapd/examples/cif/cplusplus/CMakeLists.txt @@ -0,0 +1,4 @@ +INCLUDE_DIRECTORIES ( ${VLSISAPD_SOURCE_DIR}/src/cif/src ) +ADD_EXECUTABLE ( testCif mainCif.cpp ) +TARGET_LINK_LIBRARIES ( testCif cif ) # 'testCif' is the name of the executable and 'cif' the name of the target library in cif/src/CMakeLists.txt +INSTALL ( TARGETS testCif DESTINATION bin ) diff --git a/vlsisapd/examples/cif/cplusplus/mainCif.cpp b/vlsisapd/examples/cif/cplusplus/mainCif.cpp new file mode 100644 index 00000000..da73c7c1 --- /dev/null +++ b/vlsisapd/examples/cif/cplusplus/mainCif.cpp @@ -0,0 +1,30 @@ +#include +using namespace std; + +#include "vlsisapd/cif/Circuit.h" +#include "vlsisapd/cif/Polygon.h" + +int main(int argc, char * argv[]) { + CIF::Circuit* circuit = new CIF::Circuit(string("Transistor"), string("micro"), 0.001); + + // Layer #6 corresponds to active + CIF::Polygon* poly = new CIF::Polygon(6); + poly->addPoint(130, 290); + poly->addPoint(540, 290); + poly->addPoint(540, 690); + poly->addPoint(130, 690); + circuit->addPolygon(poly); + + // Layer #17 corresponds to polysilicium + poly = new CIF::Polygon(17); + poly->addPoint(305, 150); + poly->addPoint(365, 150); + poly->addPoint(365, 830); + poly->addPoint(305, 830); + circuit->addPolygon(poly); + + circuit->writeToFile("./transistor.cif"); + + return 0; +} + diff --git a/vlsisapd/examples/cif/python/testCif.py b/vlsisapd/examples/cif/python/testCif.py new file mode 100644 index 00000000..4d434176 --- /dev/null +++ b/vlsisapd/examples/cif/python/testCif.py @@ -0,0 +1,17 @@ +import pyCIF +circuit = pyCIF.Circuit("Transistor", "micro", 0.001) +poly1 = pyCIF.Polygon(6) +poly1.addPoint(130, 290) +poly1.addPoint(540, 290) +poly1.addPoint(540, 690) +poly1.addPoint(130, 690) +circuit.addPolygon(poly1) + +poly2 = pyCIF.Polygon(17) +poly2.addPoint(305, 150); +poly2.addPoint(365, 150); +poly2.addPoint(365, 830); +poly2.addPoint(305, 830); +circuit.addPolygon(poly2) + +circuit.writeToFile("./transistor.cif") diff --git a/vlsisapd/examples/cif/transistor.cif b/vlsisapd/examples/cif/transistor.cif new file mode 100644 index 00000000..f5d447f1 --- /dev/null +++ b/vlsisapd/examples/cif/transistor.cif @@ -0,0 +1,9 @@ +(CIF file written on 11-Jun-2010 13:49:44 by VLSISAPD_CIF_DRIVER); +(Units: micro - UU/DB Scale: 0.001); +DS 1 1 1; +9 Transistor; +L 6; P 130,290 540,290 540,690 130,690; +L 17; P 305,150 365,150 365,830 305,830; +DF; +C 1; +E diff --git a/vlsisapd/src/agds/src/CMakeLists.txt b/vlsisapd/src/agds/src/CMakeLists.txt index 318cc356..4cd15d7d 100644 --- a/vlsisapd/src/agds/src/CMakeLists.txt +++ b/vlsisapd/src/agds/src/CMakeLists.txt @@ -1,16 +1,30 @@ -INCLUDE_DIRECTORIES(${VLSISAPD_SOURCE_DIR}/src/agds/src) +INCLUDE_DIRECTORIES(${VLSISAPD_SOURCE_DIR}/src/agds/src ${Boost_INCLUDE_DIRS} ${PYTHON_INCLUDE_PATH}) -SET ( includes vlsisapd/agds/GdsLibrary.h - vlsisapd/agds/GdsStructure.h - vlsisapd/agds/GdsElement.h - vlsisapd/agds/GdsRectangle.h +SET ( hpps vlsisapd/agds/Library.h + vlsisapd/agds/Structure.h + vlsisapd/agds/Element.h + vlsisapd/agds/Rectangle.h ) -SET ( cpps GdsLibrary.cpp - GdsStructure.cpp - GdsRectangle.cpp +SET ( cpps Library.cpp + Structure.cpp + Rectangle.cpp + ) +SET ( pycpps PyAgds.cpp + ${cpps} ) ADD_LIBRARY(agds ${cpps}) INSTALL(TARGETS agds DESTINATION lib${LIB_SUFFIX}) -INSTALL(FILES ${includes} DESTINATION include/vlsisapd/agds) +INSTALL(FILES ${hpps} DESTINATION include/vlsisapd/agds) + +IF(Boost_FOUND) + ADD_LIBRARY(pyAGDS MODULE ${pycpps}) + SET_TARGET_PROPERTIES(pyAGDS PROPERTIES + COMPILE_FLAGS "${COMPILE_FLAGS} -D__PYTHON_MODULE__=1" + PREFIX "" + ) + TARGET_LINK_LIBRARIES(pyAGDS agds ${Boost_LIBRARIES} ${PYTHON_LIBRARIES}) + INSTALL(TARGETS pyAGDS DESTINATION ${PYTHON_SITE_PACKAGES}) +ENDIF(Boost_FOUND) + diff --git a/vlsisapd/src/agds/src/GdsLibrary.cpp b/vlsisapd/src/agds/src/Library.cpp similarity index 80% rename from vlsisapd/src/agds/src/GdsLibrary.cpp rename to vlsisapd/src/agds/src/Library.cpp index 62c6d5dd..c6a42c7c 100644 --- a/vlsisapd/src/agds/src/GdsLibrary.cpp +++ b/vlsisapd/src/agds/src/Library.cpp @@ -3,17 +3,18 @@ #include using namespace std; -#include "vlsisapd/agds/GdsLibrary.h" +#include "vlsisapd/agds/Library.h" +#include "vlsisapd/agds/Structure.h" -namespace vlsisapd { +namespace AGDS { -GdsLibrary::GdsLibrary(string libName) +Library::Library(string libName) : _libName(libName) , _userUnits(0.00) , _physUnits(0.00) {} -bool GdsLibrary::addStructure(GdsStructure* gdsStruct) { +bool Library::addStructure(Structure* gdsStruct) { if(gdsStruct) _structs.push_back(gdsStruct); else { @@ -23,7 +24,7 @@ bool GdsLibrary::addStructure(GdsStructure* gdsStruct) { return true; } -bool GdsLibrary::write(string filename) { +bool Library::writeToFile(string filename) { time_t curtime = time(0); tm now = *localtime(&curtime); char date[BUFSIZ]={0}; @@ -46,7 +47,7 @@ bool GdsLibrary::write(string filename) { file.unsetf(ios::floatfield); // For each Struct : write struct. - for ( vector::iterator it = _structs.begin() ; it < _structs.end() ; it++ ) { + for ( vector::iterator it = _structs.begin() ; it < _structs.end() ; it++ ) { (*it)->write(file); } diff --git a/vlsisapd/src/agds/src/PyAgds.cpp b/vlsisapd/src/agds/src/PyAgds.cpp new file mode 100644 index 00000000..7b64bbb9 --- /dev/null +++ b/vlsisapd/src/agds/src/PyAgds.cpp @@ -0,0 +1,35 @@ +using namespace std; + +#include +using namespace boost::python; + +#include "vlsisapd/agds/Library.h" +#include "vlsisapd/agds/Structure.h" +#include "vlsisapd/agds/Element.h" +#include "vlsisapd/agds/Rectangle.h" + +namespace AGDS { +BOOST_PYTHON_MODULE(pyAGDS) { + // class AGDS::Element + class_("Element", no_init) // abstract class : noncopyable + no_init + ; + + // class AGDS::Rectangle + class_ >("Rectangle", init()) + ; + + // class AGDS::Structure + class_("Structure", init()) + .def("addElement", &Structure::addElement ) + .def("getName" , &Structure::getName ) + ; + + // class AGDS::Library + class_("Library", init()) + .def("setUserUnits", &Library::setUserUnits) + .def("setPhysUnits", &Library::setPhysUnits) + .def("addStructure", &Library::addStructure) + .def("writeToFile" , &Library::writeToFile ) + ; +} +} // namespace diff --git a/vlsisapd/src/agds/src/GdsRectangle.cpp b/vlsisapd/src/agds/src/Rectangle.cpp similarity index 70% rename from vlsisapd/src/agds/src/GdsRectangle.cpp rename to vlsisapd/src/agds/src/Rectangle.cpp index 673df17e..fbbc14be 100644 --- a/vlsisapd/src/agds/src/GdsRectangle.cpp +++ b/vlsisapd/src/agds/src/Rectangle.cpp @@ -2,21 +2,21 @@ #include using namespace std; -#include "vlsisapd/agds/GdsRectangle.h" +#include "vlsisapd/agds/Rectangle.h" -namespace vlsisapd { -GdsElement::~GdsElement () { } +namespace AGDS { +Element::~Element () { } -GdsRectangle::GdsRectangle(int layer, double xmin, double ymin, double xmax, double ymax) - : GdsElement(layer) +Rectangle::Rectangle(int layer, double xmin, double ymin, double xmax, double ymax) + : Element(layer) , _xmin(xmin) , _ymin(ymin) , _xmax(xmax) , _ymax(ymax) {} -GdsRectangle::~GdsRectangle () { } +Rectangle::~Rectangle () { } -bool GdsRectangle::write(ofstream &file) { +bool Rectangle::write(ofstream &file) { file << "BOUNDARY;" << endl << "LAYER " << _layer << ";" << endl << "DATATYPE 0;" << endl @@ -31,4 +31,4 @@ bool GdsRectangle::write(ofstream &file) { return true; } -} +} // namespace diff --git a/vlsisapd/src/agds/src/GdsStructure.cpp b/vlsisapd/src/agds/src/Structure.cpp similarity index 69% rename from vlsisapd/src/agds/src/GdsStructure.cpp rename to vlsisapd/src/agds/src/Structure.cpp index 34f13688..ae61b556 100644 --- a/vlsisapd/src/agds/src/GdsStructure.cpp +++ b/vlsisapd/src/agds/src/Structure.cpp @@ -2,24 +2,25 @@ #include using namespace std; -#include "vlsisapd/agds/GdsStructure.h" +#include "vlsisapd/agds/Structure.h" +#include "vlsisapd/agds/Element.h" -namespace vlsisapd { -GdsStructure::GdsStructure(string strName) +namespace AGDS { +Structure::Structure(string strName) : _strName(strName) {} -bool GdsStructure::addElement(GdsElement* gdsElement) { +bool Structure::addElement(Element* gdsElement) { if(gdsElement) _elements.push_back(gdsElement); else { - cerr << "[GDS DRIVE ERROR]: cannot hold GdsElement." << endl; + cerr << "[GDS DRIVE ERROR]: cannot hold Element." << endl; return false; } return true; } -bool GdsStructure::write(ofstream &file) { +bool Structure::write(ofstream &file) { time_t curtime = time(0); tm now = *localtime(&curtime); char date[BUFSIZ]={0}; @@ -35,7 +36,7 @@ bool GdsStructure::write(ofstream &file) { << endl; // For each Element : write element. - for ( vector::iterator it = _elements.begin() ; it < _elements.end() ; it++ ) { + for ( vector::iterator it = _elements.begin() ; it < _elements.end() ; it++ ) { (*it)->write(file); } diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/Element.h b/vlsisapd/src/agds/src/vlsisapd/agds/Element.h new file mode 100644 index 00000000..a8f764d7 --- /dev/null +++ b/vlsisapd/src/agds/src/vlsisapd/agds/Element.h @@ -0,0 +1,20 @@ +#ifndef __GDS_ELEMENT_H +#define __GDS_ELEMENT_H + +namespace AGDS { +class Element { + protected: + inline Element (int layer); + + public: + virtual ~Element (); + virtual bool write (std::ofstream &file) = 0; + + protected: + int _layer; +}; + +inline Element::Element(int layer) : _layer(layer) {} +} +#endif + diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/GdsElement.h b/vlsisapd/src/agds/src/vlsisapd/agds/GdsElement.h deleted file mode 100644 index a69c63fe..00000000 --- a/vlsisapd/src/agds/src/vlsisapd/agds/GdsElement.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef __GDS_ELEMENT_H -#define __GDS_ELEMENT_H - -namespace vlsisapd { -class GdsElement { - protected: - inline GdsElement (int layer); - virtual ~GdsElement (); - - public: - virtual bool write ( ofstream &file ) = 0; - - protected: - int _layer; -}; - -inline GdsElement::GdsElement(int layer) : _layer(layer) {} -} -#endif - diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/GdsLibrary.h b/vlsisapd/src/agds/src/vlsisapd/agds/GdsLibrary.h deleted file mode 100644 index d02a94f8..00000000 --- a/vlsisapd/src/agds/src/vlsisapd/agds/GdsLibrary.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef __GDS_LIBRARY_H -#define __GDS_LIBRARY_H - -#include -using namespace std; - -#include "vlsisapd/agds/GdsStructure.h" - -namespace vlsisapd { -class GdsLibrary { - public: - GdsLibrary(string libName); - - inline void setUserUnits ( double userUnits ); - inline void setPhysUnits ( double physUnits ); - - bool addStructure ( GdsStructure* ); - bool write ( string fileName ); - - private: - string _libName; - double _userUnits; - double _physUnits; - - vector _structs; -}; - -inline void GdsLibrary::setUserUnits(double userUnits) { _userUnits = userUnits; }; -inline void GdsLibrary::setPhysUnits(double physUnits) { _physUnits = physUnits; }; -} // namespace -#endif diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/GdsRectangle.h b/vlsisapd/src/agds/src/vlsisapd/agds/GdsRectangle.h deleted file mode 100644 index 2758e772..00000000 --- a/vlsisapd/src/agds/src/vlsisapd/agds/GdsRectangle.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef __GDS_RECTANGLE_H -#define __GDS_RECTANGLE_H - -#include - -#include "vlsisapd/agds/GdsElement.h" - -namespace vlsisapd { -class GdsRectangle : public GdsElement { - public: - GdsRectangle (int layer, double xmin, double ymin, double xmax, double ymax); - virtual ~GdsRectangle (); - virtual bool write ( ofstream &file ); - private: - double _xmin; - double _ymin; - double _xmax; - double _ymax; -}; -} -#endif - diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/GdsStructure.h b/vlsisapd/src/agds/src/vlsisapd/agds/GdsStructure.h deleted file mode 100644 index ed6fd6b2..00000000 --- a/vlsisapd/src/agds/src/vlsisapd/agds/GdsStructure.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef __GDS_STRUCTURE_H -#define __GDS_STRUCTURE_H - -#include -#include -#include -using namespace std; - -#include "vlsisapd/agds/GdsElement.h" - -namespace vlsisapd { -class GdsStructure { - public: - GdsStructure(string strName); - - bool addElement ( GdsElement* ); - bool write ( ofstream &file ); - - inline string getName(); - - private: - string _strName; - - vector _elements; -}; - -inline string GdsStructure::getName() { return _strName; }; -} -#endif diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/Library.h b/vlsisapd/src/agds/src/vlsisapd/agds/Library.h new file mode 100644 index 00000000..08dd44f2 --- /dev/null +++ b/vlsisapd/src/agds/src/vlsisapd/agds/Library.h @@ -0,0 +1,30 @@ +#ifndef __GDS_LIBRARY_H +#define __GDS_LIBRARY_H + +#include + +namespace AGDS { +class Structure; + +class Library { + public: + Library(std::string libName); + + inline void setUserUnits ( double userUnits ); + inline void setPhysUnits ( double physUnits ); + + bool addStructure ( Structure* ); + bool writeToFile ( std::string fileName ); + + private: + std::string _libName; + double _userUnits; + double _physUnits; + + std::vector _structs; +}; + +inline void Library::setUserUnits(double userUnits) { _userUnits = userUnits; }; +inline void Library::setPhysUnits(double physUnits) { _physUnits = physUnits; }; +} // namespace +#endif diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/Rectangle.h b/vlsisapd/src/agds/src/vlsisapd/agds/Rectangle.h new file mode 100644 index 00000000..c827acbc --- /dev/null +++ b/vlsisapd/src/agds/src/vlsisapd/agds/Rectangle.h @@ -0,0 +1,22 @@ +#ifndef __GDS_RECTANGLE_H +#define __GDS_RECTANGLE_H + +#include + +#include "vlsisapd/agds/Element.h" + +namespace AGDS { +class Rectangle : public Element { + public: + Rectangle (int layer, double xmin, double ymin, double xmax, double ymax); + virtual ~Rectangle (); + virtual bool write(std::ofstream &file); + private: + double _xmin; + double _ymin; + double _xmax; + double _ymax; +}; +} +#endif + diff --git a/vlsisapd/src/agds/src/vlsisapd/agds/Structure.h b/vlsisapd/src/agds/src/vlsisapd/agds/Structure.h new file mode 100644 index 00000000..e361425a --- /dev/null +++ b/vlsisapd/src/agds/src/vlsisapd/agds/Structure.h @@ -0,0 +1,28 @@ +#ifndef __GDS_STRUCTURE_H +#define __GDS_STRUCTURE_H + +#include +#include +#include + +namespace AGDS { +class Element; + +class Structure { + public: + Structure(std::string strName); + + bool addElement ( Element* ); + bool write ( std::ofstream &file ); + + inline std::string getName(); + + private: + std::string _strName; + + std::vector _elements; +}; + +inline std::string Structure::getName() { return _strName; }; +} +#endif diff --git a/vlsisapd/src/cif/src/CMakeLists.txt b/vlsisapd/src/cif/src/CMakeLists.txt index 98a03c04..2f3a02e9 100644 --- a/vlsisapd/src/cif/src/CMakeLists.txt +++ b/vlsisapd/src/cif/src/CMakeLists.txt @@ -1,13 +1,27 @@ -INCLUDE_DIRECTORIES(${CHAMS_SOURCE_DIR}/src/cif/src) +INCLUDE_DIRECTORIES(${VLSISAPD_SOURCE_DIR}/src/cif/src ${Boost_INCLUDE_DIRS} ${PYTHON_INCLUDE_PATH}) -SET ( includes vlsisapd/cif/CifCircuit.h - vlsisapd/cif/CifPolygon.h +SET ( hpps vlsisapd/cif/Circuit.h + vlsisapd/cif/Polygon.h ) -SET ( cpps CifCircuit.cpp - CifPolygon.cpp +SET ( cpps Circuit.cpp + Polygon.cpp + ) +SET ( pycpps PyCif.cpp + ${cpps} ) ADD_LIBRARY(cif ${cpps}) INSTALL(TARGETS cif DESTINATION lib${LIB_SUFFIX}) -INSTALL(FILES ${includes} DESTINATION include/vlsisapd/cif) +INSTALL(FILES ${hpps} DESTINATION include/vlsisapd/cif) + +IF(Boost_FOUND) + ADD_LIBRARY(pyCIF MODULE ${pycpps}) + SET_TARGET_PROPERTIES(pyCIF PROPERTIES + COMPILE_FLAGS "${COMPILE_FLAGS} -D__PYTHON_MODULE__=1" + PREFIX "" + ) + TARGET_LINK_LIBRARIES(pyCIF cif ${Boost_LIBRARIES} ${PYTHON_LIBRARIES}) + INSTALL(TARGETS pyCIF DESTINATION ${PYTHON_SITE_PACKAGES}) +ENDIF(Boost_FOUND) + diff --git a/vlsisapd/src/cif/src/CifCircuit.cpp b/vlsisapd/src/cif/src/Circuit.cpp similarity index 73% rename from vlsisapd/src/cif/src/CifCircuit.cpp rename to vlsisapd/src/cif/src/Circuit.cpp index 7789c8e9..ddb6f165 100644 --- a/vlsisapd/src/cif/src/CifCircuit.cpp +++ b/vlsisapd/src/cif/src/Circuit.cpp @@ -3,15 +3,14 @@ #include using namespace std; -#include "vlsisapd/cif/CifCircuit.h" -#include "vlsisapd/cif/CifPolygon.h" +#include "vlsisapd/cif/Circuit.h" +#include "vlsisapd/cif/Polygon.h" -namespace vlsisapd { - -CifCircuit::CifCircuit(string name, string unit, double scale) : _name(name), _unit(unit), _scale(scale) {} +namespace CIF { +Circuit::Circuit(string name, string unit, double scale) : _name(name), _unit(unit), _scale(scale) {} -bool CifCircuit::addPolygon(CifPolygon* polygon) { +bool Circuit::addPolygon(Polygon* polygon) { if(polygon) _polygons.push_back(polygon); else { @@ -21,7 +20,7 @@ bool CifCircuit::addPolygon(CifPolygon* polygon) { return true; } -bool CifCircuit::write(string filename) { +bool Circuit::writeToFile(string filename) { time_t curtime = time(0); tm now = *localtime(&curtime); char date[BUFSIZ]={0}; @@ -38,7 +37,7 @@ bool CifCircuit::write(string filename) { << "9 " << _name << ";" << endl; // For each Polygon : write polygon. - for ( vector::iterator it = _polygons.begin() ; it < _polygons.end() ; it++ ) { + for ( vector::iterator it = _polygons.begin() ; it < _polygons.end() ; it++ ) { (*it)->write(file); } diff --git a/vlsisapd/src/cif/src/CifPolygon.cpp b/vlsisapd/src/cif/src/Polygon.cpp similarity index 67% rename from vlsisapd/src/cif/src/CifPolygon.cpp rename to vlsisapd/src/cif/src/Polygon.cpp index 815b6c76..c82502d4 100644 --- a/vlsisapd/src/cif/src/CifPolygon.cpp +++ b/vlsisapd/src/cif/src/Polygon.cpp @@ -3,18 +3,17 @@ #include using namespace std; -#include "vlsisapd/cif/CifPolygon.h" +#include "vlsisapd/cif/Polygon.h" -namespace vlsisapd { - -CifPolygon::CifPolygon(long layer) : _layer(layer) {} +namespace CIF { +Polygon::Polygon(long layer) : _layer(layer) {} -void CifPolygon::addPoint(long x, long y) { +void Polygon::addPoint(long x, long y) { _points.push_back(pair(x,y)); } -void CifPolygon::write(ofstream& file) { +void Polygon::write(ofstream& file) { file << "L " << _layer << "; P"; // For each point : write point. diff --git a/vlsisapd/src/cif/src/PyCif.cpp b/vlsisapd/src/cif/src/PyCif.cpp new file mode 100644 index 00000000..b85ebf2b --- /dev/null +++ b/vlsisapd/src/cif/src/PyCif.cpp @@ -0,0 +1,22 @@ +using namespace std; + +#include +using namespace boost::python; + +#include "vlsisapd/cif/Polygon.h" +#include "vlsisapd/cif/Circuit.h" + +namespace CIF { +BOOST_PYTHON_MODULE(pyCIF) { + // class CIF::Polygon + class_("Polygon", init()) + .def("addPoint", &Polygon::addPoint) + ; + + // class CIF::Circuit + class_("Circuit", init()) + .def("addPolygon" , &Circuit::addPolygon ) + .def("writeToFile", &Circuit::writeToFile) + ; +} +} // namespace diff --git a/vlsisapd/src/cif/src/vlsisapd/cif/CifCircuit.h b/vlsisapd/src/cif/src/vlsisapd/cif/CifCircuit.h deleted file mode 100644 index 3ffaef7b..00000000 --- a/vlsisapd/src/cif/src/vlsisapd/cif/CifCircuit.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef __CIF_CIRCUIT_H -#define __CIF_CIRCUIT_H - -#include - -namespace vlsisapd { -class CifPolygon; -class CifCircuit { - public: - CifCircuit(string name, string unit, double scale); - - bool addPolygon ( CifPolygon* ); - bool write ( string ); - - private: - string _name; - string _unit; - double _scale; - - std::vector _polygons; -}; -} // namespace -#endif diff --git a/vlsisapd/src/cif/src/vlsisapd/cif/Circuit.h b/vlsisapd/src/cif/src/vlsisapd/cif/Circuit.h new file mode 100644 index 00000000..3d3d0173 --- /dev/null +++ b/vlsisapd/src/cif/src/vlsisapd/cif/Circuit.h @@ -0,0 +1,23 @@ +#ifndef __CIF_CIRCUIT_H +#define __CIF_CIRCUIT_H + +#include + +namespace CIF { +class Polygon; +class Circuit { + public: + Circuit(std::string name, std::string unit, double scale); + + bool addPolygon ( Polygon* ); + bool writeToFile ( std::string ); + + private: + string _name; + string _unit; + double _scale; + + std::vector _polygons; +}; +} // namespace +#endif diff --git a/vlsisapd/src/cif/src/vlsisapd/cif/CifPolygon.h b/vlsisapd/src/cif/src/vlsisapd/cif/Polygon.h similarity index 81% rename from vlsisapd/src/cif/src/vlsisapd/cif/CifPolygon.h rename to vlsisapd/src/cif/src/vlsisapd/cif/Polygon.h index 4dc82981..08cf7af6 100644 --- a/vlsisapd/src/cif/src/vlsisapd/cif/CifPolygon.h +++ b/vlsisapd/src/cif/src/vlsisapd/cif/Polygon.h @@ -4,10 +4,10 @@ #include #include -namespace vlsisapd { -class CifPolygon { +namespace CIF { +class Polygon { public: - CifPolygon(long); + Polygon(long); void addPoint (long, long); void write ( ofstream& ); diff --git a/vlsisapd/src/dtr/src/CMakeLists.txt b/vlsisapd/src/dtr/src/CMakeLists.txt index fb011e42..02f82514 100644 --- a/vlsisapd/src/dtr/src/CMakeLists.txt +++ b/vlsisapd/src/dtr/src/CMakeLists.txt @@ -1,12 +1,3 @@ -FIND_PACKAGE(Boost 1.32.0 COMPONENTS python) -IF (Boost_FOUND) - MESSAGE(STATUS "Found Boost.Python libraries in ${Boost_INCLUDE_DIR} as ${Boost_LIBRARIES}") - FIND_PACKAGE(PythonLibs REQUIRED) -ELSE (Boost_FOUND) - MESSAGE(STATUS "Boost.Python libraries were not found") -ENDIF (Boost_FOUND) - - INCLUDE_DIRECTORIES(${VLSISAPD_SOURCE_DIR}/src/dtr/src ${LIBXML2_INCLUDE_DIR} ${Boost_INCLUDE_DIRS} ${PYTHON_INCLUDE_PATH}) SET ( hpps vlsisapd/dtr/Techno.h