Main Page   Namespace List   File List   Namespace Members   File Members  

Doxyfile

Go to the documentation of this file.
00001 # Doxyfile 1.2.0
00002 
00003 # This file describes the settings to be used by doxygen for a project
00004 #
00005 # All text after a hash (#) is considered a comment and will be ignored
00006 # The format is:
00007 #       TAG = value [value, ...]
00008 # Values that contain spaces should be placed between quotes (" ")
00009 
00010 #---------------------------------------------------------------------------
00011 # General configuration options
00012 #---------------------------------------------------------------------------
00013 
00014 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
00015 # by quotes) that should identify the project. 
00016 
00017 PROJECT_NAME          = 
00018 
00019 # The PROJECT_NUMBER tag can be used to enter a project or revision number. 
00020 # This could be handy for archiving the generated documentation or 
00021 # if some version control system is used.
00022 
00023 PROJECT_NUMBER        = 
00024 
00025 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
00026 # base path where the generated documentation will be put. 
00027 # If a relative path is entered, it will be relative to the location 
00028 # where doxygen was started. If left blank the current directory will be used.
00029 
00030 OUTPUT_DIRECTORY      = 
00031 
00032 # The OUTPUT_LANGUAGE tag is used to specify the language in which all 
00033 # documentation generated by doxygen is written. Doxygen will use this 
00034 # information to generate all constant output in the proper language. 
00035 # The default language is English, other supported languages are: 
00036 # Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, 
00037 # Spanish, Russian, Croatian and Polish.
00038 
00039 OUTPUT_LANGUAGE       = English
00040 
00041 # The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
00042 # top of each HTML page. The value NO (the default) enables the index and 
00043 # the value YES disables it. 
00044 
00045 DISABLE_INDEX         = NO
00046 
00047 # If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
00048 # documentation are documented, even if no documentation was available. 
00049 # Private class members and static file members will be hidden unless 
00050 # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES 
00051 
00052 EXTRACT_ALL           = YES
00053 
00054 # If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
00055 # will be included in the documentation. 
00056 
00057 EXTRACT_PRIVATE       = YES
00058 
00059 # If the EXTRACT_STATIC tag is set to YES all static members of a file 
00060 # will be included in the documentation. 
00061 
00062 EXTRACT_STATIC        = NO
00063 
00064 # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
00065 # undocumented members of documented classes, files or namespaces. 
00066 # If set to NO (the default) these members will be included in the 
00067 # various overviews, but no documentation section is generated. 
00068 # This option has no effect if EXTRACT_ALL is enabled. 
00069 
00070 HIDE_UNDOC_MEMBERS    = NO
00071 
00072 # If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
00073 # undocumented classes that are normally visible in the class hierarchy. 
00074 # If set to NO (the default) these class will be included in the various 
00075 # overviews. This option has no effect if EXTRACT_ALL is enabled. 
00076 
00077 HIDE_UNDOC_CLASSES    = NO
00078 
00079 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
00080 # include brief member descriptions after the members that are listed in 
00081 # the file and class documentation (similar to JavaDoc). 
00082 # Set to NO to disable this. 
00083 
00084 BRIEF_MEMBER_DESC     = YES
00085 
00086 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
00087 # the brief description of a member or function before the detailed description. 
00088 # Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
00089 # brief descriptions will be completely suppressed. 
00090 
00091 REPEAT_BRIEF          = YES
00092 
00093 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
00094 # Doxygen will generate a detailed section even if there is only a brief 
00095 # description. 
00096 
00097 ALWAYS_DETAILED_SEC   = NO
00098 
00099 # If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
00100 # path before files name in the file list and in the header files. If set 
00101 # to NO the shortest path that makes the file name unique will be used. 
00102 
00103 FULL_PATH_NAMES       = NO
00104 
00105 # If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
00106 # can be used to strip a user defined part of the path. Stripping is 
00107 # only done if one of the specified strings matches the left-hand part of 
00108 # the path. It is allowed to use relative paths in the argument list.
00109 
00110 STRIP_FROM_PATH       = 
00111 
00112 # The INTERNAL_DOCS tag determines if documentation 
00113 # that is typed after a \internal command is included. If the tag is set 
00114 # to NO (the default) then the documentation will be excluded. 
00115 # Set it to YES to include the internal documentation. 
00116 
00117 INTERNAL_DOCS         = NO
00118 
00119 # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
00120 # generate a class diagram (in Html and LaTeX) for classes with base or 
00121 # super classes. Setting the tag to NO turns the diagrams off. 
00122 
00123 CLASS_DIAGRAMS        = YES
00124 
00125 # If the SOURCE_BROWSER tag is set to YES then a list of source files will 
00126 # be generated. Documented entities will be cross-referenced with these sources. 
00127 
00128 SOURCE_BROWSER        = YES
00129 
00130 # Setting the INLINE_SOURCES tag to YES will include the body 
00131 # of functions and classes directly in the documentation. 
00132 
00133 INLINE_SOURCES        = NO
00134 
00135 # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
00136 # doxygen to hide any special comment blocks from generated source code 
00137 # fragments. Normal C and C++ comments will always remain visible. 
00138 
00139 STRIP_CODE_COMMENTS   = YES
00140 
00141 # If the CASE_SENSE_NAMES tag is set to NO (the default) then Doxygen 
00142 # will only generate file names in lower case letters. If set to 
00143 # YES upper case letters are also allowed. This is useful if you have 
00144 # classes or files whose names only differ in case and if your file system 
00145 # supports case sensitive file names. 
00146 
00147 CASE_SENSE_NAMES      = YES
00148 
00149 # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
00150 # will show members with their full class and namespace scopes in the 
00151 # documentation. If set to YES the scope will be hidden. 
00152 
00153 HIDE_SCOPE_NAMES      = NO
00154 
00155 # If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
00156 # will generate a verbatim copy of the header file for each class for 
00157 # which an include is specified. Set to NO to disable this. 
00158 
00159 VERBATIM_HEADERS      = YES
00160 
00161 # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
00162 # will put list of the files that are included by a file in the documentation 
00163 # of that file. 
00164 
00165 SHOW_INCLUDE_FILES    = YES
00166 
00167 # If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen 
00168 # will interpret the first line (until the first dot) of a JavaDoc-style 
00169 # comment as the brief description. If set to NO, the Javadoc-style will 
00170 # behave just like the Qt-style comments. 
00171 
00172 JAVADOC_AUTOBRIEF     = YES
00173 
00174 # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
00175 # member inherits the documentation from any documented member that it 
00176 # reimplements. 
00177 
00178 INHERIT_DOCS          = YES
00179 
00180 # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
00181 # is inserted in the documentation for inline members. 
00182 
00183 INLINE_INFO           = YES
00184 
00185 # If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
00186 # will sort the (detailed) documentation of file and class members 
00187 # alphabetically by member name. If set to NO the members will appear in 
00188 # declaration order. 
00189 
00190 SORT_MEMBER_DOCS      = YES
00191 
00192 # The TAB_SIZE tag can be used to set the number of spaces in a tab. 
00193 # Doxygen uses this value to replace tabs by spaces in code fragments. 
00194 
00195 TAB_SIZE              = 8
00196 
00197 # The ENABLE_SECTIONS tag can be used to enable conditional 
00198 # documentation sections, marked by \if sectionname ... \endif. 
00199 
00200 ENABLED_SECTIONS      = 
00201 
00202 #---------------------------------------------------------------------------
00203 # configuration options related to warning and progress messages
00204 #---------------------------------------------------------------------------
00205 
00206 # The QUIET tag can be used to turn on/off the messages that are generated 
00207 # by doxygen. Possible values are YES and NO. If left blank NO is used. 
00208 
00209 QUIET                 = YES
00210 
00211 # The WARNINGS tag can be used to turn on/off the warning messages that are 
00212 # generated by doxygen. Possible values are YES and NO. If left blank 
00213 # NO is used. 
00214 
00215 WARNINGS              = NO
00216 
00217 # If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
00218 # for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
00219 # automatically be disabled. 
00220 
00221 WARN_IF_UNDOCUMENTED  = YES
00222 
00223 # The WARN_FORMAT tag determines the format of the warning messages that 
00224 # doxygen can produce. The string should contain the $file, $line, and $text 
00225 # tags, which will be replaced by the file and line number from which the 
00226 # warning originated and the warning text. 
00227 
00228 WARN_FORMAT           = "$file:$line: $text"
00229 
00230 #---------------------------------------------------------------------------
00231 # configuration options related to the input files
00232 #---------------------------------------------------------------------------
00233 
00234 # The INPUT tag can be used to specify the files and/or directories that contain 
00235 # documented source files. You may enter file names like "myfile.cpp" or 
00236 # directories like "/usr/src/myproject". Separate the files or directories 
00237 # with spaces. 
00238 
00239 INPUT                 = CVS ChangeLog Doxyfile GlastPolicy cmt doc src 
00240 
00241 # If the value of the INPUT tag contains directories, you can use the 
00242 # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
00243 # and *.h) to filter out the source-files in the directories. If left 
00244 # blank all files are included. 
00245 
00246 FILE_PATTERNS         = *.h *.hpp *.cpp *.cxx
00247 
00248 # The RECURSIVE tag can be used to turn specify whether or not subdirectories 
00249 # should be searched for input files as well. Possible values are YES and NO. 
00250 # If left blank NO is used. 
00251 
00252 RECURSIVE             = YES
00253 
00254 # The EXCLUDE tag can be used to specify files and/or directories that should 
00255 # excluded from the INPUT source files. This way you can easily exclude a 
00256 # subdirectory from a directory tree whose root is specified with the INPUT tag. 
00257 
00258 EXCLUDE               = 
00259 
00260 # If the value of the INPUT tag contains directories, you can use the 
00261 # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
00262 # certain files from those directories. 
00263 
00264 EXCLUDE_PATTERNS      = 
00265 
00266 # The EXAMPLE_PATH tag can be used to specify one or more files or 
00267 # directories that contain example code fragments that are included (see 
00268 # the \include command). 
00269 
00270 EXAMPLE_PATH          = /tmp/bfemDisplay_v2r4p1/GlastPolicy/v3/cmt
00271 
00272 # If the value of the EXAMPLE_PATH tag contains directories, you can use the 
00273 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
00274 # and *.h) to filter out the source-files in the directories. If left 
00275 # blank all files are included. 
00276 
00277 EXAMPLE_PATTERNS      = 
00278 
00279 # The IMAGE_PATH tag can be used to specify one or more files or 
00280 # directories that contain image that are included in the documentation (see 
00281 # the \image command). 
00282 
00283 IMAGE_PATH            = 
00284 
00285 # The INPUT_FILTER tag can be used to specify a program that doxygen should 
00286 # invoke to filter for each input file. Doxygen will invoke the filter program 
00287 # by executing (via popen()) the command <filter> <input-file>, where <filter> 
00288 # is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
00289 # input file. Doxygen will then use the output that the filter program writes 
00290 # to standard output. 
00291 
00292 INPUT_FILTER          = 
00293 
00294 #---------------------------------------------------------------------------
00295 # configuration options related to the alphabetical class index
00296 #---------------------------------------------------------------------------
00297 
00298 # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
00299 # of all compounds will be generated. Enable this if the project 
00300 # contains a lot of classes, structs, unions or interfaces. 
00301 
00302 ALPHABETICAL_INDEX    = NO
00303 
00304 # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
00305 # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
00306 # in which this list will be split (can be a number in the range [1..20]) 
00307 
00308 COLS_IN_ALPHA_INDEX   = 5
00309 
00310 # In case all classes in a project start with a common prefix, all 
00311 # classes will be put under the same header in the alphabetical index. 
00312 # The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
00313 # should be ignored while generating the index headers. 
00314 
00315 IGNORE_PREFIX         = 
00316 
00317 #---------------------------------------------------------------------------
00318 # configuration options related to the HTML output
00319 #---------------------------------------------------------------------------
00320 
00321 # If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
00322 # generate HTML output. 
00323 
00324 GENERATE_HTML         = YES
00325 
00326 # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
00327 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
00328 # put in front of it. If left blank `html' will be used as the default path. 
00329 
00330 HTML_OUTPUT           = /afs/slac/www/exp/glast/ground/software/checkout_package_documentation/bfemDisplay_v2r4p1/GlastPolicy/v3/
00331 
00332 # The HTML_HEADER tag can be used to specify a personal HTML header for 
00333 # each generated HTML page. If it is left blank doxygen will generate a 
00334 # standard header.
00335 
00336 HTML_HEADER           = 
00337 
00338 # The HTML_FOOTER tag can be used to specify a personal HTML footer for 
00339 # each generated HTML page. If it is left blank doxygen will generate a 
00340 # standard footer.
00341 
00342 HTML_FOOTER           = 
00343 
00344 # The HTML_STYLESHEET tag can be used to specify a user defined cascading 
00345 # style sheet that is used by each HTML page. It can be used to 
00346 # fine-tune the look of the HTML output. If the tag is left blank doxygen 
00347 # will generate a default style sheet 
00348 
00349 HTML_STYLESHEET       = 
00350 
00351 # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
00352 # files or namespaces will be aligned in HTML using tables. If set to 
00353 # NO a bullet list will be used. 
00354 
00355 HTML_ALIGN_MEMBERS    = YES
00356 
00357 # If the GENERATE_HTMLHELP tag is set to YES, additional index files 
00358 # will be generated that can be used as input for tools like the 
00359 # Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
00360 # of the generated HTML documentation. 
00361 
00362 GENERATE_HTMLHELP     = NO
00363 
00364 #---------------------------------------------------------------------------
00365 # configuration options related to the LaTeX output
00366 #---------------------------------------------------------------------------
00367 
00368 # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
00369 # generate Latex output. 
00370 
00371 GENERATE_LATEX        = NO
00372 
00373 # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
00374 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
00375 # put in front of it. If left blank `latex' will be used as the default path. 
00376 
00377 LATEX_OUTPUT          = latex
00378 
00379 # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
00380 # LaTeX documents. This may be useful for small projects and may help to 
00381 # save some trees in general. 
00382 
00383 COMPACT_LATEX         = NO
00384 
00385 # The PAPER_TYPE tag can be used to set the paper type that is used 
00386 # by the printer. Possible values are: a4, a4wide, letter, legal and 
00387 # executive. If left blank a4wide will be used. 
00388 
00389 PAPER_TYPE            = a4wide
00390 
00391 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
00392 # packages that should be included in the LaTeX output. 
00393 
00394 EXTRA_PACKAGES        = 
00395 
00396 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
00397 # the generated latex document. The header should contain everything until 
00398 # the first chapter. If it is left blank doxygen will generate a 
00399 # standard header. Notice: only use this tag if you know what you are doing! 
00400 
00401 LATEX_HEADER          = 
00402 
00403 # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
00404 # is prepared for conversion to pdf (using ps2pdf). The pdf file will 
00405 # contain links (just like the HTML output) instead of page references 
00406 # This makes the output suitable for online browsing using a pdf viewer. 
00407 
00408 PDF_HYPERLINKS        = NO
00409 
00410 # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
00411 # command to the generated LaTeX files. This will instruct LaTeX to keep 
00412 # running if errors occur, instead of asking the user for help. 
00413 # This option is also used when generating formulas in HTML. 
00414 
00415 LATEX_BATCHMODE       = NO
00416 
00417 #---------------------------------------------------------------------------
00418 # configuration options related to the RTF output
00419 #---------------------------------------------------------------------------
00420 
00421 # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
00422 # For now this is experimental and is disabled by default. The RTF output 
00423 # is optimised for Word 97 and may not look too pretty with other readers 
00424 # or editors.
00425 
00426 GENERATE_RTF          = NO
00427 
00428 # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
00429 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
00430 # put in front of it. If left blank `rtf' will be used as the default path. 
00431 
00432 RTF_OUTPUT            = rtf
00433 
00434 # If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
00435 # RTF documents. This may be useful for small projects and may help to 
00436 # save some trees in general. 
00437 
00438 COMPACT_RTF           = NO
00439 
00440 # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
00441 # will contain hyperlink fields. The RTF file will 
00442 # contain links (just like the HTML output) instead of page references. 
00443 # This makes the output suitable for online browsing using a WORD or other. 
00444 # programs which support those fields. 
00445 # Note: wordpad (write) and others do not support links. 
00446 
00447 RTF_HYPERLINKS        = NO
00448 
00449 # Load stylesheet definitions from file. Syntax is similar to doxygen's 
00450 # config file, i.e. a series of assigments. You only have to provide 
00451 # replacements, missing definitions are set to their default value. 
00452 
00453 RTF_STYLESHEET_FILE   = 
00454 
00455 #---------------------------------------------------------------------------
00456 # configuration options related to the man page output
00457 #---------------------------------------------------------------------------
00458 
00459 # If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
00460 # generate man pages 
00461 
00462 GENERATE_MAN          = NO
00463 
00464 # The MAN_OUTPUT tag is used to specify where the man pages will be put. 
00465 # If a relative path is entered the value of OUTPUT_DIRECTORY will be 
00466 # put in front of it. If left blank `man' will be used as the default path. 
00467 
00468 MAN_OUTPUT            = man
00469 
00470 # The MAN_EXTENSION tag determines the extension that is added to 
00471 # the generated man pages (default is the subroutine's section .3) 
00472 
00473 MAN_EXTENSION         = .3
00474 
00475 #---------------------------------------------------------------------------
00476 # Configuration options related to the preprocessor   
00477 #---------------------------------------------------------------------------
00478 
00479 # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
00480 # evaluate all C-preprocessor directives found in the sources and include 
00481 # files. 
00482 
00483 ENABLE_PREPROCESSING  = YES
00484 
00485 # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
00486 # names in the source code. If set to NO (the default) only conditional 
00487 # compilation will be performed. Macro expansion can be done in a controlled 
00488 # way by setting EXPAND_ONLY_PREDEF to YES. 
00489 
00490 MACRO_EXPANSION       = NO
00491 
00492 # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
00493 # then the macro expansion is limited to the macros specified with the 
00494 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 
00495 
00496 EXPAND_ONLY_PREDEF    = NO
00497 
00498 # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
00499 # in the INCLUDE_PATH (see below) will be search if a #include is found. 
00500 
00501 SEARCH_INCLUDES       = YES
00502 
00503 # The INCLUDE_PATH tag can be used to specify one or more directories that 
00504 # contain include files that are not input files but should be processed by 
00505 # the preprocessor. 
00506 
00507 INCLUDE_PATH          = 
00508 
00509 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
00510 # patterns (like *.h and *.hpp) to filter out the header-files in the 
00511 # directories. If left blank, the patterns specified with FILE_PATTERNS will 
00512 # be used. 
00513 
00514 INCLUDE_FILE_PATTERNS = 
00515 
00516 # The PREDEFINED tag can be used to specify one or more macro names that 
00517 # are defined before the preprocessor is started (similar to the -D option of 
00518 # gcc). The argument of the tag is a list of macros of the form: name 
00519 # or name=definition (no spaces). If the definition and the = are 
00520 # omitted =1 is assumed. 
00521 
00522 PREDEFINED            = 
00523 
00524 # If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then 
00525 # this tag can be used to specify a list of macro names that should be expanded. 
00526 # The macro definition that is found in the sources will be used. 
00527 # Use the PREDEFINED tag if you want to use a different macro definition. 
00528 
00529 EXPAND_AS_DEFINED     = 
00530 
00531 #---------------------------------------------------------------------------
00532 # Configuration::addtions related to external references   
00533 #---------------------------------------------------------------------------
00534 
00535 # The TAGFILES tag can be used to specify one or more tagfiles. 
00536 
00537 TAGFILES              = 
00538 
00539 # When a file name is specified after GENERATE_TAGFILE, doxygen will create 
00540 # a tag file that is based on the input files it reads. 
00541 
00542 GENERATE_TAGFILE      = 
00543 
00544 # If the ALLEXTERNALS tag is set to YES all external classes will be listed 
00545 # in the class index. If set to NO only the inherited external classes 
00546 # will be listed. 
00547 
00548 ALLEXTERNALS          = NO
00549 
00550 # The PERL_PATH should be the absolute path and name of the perl script 
00551 # interpreter (i.e. the result of `which perl'). 
00552 
00553 PERL_PATH             = /usr/bin/perl
00554 
00555 #---------------------------------------------------------------------------
00556 # Configuration options related to the dot tool   
00557 #---------------------------------------------------------------------------
00558 
00559 # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
00560 # available from the path. This tool is part of Graphviz, a graph visualization 
00561 # toolkit from AT&T and Lucent Bell Labs. The other options in this section 
00562 # have no effect if this option is set to NO (the default) 
00563 
00564 HAVE_DOT              = NO
00565 
00566 # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
00567 # will generate a graph for each documented class showing the direct and 
00568 # indirect inheritance relations. Setting this tag to YES will force the 
00569 # the CLASS_DIAGRAMS tag to NO.
00570 
00571 CLASS_GRAPH           = YES
00572 
00573 # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
00574 # will generate a graph for each documented class showing the direct and 
00575 # indirect implementation dependencies (inheritance, containment, and 
00576 # class references variables) of the class with other documented classes. 
00577 
00578 COLLABORATION_GRAPH   = YES
00579 
00580 # If the ENABLE_PREPROCESSING, INCLUDE_GRAPH, and HAVE_DOT tags are set to 
00581 # YES then doxygen will generate a graph for each documented file showing 
00582 # the direct and indirect include dependencies of the file with other 
00583 # documented files. 
00584 
00585 INCLUDE_GRAPH         = YES
00586 
00587 # If the ENABLE_PREPROCESSING, INCLUDED_BY_GRAPH, and HAVE_DOT tags are set to 
00588 # YES then doxygen will generate a graph for each documented header file showing 
00589 # the documented files that directly or indirectly include this file 
00590 
00591 INCLUDED_BY_GRAPH     = YES
00592 
00593 # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
00594 # will graphical hierarchy of all classes instead of a textual one. 
00595 
00596 GRAPHICAL_HIERARCHY   = YES
00597 
00598 # The tag DOT_PATH can be used to specify the path where the dot tool can be 
00599 # found. If left blank, it is assumed the dot tool can be found on the path. 
00600 
00601 DOT_PATH              = 
00602 
00603 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width 
00604 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 
00605 # this value, doxygen will try to truncate the graph, so that it fits within 
00606 # the specified constraint. Beware that most browsers cannot cope with very 
00607 # large images. 
00608 
00609 MAX_DOT_GRAPH_WIDTH   = 1024
00610 
00611 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height 
00612 # (in pixels) of the graphs generated by dot. If a graph becomes larger than 
00613 # this value, doxygen will try to truncate the graph, so that it fits within 
00614 # the specified constraint. Beware that most browsers cannot cope with very 
00615 # large images. 
00616 
00617 MAX_DOT_GRAPH_HEIGHT  = 1024
00618 
00619 #---------------------------------------------------------------------------
00620 # Configuration::addtions related to the search engine   
00621 #---------------------------------------------------------------------------
00622 
00623 # The SEARCHENGINE tag specifies whether or not a search engine should be 
00624 # used. If set to NO the values of all tags below this one will be ignored. 
00625 
00626 SEARCHENGINE          = NO
00627 
00628 # The CGI_NAME tag should be the name of the CGI script that 
00629 # starts the search engine (doxysearch) with the correct parameters. 
00630 # A script with this name will be generated by doxygen. 
00631 
00632 CGI_NAME              = search.cgi
00633 
00634 # The CGI_URL tag should be the absolute URL to the directory where the 
00635 # cgi binaries are located. See the documentation of your http daemon for 
00636 # details. 
00637 
00638 CGI_URL               = 
00639 
00640 # The DOC_URL tag should be the absolute URL to the directory where the 
00641 # documentation is located. If left blank the absolute path to the 
00642 # documentation, with file:// prepended to it, will be used. 
00643 
00644 DOC_URL               = 
00645 
00646 # The DOC_ABSPATH tag should be the absolute path to the directory where the 
00647 # documentation is located. If left blank the directory on the local machine 
00648 # will be used. 
00649 
00650 DOC_ABSPATH           = 
00651 
00652 # The BIN_ABSPATH tag must point to the directory where the doxysearch binary 
00653 # is installed. 
00654 
00655 BIN_ABSPATH           = /usr/local/bin/
00656 
00657 # The EXT_DOC_PATHS tag can be used to specify one or more paths to 
00658 # documentation generated for other projects. This allows doxysearch to search 
00659 # the documentation for these projects as well. 
00660 
00661 EXT_DOC_PATHS         = 

Generated at Wed Nov 14 20:41:44 2001 by doxygen1.2.3 written by Dimitri van Heesch, © 1997-2000