123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- var NAVTREE =
- [
- [ "PUMA", "index.html", [
- [ "Class List", "annotated.html", [
- [ "ArrayStruct", "struct_array_struct.html", null ],
- [ "BMIstruct", "struct_b_m_istruct.html", null ],
- [ "ColorStrip", "struct_color_strip.html", null ],
- [ "fftmod", "classfftmod.html", null ],
- [ "legsym", "classlegsym.html", null ],
- [ "MapImageStruct", "struct_map_image_struct.html", null ],
- [ "mpimod", "classmpimod.html", null ],
- [ "ParcStruct", "struct_parc_struct.html", null ],
- [ "PixStruct", "struct_pix_struct.html", null ],
- [ "prepmod::ppp_def_int", "interfaceprepmod_1_1ppp__def__int.html", null ],
- [ "prepmod::ppp_def_real", "interfaceprepmod_1_1ppp__def__real.html", null ],
- [ "prepmod::ppp_type", "structprepmod_1_1ppp__type.html", null ],
- [ "prepmod", "classprepmod.html", null ],
- [ "pumamod", "classpumamod.html", null ],
- [ "radmod", "classradmod.html", null ],
- [ "restartmod", "classrestartmod.html", null ],
- [ "WinAttStruct", "struct_win_att_struct.html", null ]
- ] ],
- [ "Data Types", "classes.html", null ],
- [ "Data Fields", "functions.html", null ],
- [ "File List", "files.html", [
- [ "/Users/home/WC/puma/src/fft991mod.f90", "fft991mod_8f90.html", null ],
- [ "/Users/home/WC/puma/src/fftmod.f90", "fftmod_8f90.html", null ],
- [ "/Users/home/WC/puma/src/gaussmod.f90", "gaussmod_8f90.html", null ],
- [ "/Users/home/WC/puma/src/guimod.f90", "guimod_8f90.html", null ],
- [ "/Users/home/WC/puma/src/guimod_stub.f90", "guimod__stub_8f90.html", null ],
- [ "/Users/home/WC/puma/src/legsym.f90", "legsym_8f90.html", null ],
- [ "/Users/home/WC/puma/src/mpimod.f90", "mpimod_8f90.html", null ],
- [ "/Users/home/WC/puma/src/mpimod_multi.f90", "mpimod__multi_8f90.html", null ],
- [ "/Users/home/WC/puma/src/mpimod_stub.f90", "mpimod__stub_8f90.html", null ],
- [ "/Users/home/WC/puma/src/ppp.f90", "ppp_8f90.html", null ],
- [ "/Users/home/WC/puma/src/puma.f90", "puma_8f90.html", null ],
- [ "/Users/home/WC/puma/src/pumax.c", "pumax_8c.html", null ],
- [ "/Users/home/WC/puma/src/pumax_stub.c", "pumax__stub_8c.html", null ],
- [ "/Users/home/WC/puma/src/restartmod.f90", "restartmod_8f90.html", null ]
- ] ],
- [ "File Members", "globals.html", null ]
- ] ]
- ];
- function createIndent(o,domNode,node,level)
- {
- if (node.parentNode && node.parentNode.parentNode)
- {
- createIndent(o,domNode,node.parentNode,level+1);
- }
- var imgNode = document.createElement("img");
- if (level==0 && node.childrenData)
- {
- node.plus_img = imgNode;
- node.expandToggle = document.createElement("a");
- node.expandToggle.href = "javascript:void(0)";
- node.expandToggle.onclick = function()
- {
- if (node.expanded)
- {
- $(node.getChildrenUL()).slideUp("fast");
- if (node.isLast)
- {
- node.plus_img.src = node.relpath+"ftv2plastnode.png";
- }
- else
- {
- node.plus_img.src = node.relpath+"ftv2pnode.png";
- }
- node.expanded = false;
- }
- else
- {
- expandNode(o, node, false);
- }
- }
- node.expandToggle.appendChild(imgNode);
- domNode.appendChild(node.expandToggle);
- }
- else
- {
- domNode.appendChild(imgNode);
- }
- if (level==0)
- {
- if (node.isLast)
- {
- if (node.childrenData)
- {
- imgNode.src = node.relpath+"ftv2plastnode.png";
- }
- else
- {
- imgNode.src = node.relpath+"ftv2lastnode.png";
- domNode.appendChild(imgNode);
- }
- }
- else
- {
- if (node.childrenData)
- {
- imgNode.src = node.relpath+"ftv2pnode.png";
- }
- else
- {
- imgNode.src = node.relpath+"ftv2node.png";
- domNode.appendChild(imgNode);
- }
- }
- }
- else
- {
- if (node.isLast)
- {
- imgNode.src = node.relpath+"ftv2blank.png";
- }
- else
- {
- imgNode.src = node.relpath+"ftv2vertline.png";
- }
- }
- imgNode.border = "0";
- }
- function newNode(o, po, text, link, childrenData, lastNode)
- {
- var node = new Object();
- node.children = Array();
- node.childrenData = childrenData;
- node.depth = po.depth + 1;
- node.relpath = po.relpath;
- node.isLast = lastNode;
- node.li = document.createElement("li");
- po.getChildrenUL().appendChild(node.li);
- node.parentNode = po;
- node.itemDiv = document.createElement("div");
- node.itemDiv.className = "item";
- node.labelSpan = document.createElement("span");
- node.labelSpan.className = "label";
- createIndent(o,node.itemDiv,node,0);
- node.itemDiv.appendChild(node.labelSpan);
- node.li.appendChild(node.itemDiv);
- var a = document.createElement("a");
- node.labelSpan.appendChild(a);
- node.label = document.createTextNode(text);
- a.appendChild(node.label);
- if (link)
- {
- a.href = node.relpath+link;
- }
- else
- {
- if (childrenData != null)
- {
- a.className = "nolink";
- a.href = "javascript:void(0)";
- a.onclick = node.expandToggle.onclick;
- node.expanded = false;
- }
- }
- node.childrenUL = null;
- node.getChildrenUL = function()
- {
- if (!node.childrenUL)
- {
- node.childrenUL = document.createElement("ul");
- node.childrenUL.className = "children_ul";
- node.childrenUL.style.display = "none";
- node.li.appendChild(node.childrenUL);
- }
- return node.childrenUL;
- };
- return node;
- }
- function showRoot()
- {
- var headerHeight = $("#top").height();
- var footerHeight = $("#nav-path").height();
- var windowHeight = $(window).height() - headerHeight - footerHeight;
- navtree.scrollTo('#selected',0,{offset:-windowHeight/2});
- }
- function expandNode(o, node, imm)
- {
- if (node.childrenData && !node.expanded)
- {
- if (!node.childrenVisited)
- {
- getNode(o, node);
- }
- if (imm)
- {
- $(node.getChildrenUL()).show();
- }
- else
- {
- $(node.getChildrenUL()).slideDown("fast",showRoot);
- }
- if (node.isLast)
- {
- node.plus_img.src = node.relpath+"ftv2mlastnode.png";
- }
- else
- {
- node.plus_img.src = node.relpath+"ftv2mnode.png";
- }
- node.expanded = true;
- }
- }
- function getNode(o, po)
- {
- po.childrenVisited = true;
- var l = po.childrenData.length-1;
- for (var i in po.childrenData)
- {
- var nodeData = po.childrenData[i];
- po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2],
- i==l);
- }
- }
- function findNavTreePage(url, data)
- {
- var nodes = data;
- var result = null;
- for (var i in nodes)
- {
- var d = nodes[i];
- if (d[1] == url)
- {
- return new Array(i);
- }
- else if (d[2] != null) // array of children
- {
- result = findNavTreePage(url, d[2]);
- if (result != null)
- {
- return (new Array(i).concat(result));
- }
- }
- }
- return null;
- }
- function initNavTree(toroot,relpath)
- {
- var o = new Object();
- o.toroot = toroot;
- o.node = new Object();
- o.node.li = document.getElementById("nav-tree-contents");
- o.node.childrenData = NAVTREE;
- o.node.children = new Array();
- o.node.childrenUL = document.createElement("ul");
- o.node.getChildrenUL = function() { return o.node.childrenUL; };
- o.node.li.appendChild(o.node.childrenUL);
- o.node.depth = 0;
- o.node.relpath = relpath;
- getNode(o, o.node);
- o.breadcrumbs = findNavTreePage(toroot, NAVTREE);
- if (o.breadcrumbs == null)
- {
- o.breadcrumbs = findNavTreePage("index.html",NAVTREE);
- }
- if (o.breadcrumbs != null && o.breadcrumbs.length>0)
- {
- var p = o.node;
- for (var i in o.breadcrumbs)
- {
- var j = o.breadcrumbs[i];
- p = p.children[j];
- expandNode(o,p,true);
- }
- p.itemDiv.className = p.itemDiv.className + " selected";
- p.itemDiv.id = "selected";
- $(window).load(showRoot);
- }
- }
|