Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hcana
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jlab
hallc
analyzer_software
hcana
Commits
4a129617
Commit
4a129617
authored
11 years ago
by
Stephen A. Wood
Browse files
Options
Downloads
Patches
Plain Diff
Script to generate root style class documentation
parent
d209b394
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
docs/doc_footer.html
+10
-0
10 additions, 0 deletions
docs/doc_footer.html
docs/doc_header.html
+20
-0
20 additions, 0 deletions
docs/doc_header.html
docs/makehtmldoc.C
+25
-0
25 additions, 0 deletions
docs/makehtmldoc.C
with
58 additions
and
0 deletions
.gitignore
+
3
−
0
View file @
4a129617
...
...
@@ -36,6 +36,9 @@ config.log
*.os
\#*\#
# THtml generated documentation directory
docs/htmldoc
# Examples directory
examples/*.root
examples/*.log.*
...
...
This diff is collapsed.
Click to expand it.
docs/doc_footer.html
0 → 100755
+
10
−
0
View file @
4a129617
<br
/>
<!--SIGNATURE-->
<div
id=
"footer"
>
<em>
»
Author: %AUTHOR%
</em><em>
»
Copyright %COPYRIGHT%
</em><br
/>
<em>
»
Last changed: %CHANGED%
</em><em>
»
Last generated: %GENERATED%
</em><br
/>
<em>
This page has been automatically generated.
</em>
</div>
</div>
</body>
</html>
This diff is collapsed.
Click to expand it.
docs/doc_header.html
0 → 100755
+
20
−
0
View file @
4a129617
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xml:lang=
"en"
lang=
"en"
>
<!-- -->
<!-- Author: ROOT team (rootdev@pcroot.cern.ch) -->
<!-- -->
<!-- Date: %DATE% -->
<!-- -->
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=%CHARSET%"
/>
<title>
%TITLE%
</title>
<meta
name=
"rating"
content=
"General"
/>
<meta
name=
"objecttype"
content=
"Manual"
/>
<meta
name=
"keywords"
content=
"jlab, cebaf, Hall C, SHMS, HMS"
/>
<meta
name=
"description"
content=
"Hall C ROOT/C++ Analyzer."
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"%RELDIR%ROOT.css"
id=
"ROOTstyle"
/>
<script
type=
"text/javascript"
src=
"%RELDIR%ROOT.js"
></script>
</head>
<body
onload=
"javascript:SetValuesFromCookie();"
><div
id=
"body_content"
>
<div><center><img
src=
"https://hallcweb.jlab.org/HallC-logo.png"
alt=
"Hall C logo"
/></center></div>
This diff is collapsed.
Click to expand it.
docs/makehtmldoc.C
0 → 100644
+
25
−
0
View file @
4a129617
// Generate some autodoc pages by running
// ../hcana makehtmldoc.C
makehtmldoc
()
{
THtml
html
;
// Enable the "viewVC header" and "viewVC source" links to work
// But will only work for hcana classes. Links will be broken for
// THa classes.
// Could probably go through all the THa*.html files that are created
// and fix these links, but would need to know the podd branch we are on.
html
.
SetViewCVS
(
"https://github.com/JeffersonLab/hcana/tree/develop/"
);
html
.
SetProductName
(
"Hall C Analysis Code HCANA"
);
html
.
SetSourceDir
(
"..:../podd"
);
html
.
SetIncludePath
(
".."
);
html
.
SetHeader
(
"doc_header.html"
);
html
.
SetFooter
(
"doc_footer.html"
);
// Create documentation pages for all Classes, hcana and podd
html
.
MakeAll
();
// Remake the index to list only hcana Classes. Since the
// THa Class document pages were made, we can still click through to
// the THa classes
html
.
MakeIndex
(
"THc"
);
}
//
// To install, do
// rsync -a -e ssh htmldoc/ jlabl1:/group/hallc/www/hallcweb/html/hcanadoc/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment