Skip to content

Commit

Permalink
Add manual for fourier utility
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuaki1987 committed Mar 1, 2017
1 parent 8f0ca82 commit f5af48d
Show file tree
Hide file tree
Showing 21 changed files with 1,814 additions and 148 deletions.
284 changes: 143 additions & 141 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,141 +1,143 @@

# Created by https://www.gitignore.io/api/linux,python

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*


### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

#for Hphi
HPhi
makefile
Makefile
make.sys
*backup*
*cisajs*.dat
*Time_*
*_Time*
*.a
*.aux
*.bbl
*.blg
*.dSYM/
*.dvi
*.log
*.o
*.optrpt
userguide_*.pdf
*.synctex.gz
*.toc
*~
build*
#*
html/
GPATH
GRTAGS
GTAGS
.idea
.DS_Store
cmake-build-debug
*.mod
tool/fourier
tool/corplot

# Created by https://www.gitignore.io/api/linux,python

### Linux ###
*~

# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*

# KDE directory preferences
.directory

# Linux trash folder which might appear on any partition or disk
.Trash-*


### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# dotenv
.env

# virtualenv
venv/
ENV/

# Spyder project settings
.spyderproject

# Rope project settings
.ropeproject

#for Hphi
HPhi
makefile
Makefile
make.sys
*backup*
*cisajs*.dat
*Time_*
*_Time*
*.a
*.aux
*.bbl
*.blg
*.dSYM/
*.dvi
*.log
*.o
*.optrpt
userguide_*.pdf
*.synctex.gz
*.toc
*~
build*
#*
html/
GPATH
GRTAGS
GTAGS
.idea
.DS_Store
cmake-build-debug
*.mod
tool/fourier
tool/corplot
doc/fourier/en/_build/
doc/fourier/ja/_build/
10 changes: 5 additions & 5 deletions HPhiconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ help:
@echo "<entry> is chosen from below"
@echo " HPhi : Build simulator HPhi in src/ and tool/"
@echo " userguide : Generate userguid_jp.pdf & userguide_en.pdf in doc/"
@echo " clean : Remove all generated files excepting makefile"
@echo " veryclean : Remove all generated files including makefile"
@echo " clean : Remove all generated files excepting makefile and doc/"
@echo " veryclean : Remove all generated files including makefile and doc/"
@echo ""
HPhi:
Expand All @@ -178,12 +178,12 @@ userguide:
clean:
cd src; make -f makefile_src clean
cd tool; make -f makefile_tool clean
cd doc/jp; make -f makefile_doc_jp clean
cd doc/en; make -f makefile_doc_en clean
rm -f doc/userguide_??.pdf
veryclean:
make clean
cd doc/jp; make -f makefile_doc_jp clean
cd doc/en; make -f makefile_doc_en clean
rm -f doc/userguide_??.pdf
rm -f src/make.sys makefile
EOF
fi
11 changes: 11 additions & 0 deletions doc/en/chap03_en.tex
Original file line number Diff line number Diff line change
Expand Up @@ -666,3 +666,14 @@ \section{Making input files for {\it Expert} mode}
\end{screen}
\end{minipage}
\end{enumerate}

\section{Fourier transformation of correlation functions}

This package has a utility which performs the Fourier transformation of the correlation function and plots that function.
The manual of this utility is located in
\begin{verbatim}
doc/fourier/ja/_build/html/index.html
doc/fourier/ja/_build/latex/fourier.pdf
doc/fourier/en/_build/html/index.html
doc/fourier/en/_build/latex/fourier.pdf
\end{verbatim}
Loading

0 comments on commit f5af48d

Please sign in to comment.